From 65ef6253ad925e4f7ac8b9621712c3fd8e6b98bb Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Sun, 21 Sep 2025 01:03:07 -0400 Subject: [PATCH 1/9] chore(PythonQt): replace `PyString_FromString` with `PyUnicode_FromString` Make Unicode creation explicit instead of relying on the compatibility macros in `PythonQtPythonInclude.h`. No functional change intended. --- src/PythonQt.cpp | 14 +++++++------- src/PythonQtBoolResult.cpp | 2 +- src/PythonQtClassWrapper.cpp | 4 ++-- src/PythonQtConversion.cpp | 4 ++-- src/PythonQtInstanceWrapper.cpp | 2 +- src/PythonQtSignal.cpp | 6 +++--- src/PythonQtSlot.cpp | 10 +++++----- src/PythonQtSlotDecorator.cpp | 4 ++-- 8 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/PythonQt.cpp b/src/PythonQt.cpp index c6cd9ff43..4928f12fe 100644 --- a/src/PythonQt.cpp +++ b/src/PythonQt.cpp @@ -766,7 +766,7 @@ PyObject* PythonQtPrivate::dummyTuple() { static PyObject* dummyTuple = nullptr; if (dummyTuple==nullptr) { dummyTuple = PyTuple_New(1); - PyTuple_SET_ITEM(dummyTuple, 0 , PyString_FromString("dummy")); + PyTuple_SET_ITEM(dummyTuple, 0 , PyUnicode_FromString("dummy")); } return dummyTuple; } @@ -805,7 +805,7 @@ PythonQtInstanceWrapper* PythonQtPrivate::createNewPythonQtInstanceWrapper(QObje PythonQtClassWrapper* PythonQtPrivate::createNewPythonQtClassWrapper(PythonQtClassInfo* info, PyObject* parentModule, const QByteArray& pythonClassName) { PythonQtClassWrapper* result; - PyObject* className = PyString_FromString(pythonClassName.constData()); + PyObject* className = PyUnicode_FromString(pythonClassName.constData()); PyObject* baseClasses = PyTuple_New(1); Py_INCREF((PyObject*)&PythonQtInstanceWrapper_Type); @@ -842,7 +842,7 @@ PyObject* PythonQtPrivate::createEnumValueInstance(PyObject* enumType, unsigned PyObject* PythonQtPrivate::createNewPythonQtEnumWrapper(const char* enumName, PyObject* parentObject) { PyObject* result; - PyObject* className = PyString_FromString(enumName); + PyObject* className = PyUnicode_FromString(enumName); PyObject* baseClasses = PyTuple_New(1); Py_INCREF(&PyLong_Type); @@ -1872,7 +1872,7 @@ void PythonQt::initPythonQtModule(bool redirectStdOut, const QByteArray& pythonQ Py_INCREF(val); PyTuple_SetItem(module_names, i, val); } - PyTuple_SetItem(module_names, old_size, PyString_FromString(name.constData())); + PyTuple_SetItem(module_names, old_size, PyUnicode_FromString(name.constData())); PyModule_AddObject(sys.object(), "builtin_module_names", module_names); } Py_XDECREF(old_module_names); @@ -2175,7 +2175,7 @@ PyObject* PythonQt::helpCalled(PythonQtClassInfo* info) Q_EMIT pythonHelpRequest(QByteArray(info->className())); return Py_BuildValue(""); } else { - return PyString_FromString(QStringToPythonCharPointer(info->help())); + return PyUnicode_FromString(QStringToPythonCharPointer(info->help())); } } @@ -2299,7 +2299,7 @@ const QMetaObject* PythonQtPrivate::buildDynamicMetaObject(PythonQtClassWrapper* Py_ssize_t pos = 0; PyObject* value = nullptr; PyObject* key = nullptr; - static PyObject* qtSlots = PyString_FromString("_qtSlots"); + static PyObject* qtSlots = PyUnicode_FromString("_qtSlots"); bool needsMetaObject = false; // Iterate over all members and check if they affect the QMetaObject: @@ -2400,7 +2400,7 @@ int PythonQtPrivate::handleMetaCall(QObject* object, PythonQtInstanceWrapper* wr } PythonQtProperty* prop = nullptr; // Get directly from the Python class, since we don't want to get the value of the property - PyObject* maybeProp = PyBaseObject_Type.tp_getattro((PyObject*)wrapper, PyString_FromString(metaProp.name())); + PyObject* maybeProp = PyBaseObject_Type.tp_getattro((PyObject*)wrapper, PyUnicode_FromString(metaProp.name())); if (maybeProp && PythonQtProperty_Check(maybeProp)) { prop = (PythonQtProperty*)maybeProp; } else { diff --git a/src/PythonQtBoolResult.cpp b/src/PythonQtBoolResult.cpp index 08b441290..09051b169 100644 --- a/src/PythonQtBoolResult.cpp +++ b/src/PythonQtBoolResult.cpp @@ -55,7 +55,7 @@ static int PythonQtBoolResult_init(PythonQtBoolResultObject *self, PyObject* arg static PyObject *PythonQtBoolResult_repr(PythonQtBoolResultObject *obj) { PythonQtBoolResultObject* wrapper = (PythonQtBoolResultObject*)obj; - return PyString_FromString(wrapper->_value?"BoolResult(True)":"BoolResult(False)"); + return PyUnicode_FromString(wrapper->_value?"BoolResult(True)":"BoolResult(False)"); } static int PythonQtBoolResult_bool(PyObject *obj) diff --git a/src/PythonQtClassWrapper.cpp b/src/PythonQtClassWrapper.cpp index f12598df1..0d0562b46 100644 --- a/src/PythonQtClassWrapper.cpp +++ b/src/PythonQtClassWrapper.cpp @@ -384,7 +384,7 @@ static int PythonQtClassWrapper_init(PythonQtClassWrapper* self, PyObject* args, static PyObject *PythonQtClassWrapper_classname(PythonQtClassWrapper* type) { - return PyString_FromString((QByteArray("Class_") + type->classInfo()->className()).constData()); + return PyUnicode_FromString((QByteArray("Class_") + type->classInfo()->className()).constData()); } static PyObject *PythonQtClassWrapper_help(PythonQtClassWrapper* type) @@ -490,7 +490,7 @@ static PyObject *PythonQtClassWrapper_getattro(PyObject *obj, PyObject *name) } if (wrapper->classInfo()->constructors()) { - PyObject* initName = PyString_FromString("__init__"); + PyObject* initName = PyUnicode_FromString("__init__"); PyObject* func = PyType_Type.tp_getattro(obj, initName); Py_DECREF(initName); PyDict_SetItemString(dict, "__init__", func); diff --git a/src/PythonQtConversion.cpp b/src/PythonQtConversion.cpp index 68b0bb188..72f36a84b 100644 --- a/src/PythonQtConversion.cpp +++ b/src/PythonQtConversion.cpp @@ -93,7 +93,7 @@ PyObject* PythonQtConv::ConvertQtValueToPython(const PythonQtMethodInfo::Paramet // a char ptr will probably be a null terminated string, so we support that: char* charPtr = *((char**)data); if (charPtr) { - return PyString_FromString(charPtr); + return PyUnicode_FromString(charPtr); } else { Py_RETURN_NONE; } @@ -1297,7 +1297,7 @@ QVariant PythonQtConv::PyObjToQVariant(PyObject* val, int type) PyObject* PythonQtConv::QStringToPyObject(const QString& str) { if (str.isNull()) { - return PyString_FromString(""); + return PyUnicode_FromString(""); } else { return PyUnicode_DecodeUTF16((const char*)str.utf16(), str.length()*2, nullptr, nullptr); } diff --git a/src/PythonQtInstanceWrapper.cpp b/src/PythonQtInstanceWrapper.cpp index 25bffaa71..329b139e5 100644 --- a/src/PythonQtInstanceWrapper.cpp +++ b/src/PythonQtInstanceWrapper.cpp @@ -333,7 +333,7 @@ static PyObject *PythonQtInstanceWrapper_richcompare(PythonQtInstanceWrapper* wr static PyObject *PythonQtInstanceWrapper_classname(PythonQtInstanceWrapper* obj) { - return PyString_FromString(Py_TYPE(obj)->tp_name); + return PyUnicode_FromString(Py_TYPE(obj)->tp_name); } PyObject *PythonQtInstanceWrapper_inherits(PythonQtInstanceWrapper* obj, PyObject *args) diff --git a/src/PythonQtSignal.cpp b/src/PythonQtSignal.cpp index 5dd51cc44..bc847e269 100644 --- a/src/PythonQtSignal.cpp +++ b/src/PythonQtSignal.cpp @@ -123,9 +123,9 @@ static PyObject * meth_get__name__(PythonQtSignalFunctionObject *m, void * /*closure*/) { if (m->m_ml) { - return PyString_FromString(m->m_ml->signature()); + return PyUnicode_FromString(m->m_ml->signature()); } else { - return PyString_FromString("Signal"); + return PyUnicode_FromString("Signal"); } } @@ -318,7 +318,7 @@ meth_repr(PythonQtSignalFunctionObject *f) { if (!f->m_ml) { // TODO - return PyString_FromString("Signal"); + return PyUnicode_FromString("Signal"); } if (f->m_self->ob_type == &PythonQtClassWrapper_Type) { PythonQtClassWrapper* self = (PythonQtClassWrapper*) f->m_self; diff --git a/src/PythonQtSlot.cpp b/src/PythonQtSlot.cpp index 8dfcbcfd7..53758c895 100644 --- a/src/PythonQtSlot.cpp +++ b/src/PythonQtSlot.cpp @@ -579,13 +579,13 @@ meth_get__doc__(PythonQtSlotFunctionObject * m, void * /*closure*/) if (!pyReturnType.isEmpty()) { doc += " -> " + pyReturnType; } - return PyString_FromString(doc.constData()); + return PyUnicode_FromString(doc.constData()); } static PyObject * meth_get__name__(PythonQtSlotFunctionObject *m, void * /*closure*/) { - return PyString_FromString(m->m_ml->slotName(true)); + return PyUnicode_FromString(m->m_ml->slotName(true)); } static int @@ -663,7 +663,7 @@ PyObject *PythonQtMemberFunction_parameterTypes(PythonQtSlotInfo* theInfo) QList types = info->metaMethod()->parameterTypes(); PyObject* tuple = PyTuple_New(types.count()); for (int i = 0; inextInfo(); PyTuple_SET_ITEM(result, j, tuple); @@ -685,7 +685,7 @@ PyObject *PythonQtMemberFunction_parameterNames(PythonQtSlotInfo* theInfo) QList names = info->metaMethod()->parameterNames(); PyObject* tuple = PyTuple_New(names.count()); for (int i = 0; inextInfo(); PyTuple_SET_ITEM(result, j, tuple); @@ -705,7 +705,7 @@ PyObject *PythonQtMemberFunction_typeName(PythonQtSlotInfo* theInfo) PyObject* result = PyTuple_New(count); for (int j = 0;jmetaMethod()); - PyTuple_SET_ITEM(result, j, PyString_FromString(name.constData())); + PyTuple_SET_ITEM(result, j, PyUnicode_FromString(name.constData())); info = info->nextInfo(); } return result; diff --git a/src/PythonQtSlotDecorator.cpp b/src/PythonQtSlotDecorator.cpp index f8933b970..58d9c0452 100644 --- a/src/PythonQtSlotDecorator.cpp +++ b/src/PythonQtSlotDecorator.cpp @@ -96,7 +96,7 @@ PyObject* PythonQtSlotDecorator_call(PyObject* object, PyObject* args, PyObject* QByteArray returnType = QMetaObject::normalizedType(self->returnType->constData()); QByteArray signature = returnType + " " + slotName + "(" + *self->args + ")"; - static PyObject* qtSlots = PyString_FromString("_qtSlots"); + static PyObject* qtSlots = PyUnicode_FromString("_qtSlots"); PyObject* signatures = nullptr; if (!PyObject_HasAttr(function, qtSlots)) { // create a new list @@ -109,7 +109,7 @@ PyObject* PythonQtSlotDecorator_call(PyObject* object, PyObject* args, PyObject* } // append the signature to the list - PyObject* pySignature = PyString_FromString(signature); + PyObject* pySignature = PyUnicode_FromString(signature); PyList_Append(signatures, pySignature); Py_DECREF(pySignature); From ff9a1470ebe1186e563909c71ea46a64590d58eb Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 08:56:44 -0400 Subject: [PATCH 2/9] chore(PythonQt): replace `PyString_AS_STRING` with `PyUnicode_AsUTF8` This removes dependence on the `PyString_*` shim and documents the Python 3 assumption clearly. No functional change intended. --- src/PythonQt.cpp | 2 +- src/PythonQtPythonInclude.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/PythonQt.cpp b/src/PythonQt.cpp index 4928f12fe..9c59e36d0 100644 --- a/src/PythonQt.cpp +++ b/src/PythonQt.cpp @@ -986,7 +986,7 @@ QVariant PythonQt::evalCode(PyObject* object, PyObject* pycode) { globals = dict; } else { dict = PyObject_GetAttrString(object, "__dict__"); - globals = PyObject_GetAttrString(PyImport_ImportModule(PyString_AS_STRING(PyObject_GetAttrString(object, "__module__"))),"__dict__"); + globals = PyObject_GetAttrString(PyImport_ImportModule(PyUnicode_AsUTF8(PyObject_GetAttrString(object, "__module__"))),"__dict__"); } PyObject* r = nullptr; if (dict) { diff --git a/src/PythonQtPythonInclude.h b/src/PythonQtPythonInclude.h index c17fd2ec8..784d58181 100644 --- a/src/PythonQtPythonInclude.h +++ b/src/PythonQtPythonInclude.h @@ -121,7 +121,6 @@ #define PY3K // Helper defines to facilitate porting #define PyString_FromString PyUnicode_FromString -#define PyString_AS_STRING PyUnicode_AsUTF8 #define PyString_AsString PyUnicode_AsUTF8 #define PyString_FromFormat PyUnicode_FromFormat #define PyString_Check PyUnicode_Check @@ -130,7 +129,6 @@ // Defines to use Python 3 names in Python 2 code #define PyBytes_Type PyString_Type #define PyBytes_Check PyString_Check -#define PyBytes_AS_STRING PyString_AS_STRING #define PyBytes_AsString PyString_AsString #define PyBytes_GET_SIZE PyString_GET_SIZE #define PyBytes_FromStringAndSize PyString_FromStringAndSize From adaa0f7f136e68148829e1c53c2dc99b80f32140 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 08:59:26 -0400 Subject: [PATCH 3/9] chore(PythonQt): replace `PyString_AsString` with `PyUnicode_AsUTF8` Port remaining conversions to the Unicode API and drop reliance on the macro alias in `PythonQtPythonInclude.h`. No functional change intended. --- src/PythonQt.cpp | 28 ++++++++++++++-------------- src/PythonQtClassWrapper.cpp | 2 +- src/PythonQtInstanceWrapper.cpp | 4 ++-- src/PythonQtPythonInclude.h | 2 -- src/PythonQtSlot.cpp | 2 +- src/PythonQtSlotDecorator.cpp | 2 +- 6 files changed, 19 insertions(+), 21 deletions(-) diff --git a/src/PythonQt.cpp b/src/PythonQt.cpp index 9c59e36d0..14b6a85ec 100644 --- a/src/PythonQt.cpp +++ b/src/PythonQt.cpp @@ -1230,7 +1230,7 @@ QStringList PythonQt::introspectObject(PyObject* object, ObjectType type) } else { PyObject* doc = PyObject_GetAttrString(object, "__doc__"); if (doc) { - QString docString = QString::fromUtf8(PyString_AsString(doc)); + QString docString = QString::fromUtf8(PyUnicode_AsUTF8(doc)); Py_DECREF(doc); int idx = docString.indexOf("\n"); if (idx != -1) { @@ -1266,7 +1266,7 @@ QStringList PythonQt::introspectObject(PyObject* object, ObjectType type) value = PyObject_GetAttr(object, key); } if (!value) continue; - keystr = PyString_AsString(key); + keystr = PyUnicode_AsUTF8(key); static const QString underscoreStr("__tmp"); if (!keystr.startsWith(underscoreStr)) { switch (type) { @@ -1978,7 +1978,7 @@ QString PythonQt::getReturnTypeOfWrappedMethodHelper(const PythonQtObjectPtr& va if (typeInfo && typeInfo->pythonQtClassWrapper()) { PyObject* s = PyObject_GetAttrString(typeInfo->pythonQtClassWrapper(), "__module__"); Q_ASSERT(PyString_Check(s)); - type = QString(PyString_AsString(s)) + "." + type; + type = QString(PyUnicode_AsUTF8(s)) + "." + type; Py_DECREF(s); } } @@ -2309,7 +2309,7 @@ const QMetaObject* PythonQtPrivate::buildDynamicMetaObject(PythonQtClassWrapper* // A signal object, register with the meta object PythonQtSignalFunctionObject* signal = (PythonQtSignalFunctionObject*)value; if (signal->_dynamicInfo) { - signal->_dynamicInfo->name = PyString_AsString(key); + signal->_dynamicInfo->name = PyUnicode_AsUTF8(key); for (const QByteArray& sig : qAsConst(signal->_dynamicInfo->signatures)) { builder.addSignal(signal->_dynamicInfo->name + "(" + sig + ")"); needsMetaObject = true; @@ -2325,7 +2325,7 @@ const QMetaObject* PythonQtPrivate::buildDynamicMetaObject(PythonQtClassWrapper* if (PythonQtProperty_Check(value)) { needsMetaObject = true; PythonQtProperty* prop = (PythonQtProperty*)value; - QMetaPropertyBuilder newProp = builder.addProperty(PyString_AsString(key), prop->data->cppType); + QMetaPropertyBuilder newProp = builder.addProperty(PyUnicode_AsUTF8(key), prop->data->cppType); newProp.setReadable(true); newProp.setWritable(prop->data->fset != nullptr); newProp.setResettable(prop->data->freset != nullptr); @@ -2355,7 +2355,7 @@ const QMetaObject* PythonQtPrivate::buildDynamicMetaObject(PythonQtClassWrapper* Py_ssize_t count = PyList_Size(signatures); for (Py_ssize_t i = 0; i < count; i++) { PyObject* signature = PyList_GET_ITEM(signatures, i); - QByteArray sig = PyString_AsString(signature); + QByteArray sig = PyUnicode_AsUTF8(signature); // Split the return type and the rest of the signature, // no spaces should be in the rest of the signature... QList parts = sig.split(' '); @@ -2474,14 +2474,14 @@ QString PythonQtPrivate::getSignature(PyObject* object) QString docstr; PyObject* doc = PyObject_GetAttrString(object, "__doc__"); if (doc) { - docstr = PyString_AsString(doc); + docstr = PyUnicode_AsUTF8(doc); Py_DECREF(doc); } PyObject* s = PyObject_GetAttrString(object, "__name__"); if (s) { Q_ASSERT(PyString_Check(s)); - signature = PyString_AsString(s); + signature = PyUnicode_AsUTF8(s); if (docstr.startsWith(signature + "(")) { signature = docstr; } else { @@ -2500,14 +2500,14 @@ QString PythonQtPrivate::getSignature(PyObject* object) PyObject* s = PyObject_GetAttrString((PyObject*)func, "__name__"); if (s) { Q_ASSERT(PyString_Check(s)); - funcName = PyString_AsString(s); + funcName = PyUnicode_AsUTF8(s); Py_DECREF(s); } if (method && funcName == "__init__") { PyObject* s = PyObject_GetAttrString(object, "__name__"); if (s) { Q_ASSERT(PyString_Check(s)); - funcName = PyString_AsString(s); + funcName = PyUnicode_AsUTF8(s); Py_DECREF(s); } } @@ -2526,18 +2526,18 @@ QString PythonQtPrivate::getSignature(PyObject* object) for (int i=0; ico_flags & CO_VARARGS) { PyObject* s = PyTuple_GetItem(co_varnames, nargs); Q_ASSERT(PyString_Check(s)); - varargs = PyString_AsString(s); + varargs = PyUnicode_AsUTF8(s); nargs += 1; } if (code->co_flags & CO_VARKEYWORDS) { PyObject* s = PyTuple_GetItem(co_varnames, nargs); Q_ASSERT(PyString_Check(s)); - varkeywords = PyString_AsString(s); + varkeywords = PyUnicode_AsUTF8(s); } Py_DECREF(co_varnames); } @@ -2549,7 +2549,7 @@ QString PythonQtPrivate::getSignature(PyObject* object) PyObject* d = PyTuple_GetItem(defaultsTuple, i); PyObject* s = PyObject_Repr(d); Q_ASSERT(PyString_Check(s)); - defaults << PyString_AsString(s); + defaults << PyUnicode_AsUTF8(s); Py_DECREF(s); } } diff --git a/src/PythonQtClassWrapper.cpp b/src/PythonQtClassWrapper.cpp index 0d0562b46..8fc02d3b3 100644 --- a/src/PythonQtClassWrapper.cpp +++ b/src/PythonQtClassWrapper.cpp @@ -448,7 +448,7 @@ static PyObject *PythonQtClassWrapper_getattro(PyObject *obj, PyObject *name) const char *attributeName; PythonQtClassWrapper *wrapper = (PythonQtClassWrapper *)obj; - if ((attributeName = PyString_AsString(name)) == nullptr) { + if ((attributeName = PyUnicode_AsUTF8(name)) == nullptr) { return nullptr; } if (obj == (PyObject*)&PythonQtInstanceWrapper_Type) { diff --git a/src/PythonQtInstanceWrapper.cpp b/src/PythonQtInstanceWrapper.cpp index 329b139e5..3b163d419 100644 --- a/src/PythonQtInstanceWrapper.cpp +++ b/src/PythonQtInstanceWrapper.cpp @@ -399,7 +399,7 @@ static PyObject *PythonQtInstanceWrapper_getattro(PyObject *obj,PyObject *name) const char *attributeName; PythonQtInstanceWrapper *wrapper = (PythonQtInstanceWrapper *)obj; - if ((attributeName = PyString_AsString(name)) == nullptr) { + if ((attributeName = PyUnicode_AsUTF8(name)) == nullptr) { return nullptr; } @@ -631,7 +631,7 @@ static int PythonQtInstanceWrapper_setattro(PyObject *obj,PyObject *name,PyObjec const char *attributeName; PythonQtInstanceWrapper *wrapper = (PythonQtInstanceWrapper *)obj; - if ((attributeName = PyString_AsString(name)) == nullptr) + if ((attributeName = PyUnicode_AsUTF8(name)) == nullptr) return -1; PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName); diff --git a/src/PythonQtPythonInclude.h b/src/PythonQtPythonInclude.h index 784d58181..2ccd7f20c 100644 --- a/src/PythonQtPythonInclude.h +++ b/src/PythonQtPythonInclude.h @@ -121,7 +121,6 @@ #define PY3K // Helper defines to facilitate porting #define PyString_FromString PyUnicode_FromString -#define PyString_AsString PyUnicode_AsUTF8 #define PyString_FromFormat PyUnicode_FromFormat #define PyString_Check PyUnicode_Check @@ -129,7 +128,6 @@ // Defines to use Python 3 names in Python 2 code #define PyBytes_Type PyString_Type #define PyBytes_Check PyString_Check -#define PyBytes_AsString PyString_AsString #define PyBytes_GET_SIZE PyString_GET_SIZE #define PyBytes_FromStringAndSize PyString_FromStringAndSize #endif diff --git a/src/PythonQtSlot.cpp b/src/PythonQtSlot.cpp index 53758c895..7d0f1a526 100644 --- a/src/PythonQtSlot.cpp +++ b/src/PythonQtSlot.cpp @@ -571,7 +571,7 @@ meth_get__doc__(PythonQtSlotFunctionObject * m, void * /*closure*/) if (returnTypeClassInfo && returnTypeClassInfo->pythonQtClassWrapper()) { PyObject* s = PyObject_GetAttrString(returnTypeClassInfo->pythonQtClassWrapper(), "__module__"); if (s) { - pyReturnType = QByteArray(PyString_AsString(s)) + "." + returnType; + pyReturnType = QByteArray(PyUnicode_AsUTF8(s)) + "." + returnType; Py_DECREF(s); } } diff --git a/src/PythonQtSlotDecorator.cpp b/src/PythonQtSlotDecorator.cpp index 58d9c0452..96771bf3e 100644 --- a/src/PythonQtSlotDecorator.cpp +++ b/src/PythonQtSlotDecorator.cpp @@ -91,7 +91,7 @@ PyObject* PythonQtSlotDecorator_call(PyObject* object, PyObject* args, PyObject* if (PyFunction_Check(function)) { PyObject* funcName = ((PyFunctionObject*)function)->func_name; - QByteArray slotName = PyString_AsString(funcName); + QByteArray slotName = PyUnicode_AsUTF8(funcName); QByteArray returnType = QMetaObject::normalizedType(self->returnType->constData()); QByteArray signature = returnType + " " + slotName + "(" + *self->args + ")"; From eb53f46c67300e91d343bce60049e1c6ef6d435b Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 09:01:00 -0400 Subject: [PATCH 4/9] chore(PythonQt): replace `PyString_FromFormat` with `PyUnicode_FromFormat` Format string creation now uses the Unicode API directly. No functional change intended. --- src/PythonQtClassWrapper.cpp | 6 +++--- src/PythonQtImporter.cpp | 2 +- src/PythonQtInstanceWrapper.cpp | 18 +++++++++--------- src/PythonQtPythonInclude.h | 1 - src/PythonQtSignal.cpp | 4 ++-- src/PythonQtSlot.cpp | 4 ++-- 6 files changed, 17 insertions(+), 18 deletions(-) diff --git a/src/PythonQtClassWrapper.cpp b/src/PythonQtClassWrapper.cpp index 8fc02d3b3..8b659d696 100644 --- a/src/PythonQtClassWrapper.cpp +++ b/src/PythonQtClassWrapper.cpp @@ -582,12 +582,12 @@ static PyObject * PythonQtClassWrapper_repr(PyObject * obj) } } if (meta) { - return PyString_FromFormat("%s Class (C++ wrapped by %s)", wrapper->classInfo()->className(), meta->className()); + return PyUnicode_FromFormat("%s Class (C++ wrapped by %s)", wrapper->classInfo()->className(), meta->className()); } else { - return PyString_FromFormat("%s Class (C++ unwrapped)", wrapper->classInfo()->className()); + return PyUnicode_FromFormat("%s Class (C++ unwrapped)", wrapper->classInfo()->className()); } } else { - return PyString_FromFormat("%s Class", wrapper->classInfo()->className()); + return PyUnicode_FromFormat("%s Class", wrapper->classInfo()->className()); } } diff --git a/src/PythonQtImporter.cpp b/src/PythonQtImporter.cpp index 413a32f79..56d468807 100644 --- a/src/PythonQtImporter.cpp +++ b/src/PythonQtImporter.cpp @@ -299,7 +299,7 @@ PythonQtImporter_load_module(PyObject *obj, PyObject *args) QString subname = info.moduleName; int err; - fullpath = PyString_FromFormat("%s%c%s", + fullpath = PyUnicode_FromFormat("%s%c%s", QStringToPythonConstCharPointer(*self->_path), SEP, QStringToPythonConstCharPointer(subname)); diff --git a/src/PythonQtInstanceWrapper.cpp b/src/PythonQtInstanceWrapper.cpp index 3b163d419..480ff9962 100644 --- a/src/PythonQtInstanceWrapper.cpp +++ b/src/PythonQtInstanceWrapper.cpp @@ -804,16 +804,16 @@ static PyObject * PythonQtInstanceWrapper_str(PyObject * obj) QObject *qobj = wrapper->_obj; QString str = getStringFromObject(wrapper); if (!str.isEmpty()) { - return PyString_FromFormat("%s", QStringToPythonConstCharPointer(str)); + return PyUnicode_FromFormat("%s", QStringToPythonConstCharPointer(str)); } if (wrapper->_wrappedPtr) { if (wrapper->_obj) { - return PyString_FromFormat("%s (C++ Object %p wrapped by %s %p))", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj); + return PyUnicode_FromFormat("%s (C++ Object %p wrapped by %s %p))", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj); } else { - return PyString_FromFormat("%s (C++ Object %p)", typeName, wrapper->_wrappedPtr); + return PyUnicode_FromFormat("%s (C++ Object %p)", typeName, wrapper->_wrappedPtr); } } else { - return PyString_FromFormat("%s (QObject %p)", typeName, qobj); + return PyUnicode_FromFormat("%s (QObject %p)", typeName, qobj); } } @@ -829,19 +829,19 @@ static PyObject * PythonQtInstanceWrapper_repr(PyObject * obj) QString str = getStringFromObject(wrapper); if (!str.isEmpty()) { if (str.startsWith(typeName)) { - return PyString_FromFormat("%s", QStringToPythonConstCharPointer(str)); + return PyUnicode_FromFormat("%s", QStringToPythonConstCharPointer(str)); } else { - return PyString_FromFormat("%s (%s, at: %p)", typeName, QStringToPythonConstCharPointer(str), wrapper->_wrappedPtr ? wrapper->_wrappedPtr : qobj); + return PyUnicode_FromFormat("%s (%s, at: %p)", typeName, QStringToPythonConstCharPointer(str), wrapper->_wrappedPtr ? wrapper->_wrappedPtr : qobj); } } if (wrapper->_wrappedPtr) { if (wrapper->_obj) { - return PyString_FromFormat("%s (C++ object at: %p wrapped by %s at: %p)", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj); + return PyUnicode_FromFormat("%s (C++ object at: %p wrapped by %s at: %p)", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj); } else { - return PyString_FromFormat("%s (C++ object at: %p)", typeName, wrapper->_wrappedPtr); + return PyUnicode_FromFormat("%s (C++ object at: %p)", typeName, wrapper->_wrappedPtr); } } else { - return PyString_FromFormat("%s (%s at: %p)", typeName, wrapper->classInfo()->className().constData(), qobj); + return PyUnicode_FromFormat("%s (%s at: %p)", typeName, wrapper->classInfo()->className().constData(), qobj); } } diff --git a/src/PythonQtPythonInclude.h b/src/PythonQtPythonInclude.h index 2ccd7f20c..38b10148c 100644 --- a/src/PythonQtPythonInclude.h +++ b/src/PythonQtPythonInclude.h @@ -121,7 +121,6 @@ #define PY3K // Helper defines to facilitate porting #define PyString_FromString PyUnicode_FromString -#define PyString_FromFormat PyUnicode_FromFormat #define PyString_Check PyUnicode_Check #else diff --git a/src/PythonQtSignal.cpp b/src/PythonQtSignal.cpp index bc847e269..554f25277 100644 --- a/src/PythonQtSignal.cpp +++ b/src/PythonQtSignal.cpp @@ -322,11 +322,11 @@ meth_repr(PythonQtSignalFunctionObject *f) } if (f->m_self->ob_type == &PythonQtClassWrapper_Type) { PythonQtClassWrapper* self = (PythonQtClassWrapper*) f->m_self; - return PyString_FromFormat("", + return PyUnicode_FromFormat("", f->m_ml->slotName().constData(), self->classInfo()->className().constData()); } else { - return PyString_FromFormat("", + return PyUnicode_FromFormat("", f->m_ml->slotName().constData(), f->m_self->ob_type->tp_name, f->m_self); diff --git a/src/PythonQtSlot.cpp b/src/PythonQtSlot.cpp index 7d0f1a526..d3ea52810 100644 --- a/src/PythonQtSlot.cpp +++ b/src/PythonQtSlot.cpp @@ -729,11 +729,11 @@ meth_repr(PythonQtSlotFunctionObject *f) { if (f->m_self->ob_type == &PythonQtClassWrapper_Type) { PythonQtClassWrapper* self = (PythonQtClassWrapper*) f->m_self; - return PyString_FromFormat("", + return PyUnicode_FromFormat("", f->m_ml->slotName().constData(), self->classInfo()->className().constData()); } else { - return PyString_FromFormat("", + return PyUnicode_FromFormat("", f->m_ml->slotName().constData(), f->m_self->ob_type->tp_name, f->m_self); From e808b71b141e4727121ba715e09e539bb51725ac Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 09:01:56 -0400 Subject: [PATCH 5/9] chore(PythonQt): replace `PyString_Check` with `PyUnicode_Check` Update assertions and type checks to the Unicode API. No functional change intended. --- src/PythonQt.cpp | 16 ++++++++-------- src/PythonQtPythonInclude.h | 2 -- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/PythonQt.cpp b/src/PythonQt.cpp index 14b6a85ec..e5c4a93a6 100644 --- a/src/PythonQt.cpp +++ b/src/PythonQt.cpp @@ -1977,7 +1977,7 @@ QString PythonQt::getReturnTypeOfWrappedMethodHelper(const PythonQtObjectPtr& va PythonQtClassInfo* typeInfo = _p->_knownClassInfos.value(QStringToPythonConstCharPointer(type)); if (typeInfo && typeInfo->pythonQtClassWrapper()) { PyObject* s = PyObject_GetAttrString(typeInfo->pythonQtClassWrapper(), "__module__"); - Q_ASSERT(PyString_Check(s)); + Q_ASSERT(PyUnicode_Check(s)); type = QString(PyUnicode_AsUTF8(s)) + "." + type; Py_DECREF(s); } @@ -2480,7 +2480,7 @@ QString PythonQtPrivate::getSignature(PyObject* object) PyObject* s = PyObject_GetAttrString(object, "__name__"); if (s) { - Q_ASSERT(PyString_Check(s)); + Q_ASSERT(PyUnicode_Check(s)); signature = PyUnicode_AsUTF8(s); if (docstr.startsWith(signature + "(")) { signature = docstr; @@ -2499,14 +2499,14 @@ QString PythonQtPrivate::getSignature(PyObject* object) QString funcName; PyObject* s = PyObject_GetAttrString((PyObject*)func, "__name__"); if (s) { - Q_ASSERT(PyString_Check(s)); + Q_ASSERT(PyUnicode_Check(s)); funcName = PyUnicode_AsUTF8(s); Py_DECREF(s); } if (method && funcName == "__init__") { PyObject* s = PyObject_GetAttrString(object, "__name__"); if (s) { - Q_ASSERT(PyString_Check(s)); + Q_ASSERT(PyUnicode_Check(s)); funcName = PyUnicode_AsUTF8(s); Py_DECREF(s); } @@ -2525,18 +2525,18 @@ QString PythonQtPrivate::getSignature(PyObject* object) Q_ASSERT(PyTuple_Check(co_varnames)); for (int i=0; ico_flags & CO_VARARGS) { PyObject* s = PyTuple_GetItem(co_varnames, nargs); - Q_ASSERT(PyString_Check(s)); + Q_ASSERT(PyUnicode_Check(s)); varargs = PyUnicode_AsUTF8(s); nargs += 1; } if (code->co_flags & CO_VARKEYWORDS) { PyObject* s = PyTuple_GetItem(co_varnames, nargs); - Q_ASSERT(PyString_Check(s)); + Q_ASSERT(PyUnicode_Check(s)); varkeywords = PyUnicode_AsUTF8(s); } Py_DECREF(co_varnames); @@ -2548,7 +2548,7 @@ QString PythonQtPrivate::getSignature(PyObject* object) for (Py_ssize_t i=0; i Date: Thu, 25 Sep 2025 15:47:20 -0400 Subject: [PATCH 6/9] chore(PythonQtPythonInclude, build/python.prf): Report error if using Python 2.x --- build/python.prf | 16 ++-------------- src/PythonQtPythonInclude.h | 12 ++++-------- 2 files changed, 6 insertions(+), 22 deletions(-) diff --git a/build/python.prf b/build/python.prf index 87443b9a2..aec051e90 100644 --- a/build/python.prf +++ b/build/python.prf @@ -25,14 +25,9 @@ PYTHON_VERSION_MINOR=$$section(PYTHON_VERSION, ., 1, 1) message(Using Python version $${PYTHON_VERSION}) } - -# Python 2.x has problems: -# 1) https://wiki.gentoo.org/wiki/Project:Python/Strict_aliasing -# 2) deprecated implicit cast of string literals to char* +# Python 3.x is required equals(PYTHON_VERSION_MAJOR, 2) { - gcc:QMAKE_CXXFLAGS *= -fno-strict-aliasing -Wno-write-strings - # Qt 5.4 adds this option, but this is not compatible with the Python API - msvc: QMAKE_CXXFLAGS -= -Zc:strictStrings + error("Python >= 3.x is required") } contains(PKGCONFIG, "python.*"){ @@ -73,13 +68,6 @@ contains(PKGCONFIG, "python.*"){ error("PYTHON_PATH must be set to correct folder with \\libs and \\include subfolders ") } - #We need to destinguish 64-bit build to add a workaround option - #The only known problematic case is MinGW with external (MSVC-built) Python2 - mingw:equals(PYTHON_VERSION_MAJOR, 2): isEmpty(QMAKE_TARGET.arch):system(\ - $$system_quote($$system_path($${PYTHON_PATH}/python.exe)) -c \ - $$system_quote(import sysconfig;exit(0 if 0 <= sysconfig.get_platform().find(\'win-amd64\') else 1))\ - ):DEFINES += MS_WIN64 - INCLUDEPATH += $$shell_path($${PYTHON_PATH}/include) LIBS += $$shell_path(-L$${PYTHON_PATH}/libs) diff --git a/src/PythonQtPythonInclude.h b/src/PythonQtPythonInclude.h index d874281e4..6df1e2cfb 100644 --- a/src/PythonQtPythonInclude.h +++ b/src/PythonQtPythonInclude.h @@ -117,18 +117,14 @@ #undef PYTHONQT_RESTORE_KEYWORDS #endif -#if PY_MAJOR_VERSION >= 3 +#if PY_MAJOR_VERSION < 3 +#error "PythonQt requires Python >= 3.x" +#endif + #define PY3K // Helper defines to facilitate porting #define PyString_FromString PyUnicode_FromString -#else -// Defines to use Python 3 names in Python 2 code -#define PyBytes_Type PyString_Type -#define PyBytes_GET_SIZE PyString_GET_SIZE -#define PyBytes_FromStringAndSize PyString_FromStringAndSize -#endif - // Avoid clashes with libstdc++ by undefining ctype macros // that CPython may introduce on macOS when the UTF-8 ctype quirk is enabled. // (_PY_PORT_CTYPE_UTF8_ISSUE is defined by CPython’s pyport.h; we apply these From e67612908ea9345c32522638a41add3041d70343 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 15:48:55 -0400 Subject: [PATCH 7/9] chore(generator): replace `PyString_FromString` with `PyUnicode_FromString` Make Unicode creation explicit instead of relying on the compatibility macros in `PythonQtPythonInclude.h`. No functional change intended. --- generator/shellimplgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/shellimplgenerator.cpp b/generator/shellimplgenerator.cpp index d6525a70f..406fec3c9 100644 --- a/generator/shellimplgenerator.cpp +++ b/generator/shellimplgenerator.cpp @@ -138,7 +138,7 @@ void ShellImplGenerator::write(QTextStream &s, const AbstractMetaClass *meta_cla s << "if (_wrapper) {" << endl; s << " PYTHONQT_GIL_SCOPE" << endl; s << " if (Py_REFCNT((PyObject*)_wrapper) > 0) {" << endl; - s << " static PyObject* name = PyString_FromString(\"" << fun->name() << "\");" << endl; + s << " static PyObject* name = PyUnicode_FromString(\"" << fun->name() << "\");" << endl; s << " PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name);" << endl; s << " if (obj) {" << endl; s << " static const char* argumentList[] ={\""; From e702ff0d28ac99b27e35c0571904fbb7cef38d2b Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 15:59:52 -0400 Subject: [PATCH 8/9] chore(generated_cpp_*): replace `PyString_FromString` with `PyUnicode_FromString` Make Unicode creation explicit instead of relying on the compatibility macros in `PythonQtPythonInclude.h`. No functional change intended. --- .../com_trolltech_qt_core0.cpp | 462 ++--- .../com_trolltech_qt_core1.cpp | 226 +-- .../com_trolltech_qt_core2.cpp | 204 +- .../com_trolltech_qt_core3.cpp | 26 +- .../com_trolltech_qt_gui0.cpp | 1666 ++++++++-------- .../com_trolltech_qt_gui1.cpp | 1314 ++++++------- .../com_trolltech_qt_gui10.cpp | 462 ++--- .../com_trolltech_qt_gui11.cpp | 1170 +++++------ .../com_trolltech_qt_gui2.cpp | 694 +++---- .../com_trolltech_qt_gui3.cpp | 720 +++---- .../com_trolltech_qt_gui4.cpp | 1034 +++++----- .../com_trolltech_qt_gui5.cpp | 678 +++---- .../com_trolltech_qt_gui6.cpp | 1036 +++++----- .../com_trolltech_qt_gui7.cpp | 1284 ++++++------ .../com_trolltech_qt_gui9.cpp | 654 +++---- .../com_trolltech_qt_gui_builtin0.cpp | 30 +- .../com_trolltech_qt_multimedia0.cpp | 330 ++-- .../com_trolltech_qt_multimedia1.cpp | 144 +- .../com_trolltech_qt_network0.cpp | 296 +-- .../com_trolltech_qt_network1.cpp | 192 +- .../com_trolltech_qt_opengl0.cpp | 164 +- .../com_trolltech_qt_sql0.cpp | 410 ++-- .../com_trolltech_qt_svg0.cpp | 124 +- .../com_trolltech_qt_uitools0.cpp | 18 +- .../com_trolltech_qt_webkit0.cpp | 338 ++-- .../com_trolltech_qt_xml0.cpp | 224 +-- .../com_trolltech_qt_xmlpatterns0.cpp | 158 +- .../com_trolltech_qt_core0.cpp | 286 +-- .../com_trolltech_qt_core1.cpp | 304 +-- .../com_trolltech_qt_core2.cpp | 270 +-- .../com_trolltech_qt_core3.cpp | 132 +- .../com_trolltech_qt_gui0.cpp | 1734 ++++++++--------- .../com_trolltech_qt_gui1.cpp | 1370 ++++++------- .../com_trolltech_qt_gui10.cpp | 886 ++++----- .../com_trolltech_qt_gui11.cpp | 810 ++++---- .../com_trolltech_qt_gui12.cpp | 638 +++--- .../com_trolltech_qt_gui2.cpp | 752 +++---- .../com_trolltech_qt_gui3.cpp | 922 ++++----- .../com_trolltech_qt_gui4.cpp | 1064 +++++----- .../com_trolltech_qt_gui5.cpp | 838 ++++---- .../com_trolltech_qt_gui6.cpp | 496 ++--- .../com_trolltech_qt_gui7.cpp | 1022 +++++----- .../com_trolltech_qt_gui8.cpp | 1070 +++++----- .../com_trolltech_qt_gui9.cpp | 46 +- .../com_trolltech_qt_gui_builtin0.cpp | 30 +- .../com_trolltech_qt_multimedia0.cpp | 490 ++--- .../com_trolltech_qt_multimedia1.cpp | 484 ++--- .../com_trolltech_qt_multimedia2.cpp | 360 ++-- .../com_trolltech_qt_multimedia3.cpp | 190 +- .../com_trolltech_qt_network0.cpp | 242 +-- .../com_trolltech_qt_network1.cpp | 274 +-- .../com_trolltech_qt_opengl0.cpp | 166 +- .../com_trolltech_qt_qml0.cpp | 114 +- .../com_trolltech_qt_quick0.cpp | 532 ++--- .../com_trolltech_qt_quick1.cpp | 108 +- .../com_trolltech_qt_sql0.cpp | 408 ++-- .../com_trolltech_qt_svg0.cpp | 128 +- .../com_trolltech_qt_uitools0.cpp | 18 +- .../com_trolltech_qt_xml0.cpp | 224 +-- .../com_trolltech_qt_xmlpatterns0.cpp | 162 +- .../com_trolltech_qt_core0.cpp | 260 +-- .../com_trolltech_qt_core1.cpp | 314 +-- .../com_trolltech_qt_core2.cpp | 128 +- .../com_trolltech_qt_core3.cpp | 252 +-- .../com_trolltech_qt_core4.cpp | 50 +- .../com_trolltech_qt_gui0.cpp | 1588 +++++++-------- .../com_trolltech_qt_gui1.cpp | 1414 +++++++------- .../com_trolltech_qt_gui10.cpp | 922 ++++----- .../com_trolltech_qt_gui11.cpp | 696 +++---- .../com_trolltech_qt_gui12.cpp | 854 ++++---- .../com_trolltech_qt_gui2.cpp | 858 ++++---- .../com_trolltech_qt_gui3.cpp | 1346 ++++++------- .../com_trolltech_qt_gui4.cpp | 698 +++---- .../com_trolltech_qt_gui5.cpp | 1028 +++++----- .../com_trolltech_qt_gui6.cpp | 546 +++--- .../com_trolltech_qt_gui7.cpp | 1128 +++++------ .../com_trolltech_qt_gui8.cpp | 1084 +++++------ .../com_trolltech_qt_gui_builtin0.cpp | 36 +- .../com_trolltech_qt_multimedia0.cpp | 490 ++--- .../com_trolltech_qt_multimedia1.cpp | 548 +++--- .../com_trolltech_qt_multimedia2.cpp | 360 ++-- .../com_trolltech_qt_multimedia3.cpp | 190 +- .../com_trolltech_qt_network0.cpp | 260 +-- .../com_trolltech_qt_network1.cpp | 276 +-- .../com_trolltech_qt_opengl0.cpp | 166 +- .../com_trolltech_qt_qml0.cpp | 114 +- .../com_trolltech_qt_quick0.cpp | 528 ++--- .../com_trolltech_qt_quick1.cpp | 112 +- .../com_trolltech_qt_sql0.cpp | 408 ++-- .../com_trolltech_qt_svg0.cpp | 192 +- .../com_trolltech_qt_uitools0.cpp | 18 +- .../com_trolltech_qt_webenginewidgets0.cpp | 176 +- .../com_trolltech_qt_webkit0.cpp | 374 ++-- .../com_trolltech_qt_xml0.cpp | 224 +-- .../com_trolltech_qt_xmlpatterns0.cpp | 162 +- .../com_trolltech_qt_core0.cpp | 382 ++-- .../com_trolltech_qt_core1.cpp | 232 +-- .../com_trolltech_qt_core2.cpp | 280 +-- .../com_trolltech_qt_core3.cpp | 82 +- .../com_trolltech_qt_gui0.cpp | 1666 ++++++++-------- .../com_trolltech_qt_gui1.cpp | 1314 ++++++------- .../com_trolltech_qt_gui10.cpp | 486 ++--- .../com_trolltech_qt_gui11.cpp | 980 +++++----- .../com_trolltech_qt_gui12.cpp | 386 ++-- .../com_trolltech_qt_gui2.cpp | 694 +++---- .../com_trolltech_qt_gui3.cpp | 720 +++---- .../com_trolltech_qt_gui4.cpp | 1034 +++++----- .../com_trolltech_qt_gui5.cpp | 652 +++---- .../com_trolltech_qt_gui6.cpp | 772 ++++---- .../com_trolltech_qt_gui7.cpp | 1202 ++++++------ .../com_trolltech_qt_gui8.cpp | 432 ++-- .../com_trolltech_qt_gui9.cpp | 434 ++--- .../com_trolltech_qt_gui_builtin0.cpp | 30 +- .../com_trolltech_qt_multimedia0.cpp | 316 +-- .../com_trolltech_qt_multimedia1.cpp | 158 +- .../com_trolltech_qt_network0.cpp | 296 +-- .../com_trolltech_qt_network1.cpp | 192 +- .../com_trolltech_qt_opengl0.cpp | 164 +- .../com_trolltech_qt_sql0.cpp | 410 ++-- .../com_trolltech_qt_svg0.cpp | 124 +- .../com_trolltech_qt_uitools0.cpp | 18 +- .../com_trolltech_qt_webkit0.cpp | 338 ++-- .../com_trolltech_qt_xml0.cpp | 224 +-- .../com_trolltech_qt_xmlpatterns0.cpp | 158 +- .../com_trolltech_qt_core0.cpp | 382 ++-- .../com_trolltech_qt_core1.cpp | 232 +-- .../com_trolltech_qt_core2.cpp | 280 +-- .../com_trolltech_qt_core3.cpp | 82 +- .../com_trolltech_qt_gui0.cpp | 1586 +++++++-------- .../com_trolltech_qt_gui1.cpp | 1300 ++++++------ .../com_trolltech_qt_gui10.cpp | 390 ++-- .../com_trolltech_qt_gui11.cpp | 1160 +++++------ .../com_trolltech_qt_gui12.cpp | 98 +- .../com_trolltech_qt_gui2.cpp | 764 ++++---- .../com_trolltech_qt_gui3.cpp | 674 +++---- .../com_trolltech_qt_gui4.cpp | 1010 +++++----- .../com_trolltech_qt_gui5.cpp | 578 +++--- .../com_trolltech_qt_gui6.cpp | 706 +++---- .../com_trolltech_qt_gui7.cpp | 1316 ++++++------- .../com_trolltech_qt_gui8.cpp | 56 +- .../com_trolltech_qt_gui9.cpp | 638 +++--- .../com_trolltech_qt_gui_builtin0.cpp | 30 +- .../com_trolltech_qt_multimedia0.cpp | 316 +-- .../com_trolltech_qt_multimedia1.cpp | 158 +- .../com_trolltech_qt_network0.cpp | 296 +-- .../com_trolltech_qt_network1.cpp | 192 +- .../com_trolltech_qt_opengl0.cpp | 164 +- .../com_trolltech_qt_sql0.cpp | 410 ++-- .../com_trolltech_qt_svg0.cpp | 124 +- .../com_trolltech_qt_uitools0.cpp | 18 +- .../com_trolltech_qt_webkit0.cpp | 338 ++-- .../com_trolltech_qt_xml0.cpp | 224 +-- .../com_trolltech_qt_xmlpatterns0.cpp | 158 +- .../com_trolltech_qt_core0.cpp | 336 ++-- .../com_trolltech_qt_core1.cpp | 254 +-- .../com_trolltech_qt_core2.cpp | 270 +-- .../com_trolltech_qt_core3.cpp | 132 +- .../com_trolltech_qt_gui0.cpp | 1722 ++++++++-------- .../com_trolltech_qt_gui1.cpp | 1346 ++++++------- .../com_trolltech_qt_gui10.cpp | 878 ++++----- .../com_trolltech_qt_gui11.cpp | 816 ++++---- .../com_trolltech_qt_gui12.cpp | 626 +++--- .../com_trolltech_qt_gui2.cpp | 748 +++---- .../com_trolltech_qt_gui3.cpp | 922 ++++----- .../com_trolltech_qt_gui4.cpp | 1064 +++++----- .../com_trolltech_qt_gui5.cpp | 830 ++++---- .../com_trolltech_qt_gui6.cpp | 582 +++--- .../com_trolltech_qt_gui7.cpp | 1012 +++++----- .../com_trolltech_qt_gui8.cpp | 976 +++++----- .../com_trolltech_qt_gui9.cpp | 54 +- .../com_trolltech_qt_gui_builtin0.cpp | 30 +- .../com_trolltech_qt_multimedia0.cpp | 490 ++--- .../com_trolltech_qt_multimedia1.cpp | 476 ++--- .../com_trolltech_qt_multimedia2.cpp | 360 ++-- .../com_trolltech_qt_multimedia3.cpp | 188 +- .../com_trolltech_qt_network0.cpp | 296 +-- .../com_trolltech_qt_network1.cpp | 220 +-- .../com_trolltech_qt_opengl0.cpp | 166 +- .../com_trolltech_qt_qml0.cpp | 114 +- .../com_trolltech_qt_quick0.cpp | 540 ++--- .../com_trolltech_qt_quick1.cpp | 48 +- .../com_trolltech_qt_sql0.cpp | 408 ++-- .../com_trolltech_qt_svg0.cpp | 126 +- .../com_trolltech_qt_uitools0.cpp | 18 +- .../com_trolltech_qt_webkit0.cpp | 352 ++-- .../com_trolltech_qt_xml0.cpp | 224 +-- .../com_trolltech_qt_xmlpatterns0.cpp | 162 +- 187 files changed, 46535 insertions(+), 46535 deletions(-) diff --git a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.cpp b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.cpp index 8f94470a0..69b137879 100644 --- a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +++ b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core0.cpp @@ -50,7 +50,7 @@ PythonQtShell_QAbstractAnimation::~PythonQtShell_QAbstractAnimation() { void PythonQtShell_QAbstractAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -69,7 +69,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -88,7 +88,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -118,7 +118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -148,7 +148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -178,7 +178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -197,7 +197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -216,7 +216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -235,7 +235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -339,7 +339,7 @@ PythonQtShell_QAbstractItemModel::~PythonQtShell_QAbstractItemModel() { QModelIndex PythonQtShell_QAbstractItemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -369,7 +369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -399,7 +399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -429,7 +429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -448,7 +448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -478,7 +478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -497,7 +497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -527,7 +527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -557,7 +557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -587,7 +587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractItemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -666,7 +666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -696,7 +696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -726,7 +726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -756,7 +756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -786,7 +786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -816,7 +816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractItemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -846,7 +846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractItemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -876,7 +876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractItemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -906,7 +906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractItemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -936,7 +936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -966,7 +966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -996,7 +996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1026,7 +1026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1056,7 +1056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1086,7 +1086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1105,7 +1105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractItemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -1135,7 +1135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1165,7 +1165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1195,7 +1195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1225,7 +1225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1255,7 +1255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1285,7 +1285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1304,7 +1304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1334,7 +1334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1364,7 +1364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1394,7 +1394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1424,7 +1424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1768,7 +1768,7 @@ PythonQtShell_QAbstractListModel::~PythonQtShell_QAbstractListModel() { QModelIndex PythonQtShell_QAbstractListModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1798,7 +1798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1828,7 +1828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1858,7 +1858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1877,7 +1877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1896,7 +1896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractListModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1926,7 +1926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1956,7 +1956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1986,7 +1986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2016,7 +2016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2035,7 +2035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractListModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2065,7 +2065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractListModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2095,7 +2095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractListModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2125,7 +2125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2155,7 +2155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2185,7 +2185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractListModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2215,7 +2215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractListModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2245,7 +2245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractListModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2275,7 +2275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractListModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2305,7 +2305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2335,7 +2335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2365,7 +2365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2395,7 +2395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2425,7 +2425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2444,7 +2444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractListModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2474,7 +2474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractListModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2504,7 +2504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2534,7 +2534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2564,7 +2564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2594,7 +2594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractListModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2624,7 +2624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2643,7 +2643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractListModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2673,7 +2673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2703,7 +2703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractListModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2733,7 +2733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractListModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2763,7 +2763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2802,7 +2802,7 @@ PythonQtShell_QAbstractState::~PythonQtShell_QAbstractState() { void PythonQtShell_QAbstractState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2821,7 +2821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2840,7 +2840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2870,7 +2870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2900,7 +2900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2919,7 +2919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2938,7 +2938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2992,7 +2992,7 @@ PythonQtShell_QAbstractTransition::~PythonQtShell_QAbstractTransition() { void PythonQtShell_QAbstractTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3011,7 +3011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3030,7 +3030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3060,7 +3060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3090,7 +3090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3120,7 +3120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3139,7 +3139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3228,7 +3228,7 @@ PythonQtShell_QAnimationGroup::~PythonQtShell_QAnimationGroup() { void PythonQtShell_QAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3247,7 +3247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3266,7 +3266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3296,7 +3296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3326,7 +3326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3356,7 +3356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3375,7 +3375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3394,7 +3394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3413,7 +3413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3548,7 +3548,7 @@ PythonQtShell_QBuffer::~PythonQtShell_QBuffer() { bool PythonQtShell_QBuffer::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3578,7 +3578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3608,7 +3608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3638,7 +3638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3668,7 +3668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3687,7 +3687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3706,7 +3706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3725,7 +3725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3755,7 +3755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3785,7 +3785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3815,7 +3815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::open(QIODevice::OpenMode openMode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3845,7 +3845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3875,7 +3875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3935,7 +3935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3965,7 +3965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::seek(qint64 off0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3995,7 +3995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4025,7 +4025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4044,7 +4044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4074,7 +4074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4104,7 +4104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5245,7 +5245,7 @@ PythonQtShell_QEventLoop::~PythonQtShell_QEventLoop() { void PythonQtShell_QEventLoop::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5264,7 +5264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventLoop::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5283,7 +5283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventLoop::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5313,7 +5313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventLoop::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5343,7 +5343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventLoop::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5407,7 +5407,7 @@ PythonQtShell_QEventTransition::~PythonQtShell_QEventTransition() { void PythonQtShell_QEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5426,7 +5426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5445,7 +5445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5475,7 +5475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5505,7 +5505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5535,7 +5535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5554,7 +5554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5622,7 +5622,7 @@ PythonQtShell_QFactoryInterface::~PythonQtShell_QFactoryInterface() { QStringList PythonQtShell_QFactoryInterface::keys() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keys"); + static PyObject* name = PyUnicode_FromString("keys"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5667,7 +5667,7 @@ PythonQtShell_QFile::~PythonQtShell_QFile() { bool PythonQtShell_QFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5697,7 +5697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5727,7 +5727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5757,7 +5757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5787,7 +5787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5806,7 +5806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5825,7 +5825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5844,7 +5844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5874,7 +5874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5904,7 +5904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFile::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5934,7 +5934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5964,7 +5964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5994,7 +5994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -6024,7 +6024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6054,7 +6054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6084,7 +6084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6114,7 +6114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6144,7 +6144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6174,7 +6174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6204,7 +6204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -6234,7 +6234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6264,7 +6264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6283,7 +6283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6313,7 +6313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6343,7 +6343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -6520,7 +6520,7 @@ PythonQtShell_QFileDevice::~PythonQtShell_QFileDevice() { bool PythonQtShell_QFileDevice::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6550,7 +6550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6580,7 +6580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6610,7 +6610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6640,7 +6640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6659,7 +6659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6678,7 +6678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6697,7 +6697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6727,7 +6727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6757,7 +6757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFileDevice::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6787,7 +6787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6817,7 +6817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -6847,7 +6847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QFileDevice::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -6877,7 +6877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6907,7 +6907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6937,7 +6937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6967,7 +6967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6997,7 +6997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7027,7 +7027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7057,7 +7057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -7087,7 +7087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7117,7 +7117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7136,7 +7136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7166,7 +7166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7196,7 +7196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -7587,7 +7587,7 @@ PythonQtShell_QFileSystemWatcher::~PythonQtShell_QFileSystemWatcher() { void PythonQtShell_QFileSystemWatcher::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7606,7 +7606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemWatcher::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7625,7 +7625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemWatcher::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7655,7 +7655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemWatcher::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7685,7 +7685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemWatcher::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7748,7 +7748,7 @@ PythonQtShell_QFinalState::~PythonQtShell_QFinalState() { void PythonQtShell_QFinalState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7767,7 +7767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7786,7 +7786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFinalState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7816,7 +7816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFinalState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7846,7 +7846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7865,7 +7865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7884,7 +7884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7928,7 +7928,7 @@ PythonQtShell_QHistoryState::~PythonQtShell_QHistoryState() { void PythonQtShell_QHistoryState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7947,7 +7947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7966,7 +7966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHistoryState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7996,7 +7996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHistoryState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8026,7 +8026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8045,7 +8045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8064,7 +8064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8132,7 +8132,7 @@ PythonQtShell_QIODevice::~PythonQtShell_QIODevice() { bool PythonQtShell_QIODevice::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8162,7 +8162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8192,7 +8192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8222,7 +8222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8252,7 +8252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8271,7 +8271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8290,7 +8290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8309,7 +8309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8339,7 +8339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8369,7 +8369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8399,7 +8399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -8429,7 +8429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8459,7 +8459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -8489,7 +8489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -8519,7 +8519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8549,7 +8549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -8579,7 +8579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8609,7 +8609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8628,7 +8628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -8658,7 +8658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -8688,7 +8688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.cpp b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.cpp index 25589a519..34f529064 100644 --- a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +++ b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core1.cpp @@ -51,7 +51,7 @@ PythonQtShell_QIdentityProxyModel::~PythonQtShell_QIdentityProxyModel() { QModelIndex PythonQtShell_QIdentityProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -81,7 +81,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -111,7 +111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -141,7 +141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -160,7 +160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QIdentityProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -190,7 +190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -209,7 +209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QIdentityProxyModel::data(const QModelIndex& proxyIndex0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -239,7 +239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -269,7 +269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -329,7 +329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -348,7 +348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QIdentityProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -378,7 +378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -408,7 +408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QIdentityProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -438,7 +438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -468,7 +468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -498,7 +498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -528,7 +528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QIdentityProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -558,7 +558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -588,7 +588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionFromSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -618,7 +618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionToSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -648,7 +648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -678,7 +678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QIdentityProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -708,7 +708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QIdentityProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -738,7 +738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QIdentityProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -768,7 +768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -798,7 +798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -828,7 +828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -858,7 +858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -888,7 +888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -937,7 +937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QIdentityProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QIdentityProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -997,7 +997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1027,7 +1027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1057,7 +1057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1087,7 +1087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -1106,7 +1106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1136,7 +1136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1155,7 +1155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QIdentityProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1185,7 +1185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1215,7 +1215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1245,7 +1245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1275,7 +1275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1916,7 +1916,7 @@ PythonQtShell_QLibrary::~PythonQtShell_QLibrary() { void PythonQtShell_QLibrary::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1935,7 +1935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLibrary::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1954,7 +1954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLibrary::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1984,7 +1984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLibrary::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2014,7 +2014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLibrary::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2640,7 +2640,7 @@ PythonQtShell_QMimeData::~PythonQtShell_QMimeData() { void PythonQtShell_QMimeData::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2659,7 +2659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMimeData::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2678,7 +2678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2708,7 +2708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2738,7 +2738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QMimeData::formats() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("formats"); + static PyObject* name = PyUnicode_FromString("formats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2768,7 +2768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::hasFormat(const QString& mimetype0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFormat"); + static PyObject* name = PyUnicode_FromString("hasFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2798,7 +2798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMimeData::retrieveData(const QString& mimetype0, QVariant::Type preferredType1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("retrieveData"); + static PyObject* name = PyUnicode_FromString("retrieveData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "QVariant::Type"}; @@ -2828,7 +2828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMimeData::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3232,7 +3232,7 @@ PythonQtShell_QObject::~PythonQtShell_QObject() { void PythonQtShell_QObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3251,7 +3251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3270,7 +3270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3300,7 +3300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3330,7 +3330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3479,7 +3479,7 @@ PythonQtShell_QParallelAnimationGroup::~PythonQtShell_QParallelAnimationGroup() void PythonQtShell_QParallelAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3498,7 +3498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3517,7 +3517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QParallelAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3547,7 +3547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QParallelAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3577,7 +3577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QParallelAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3607,7 +3607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3626,7 +3626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3645,7 +3645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3664,7 +3664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3718,7 +3718,7 @@ PythonQtShell_QPauseAnimation::~PythonQtShell_QPauseAnimation() { void PythonQtShell_QPauseAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3737,7 +3737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3756,7 +3756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPauseAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3786,7 +3786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPauseAnimation::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3816,7 +3816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPauseAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3846,7 +3846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3865,7 +3865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3884,7 +3884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3903,7 +3903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -4062,7 +4062,7 @@ PythonQtShell_QProcess::~PythonQtShell_QProcess() { bool PythonQtShell_QProcess::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4092,7 +4092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4122,7 +4122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4152,7 +4152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4182,7 +4182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4201,7 +4201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4220,7 +4220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4239,7 +4239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4269,7 +4269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4299,7 +4299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4329,7 +4329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4359,7 +4359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4389,7 +4389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4419,7 +4419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4449,7 +4449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4479,7 +4479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4509,7 +4509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::setupChildProcess() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupChildProcess"); + static PyObject* name = PyUnicode_FromString("setupChildProcess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4528,7 +4528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4558,7 +4558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4577,7 +4577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4607,7 +4607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4637,7 +4637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -4987,7 +4987,7 @@ PythonQtShell_QPropertyAnimation::~PythonQtShell_QPropertyAnimation() { void PythonQtShell_QPropertyAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5006,7 +5006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5025,7 +5025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPropertyAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5055,7 +5055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPropertyAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5085,7 +5085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPropertyAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5115,7 +5115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPropertyAnimation::interpolated(const QVariant& from0, const QVariant& to1, qreal progress2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -5145,7 +5145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5164,7 +5164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5183,7 +5183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateCurrentValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -5202,7 +5202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -5221,7 +5221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; diff --git a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.cpp b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.cpp index ea888895e..f1ad51832 100644 --- a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +++ b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core2.cpp @@ -202,7 +202,7 @@ PythonQtShell_QRunnable::~PythonQtShell_QRunnable() { void PythonQtShell_QRunnable::run() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -277,7 +277,7 @@ PythonQtShell_QSequentialAnimationGroup::~PythonQtShell_QSequentialAnimationGrou void PythonQtShell_QSequentialAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -296,7 +296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -315,7 +315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSequentialAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -345,7 +345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSequentialAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -375,7 +375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSequentialAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -405,7 +405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -424,7 +424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -443,7 +443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -462,7 +462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -531,7 +531,7 @@ PythonQtShell_QSettings::~PythonQtShell_QSettings() { void PythonQtShell_QSettings::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSettings::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -569,7 +569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSettings::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -599,7 +599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSettings::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -629,7 +629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSettings::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -834,7 +834,7 @@ PythonQtShell_QSharedMemory::~PythonQtShell_QSharedMemory() { void PythonQtShell_QSharedMemory::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -853,7 +853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSharedMemory::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -872,7 +872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSharedMemory::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -902,7 +902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSharedMemory::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -932,7 +932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSharedMemory::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1040,7 +1040,7 @@ PythonQtShell_QSignalMapper::~PythonQtShell_QSignalMapper() { void PythonQtShell_QSignalMapper::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1059,7 +1059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalMapper::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1078,7 +1078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalMapper::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1108,7 +1108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalMapper::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1138,7 +1138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalMapper::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1212,7 +1212,7 @@ PythonQtShell_QSignalTransition::~PythonQtShell_QSignalTransition() { void PythonQtShell_QSignalTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1231,7 +1231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1250,7 +1250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1280,7 +1280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1310,7 +1310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1340,7 +1340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1359,7 +1359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1486,7 +1486,7 @@ PythonQtShell_QState::~PythonQtShell_QState() { void PythonQtShell_QState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1505,7 +1505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1524,7 +1524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1554,7 +1554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1584,7 +1584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1603,7 +1603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1622,7 +1622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1730,7 +1730,7 @@ PythonQtShell_QStateMachine::~PythonQtShell_QStateMachine() { void PythonQtShell_QStateMachine::beginMicrostep(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginMicrostep"); + static PyObject* name = PyUnicode_FromString("beginMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1749,7 +1749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::beginSelectTransitions(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginSelectTransitions"); + static PyObject* name = PyUnicode_FromString("beginSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1768,7 +1768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1787,7 +1787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1806,7 +1806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::endMicrostep(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endMicrostep"); + static PyObject* name = PyUnicode_FromString("endMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1825,7 +1825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::endSelectTransitions(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endSelectTransitions"); + static PyObject* name = PyUnicode_FromString("endSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1844,7 +1844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStateMachine::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1874,7 +1874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStateMachine::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1904,7 +1904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1923,7 +1923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1942,7 +1942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2257,7 +2257,7 @@ PythonQtShell_QTemporaryFile::~PythonQtShell_QTemporaryFile() { bool PythonQtShell_QTemporaryFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2287,7 +2287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2317,7 +2317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2347,7 +2347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2377,7 +2377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2396,7 +2396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2415,7 +2415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2434,7 +2434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2464,7 +2464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2494,7 +2494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2524,7 +2524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2554,7 +2554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QTemporaryFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -2584,7 +2584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2614,7 +2614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2644,7 +2644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2674,7 +2674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2704,7 +2704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2734,7 +2734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2764,7 +2764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -2794,7 +2794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2824,7 +2824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2843,7 +2843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2873,7 +2873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2903,7 +2903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3079,7 +3079,7 @@ PythonQtShell_QTextCodec::~PythonQtShell_QTextCodec() { QList PythonQtShell_QTextCodec::aliases() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("aliases"); + static PyObject* name = PyUnicode_FromString("aliases"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -3109,7 +3109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QTextCodec::convertFromUnicode(const QChar* in0, int length1, QTextCodec::ConverterState* state2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("convertFromUnicode"); + static PyObject* name = PyUnicode_FromString("convertFromUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QChar*" , "int" , "QTextCodec::ConverterState*"}; @@ -3139,7 +3139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTextCodec::convertToUnicode(const char* in0, int length1, QTextCodec::ConverterState* state2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("convertToUnicode"); + static PyObject* name = PyUnicode_FromString("convertToUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "int" , "QTextCodec::ConverterState*"}; @@ -3169,7 +3169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextCodec::mibEnum() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mibEnum"); + static PyObject* name = PyUnicode_FromString("mibEnum"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3199,7 +3199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QTextCodec::name() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -3657,7 +3657,7 @@ PythonQtShell_QThreadPool::~PythonQtShell_QThreadPool() { void PythonQtShell_QThreadPool::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3676,7 +3676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QThreadPool::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3695,7 +3695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QThreadPool::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3725,7 +3725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QThreadPool::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3755,7 +3755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QThreadPool::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3839,7 +3839,7 @@ PythonQtShell_QTimeLine::~PythonQtShell_QTimeLine() { void PythonQtShell_QTimeLine::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3858,7 +3858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeLine::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3877,7 +3877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeLine::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3907,7 +3907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeLine::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3937,7 +3937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeLine::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3956,7 +3956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qreal PythonQtShell_QTimeLine::valueForTime(int msec0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueForTime"); + static PyObject* name = PyUnicode_FromString("valueForTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal" , "int"}; @@ -4116,7 +4116,7 @@ PythonQtShell_QTimer::~PythonQtShell_QTimer() { void PythonQtShell_QTimer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4135,7 +4135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4154,7 +4154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4184,7 +4184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4214,7 +4214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4318,7 +4318,7 @@ PythonQtShell_QTranslator::~PythonQtShell_QTranslator() { void PythonQtShell_QTranslator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4337,7 +4337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTranslator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4356,7 +4356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4386,7 +4386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4416,7 +4416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4446,7 +4446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTranslator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4465,7 +4465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTranslator::translate(const char* context0, const char* sourceText1, const char* disambiguation2, int n3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("translate"); + static PyObject* name = PyUnicode_FromString("translate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "const char*" , "const char*" , "int"}; diff --git a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.cpp b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.cpp index c0a6de745..ab0497af3 100644 --- a/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +++ b/generated_cpp_50/com_trolltech_qt_core/com_trolltech_qt_core3.cpp @@ -271,7 +271,7 @@ PythonQtShell_QVariantAnimation::~PythonQtShell_QVariantAnimation() { void PythonQtShell_QVariantAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -290,7 +290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -309,7 +309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVariantAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -339,7 +339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVariantAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -369,7 +369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVariantAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -399,7 +399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QVariantAnimation::interpolated(const QVariant& from0, const QVariant& to1, qreal progress2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -429,7 +429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -448,7 +448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -467,7 +467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateCurrentValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -486,7 +486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -505,7 +505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -650,7 +650,7 @@ PythonQtShell_QXmlStreamEntityResolver::~PythonQtShell_QXmlStreamEntityResolver( QString PythonQtShell_QXmlStreamEntityResolver::resolveEntity(const QString& publicId0, const QString& systemId1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "const QString&"}; @@ -680,7 +680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlStreamEntityResolver::resolveUndeclaredEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveUndeclaredEntity"); + static PyObject* name = PyUnicode_FromString("resolveUndeclaredEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp index 8eac3b852..6bc71975f 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp @@ -115,7 +115,7 @@ PythonQtShell_QAbstractButton::~PythonQtShell_QAbstractButton() { void PythonQtShell_QAbstractButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -134,7 +134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -153,7 +153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -172,7 +172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -191,7 +191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -210,7 +210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -229,7 +229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -248,7 +248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -278,7 +278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -297,7 +297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -316,7 +316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -335,7 +335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -354,7 +354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -373,7 +373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -403,7 +403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -433,7 +433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -452,7 +452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -482,7 +482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -501,7 +501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -531,7 +531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -561,7 +561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -580,7 +580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -610,7 +610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -629,7 +629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -648,7 +648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -678,7 +678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -697,7 +697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -716,7 +716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -765,7 +765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractButton::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -795,7 +795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -814,7 +814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -852,7 +852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -871,7 +871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -969,7 +969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -988,7 +988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1018,7 +1018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1037,7 +1037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1067,7 +1067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1086,7 +1086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractButton::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1116,7 +1116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1135,7 +1135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1154,7 +1154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1358,7 +1358,7 @@ PythonQtShell_QAbstractGraphicsShapeItem::~PythonQtShell_QAbstractGraphicsShapeI void PythonQtShell_QAbstractGraphicsShapeItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1377,7 +1377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QAbstractGraphicsShapeItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1407,7 +1407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1437,7 +1437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1467,7 +1467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1497,7 +1497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1516,7 +1516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1535,7 +1535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1554,7 +1554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1573,7 +1573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1592,7 +1592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1622,7 +1622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1641,7 +1641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1660,7 +1660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1679,7 +1679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1698,7 +1698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1717,7 +1717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1736,7 +1736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1766,7 +1766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1796,7 +1796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -1829,7 +1829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1848,7 +1848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1867,7 +1867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1886,7 +1886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1905,7 +1905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1924,7 +1924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1943,7 +1943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1973,7 +1973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1992,7 +1992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2022,7 +2022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2052,7 +2052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2071,7 +2071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2101,7 +2101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2131,7 +2131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractGraphicsShapeItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2161,7 +2161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2220,7 +2220,7 @@ PythonQtShell_QAbstractItemDelegate::~PythonQtShell_QAbstractItemDelegate() { void PythonQtShell_QAbstractItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2239,7 +2239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QAbstractItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2288,7 +2288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2307,7 +2307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2337,7 +2337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2367,7 +2367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2397,7 +2397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2427,7 +2427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2446,7 +2446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -2476,7 +2476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2495,7 +2495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -2514,7 +2514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2544,7 +2544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2563,7 +2563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2642,7 +2642,7 @@ PythonQtShell_QAbstractItemView::~PythonQtShell_QAbstractItemView() { void PythonQtShell_QAbstractItemView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2661,7 +2661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2680,7 +2680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2699,7 +2699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -2718,7 +2718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2737,7 +2737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2756,7 +2756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2775,7 +2775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -2794,7 +2794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2813,7 +2813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -2832,7 +2832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2862,7 +2862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2881,7 +2881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2900,7 +2900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2919,7 +2919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2938,7 +2938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2957,7 +2957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -2987,7 +2987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3006,7 +3006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3025,7 +3025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3055,7 +3055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3085,7 +3085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3104,7 +3104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3134,7 +3134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3153,7 +3153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3183,7 +3183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3213,7 +3213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3232,7 +3232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3262,7 +3262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3281,7 +3281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3300,7 +3300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemView::indexAt(const QPoint& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3330,7 +3330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3349,7 +3349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3368,7 +3368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3398,7 +3398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3428,7 +3428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3447,7 +3447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3466,7 +3466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3485,7 +3485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3504,7 +3504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3534,7 +3534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3553,7 +3553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3572,7 +3572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3591,7 +3591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3610,7 +3610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemView::moveCursor(QAbstractItemView::CursorAction cursorAction0, Qt::KeyboardModifiers modifiers1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -3640,7 +3640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3659,7 +3659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3689,7 +3689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractItemView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3719,7 +3719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3738,7 +3738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractItemView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3768,7 +3768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3787,7 +3787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3806,7 +3806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -3825,7 +3825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -3844,7 +3844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3863,7 +3863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -3882,7 +3882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3901,7 +3901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractItemView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -3931,7 +3931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -3950,7 +3950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QAbstractItemView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -3980,7 +3980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -3999,7 +3999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4018,7 +4018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4037,7 +4037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4056,7 +4056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4075,7 +4075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractItemView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4105,7 +4105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4124,7 +4124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4154,7 +4154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4184,7 +4184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4203,7 +4203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4222,7 +4222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4241,7 +4241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4260,7 +4260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4279,7 +4279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4298,7 +4298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4328,7 +4328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4347,7 +4347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4366,7 +4366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QAbstractItemView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4396,7 +4396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4426,7 +4426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4456,7 +4456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QAbstractItemView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -4486,7 +4486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QAbstractItemView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -4516,7 +4516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5115,7 +5115,7 @@ PythonQtShell_QAbstractPrintDialog::~PythonQtShell_QAbstractPrintDialog() { void PythonQtShell_QAbstractPrintDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5134,7 +5134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5153,7 +5153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5172,7 +5172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5191,7 +5191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5210,7 +5210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5229,7 +5229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5248,7 +5248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5278,7 +5278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5297,7 +5297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5316,7 +5316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5335,7 +5335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5354,7 +5354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5373,7 +5373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5392,7 +5392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5422,7 +5422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5452,7 +5452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5482,7 +5482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5501,7 +5501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5531,7 +5531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5550,7 +5550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5580,7 +5580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5610,7 +5610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5629,7 +5629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5648,7 +5648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5667,7 +5667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5697,7 +5697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5716,7 +5716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5735,7 +5735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5754,7 +5754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5784,7 +5784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5803,7 +5803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5822,7 +5822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5841,7 +5841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5860,7 +5860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5879,7 +5879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5909,7 +5909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5928,7 +5928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractPrintDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5958,7 +5958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5977,7 +5977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractPrintDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6007,7 +6007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6026,7 +6026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6045,7 +6045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractPrintDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6075,7 +6075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6094,7 +6094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6113,7 +6113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6132,7 +6132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6236,7 +6236,7 @@ PythonQtShell_QAbstractProxyModel::~PythonQtShell_QAbstractProxyModel() { QModelIndex PythonQtShell_QAbstractProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6266,7 +6266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6296,7 +6296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6326,7 +6326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6345,7 +6345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6375,7 +6375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6394,7 +6394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractProxyModel::data(const QModelIndex& proxyIndex0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -6424,7 +6424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6454,7 +6454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6484,7 +6484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6514,7 +6514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6533,7 +6533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6563,7 +6563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6593,7 +6593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6623,7 +6623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6653,7 +6653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6683,7 +6683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6713,7 +6713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6743,7 +6743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6773,7 +6773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionFromSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -6803,7 +6803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionToSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -6833,7 +6833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6863,7 +6863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6893,7 +6893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6923,7 +6923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6953,7 +6953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6983,7 +6983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7013,7 +7013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7043,7 +7043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7073,7 +7073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7103,7 +7103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7122,7 +7122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7152,7 +7152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7182,7 +7182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7212,7 +7212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7242,7 +7242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -7272,7 +7272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -7291,7 +7291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7321,7 +7321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7340,7 +7340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7370,7 +7370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7400,7 +7400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7430,7 +7430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7460,7 +7460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7614,7 +7614,7 @@ PythonQtShell_QAbstractScrollArea::~PythonQtShell_QAbstractScrollArea() { void PythonQtShell_QAbstractScrollArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7633,7 +7633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7652,7 +7652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7671,7 +7671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7690,7 +7690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7709,7 +7709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7728,7 +7728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7758,7 +7758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7777,7 +7777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7796,7 +7796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7815,7 +7815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7834,7 +7834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7853,7 +7853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7883,7 +7883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7913,7 +7913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7932,7 +7932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7962,7 +7962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7981,7 +7981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8011,7 +8011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8041,7 +8041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8060,7 +8060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8079,7 +8079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8098,7 +8098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractScrollArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8128,7 +8128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8147,7 +8147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8166,7 +8166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8185,7 +8185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8215,7 +8215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8234,7 +8234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8253,7 +8253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8272,7 +8272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8291,7 +8291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8310,7 +8310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8340,7 +8340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractScrollArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8370,7 +8370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8389,7 +8389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractScrollArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8419,7 +8419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8438,7 +8438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8457,7 +8457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8476,7 +8476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractScrollArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8506,7 +8506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8525,7 +8525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8544,7 +8544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8563,7 +8563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8593,7 +8593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractScrollArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8623,7 +8623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8842,7 +8842,7 @@ PythonQtShell_QAbstractSlider::~PythonQtShell_QAbstractSlider() { void PythonQtShell_QAbstractSlider::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8861,7 +8861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8880,7 +8880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8899,7 +8899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8918,7 +8918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8937,7 +8937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8956,7 +8956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8986,7 +8986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9005,7 +9005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9024,7 +9024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9043,7 +9043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9062,7 +9062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9081,7 +9081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9111,7 +9111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9141,7 +9141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9160,7 +9160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9190,7 +9190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9209,7 +9209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9239,7 +9239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9269,7 +9269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9288,7 +9288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9307,7 +9307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9326,7 +9326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9356,7 +9356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9375,7 +9375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9394,7 +9394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9413,7 +9413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9443,7 +9443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractSlider::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9473,7 +9473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9492,7 +9492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9511,7 +9511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9530,7 +9530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9549,7 +9549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9568,7 +9568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9598,7 +9598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractSlider::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9628,7 +9628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9647,7 +9647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractSlider::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9677,7 +9677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9696,7 +9696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractSlider::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9726,7 +9726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9745,7 +9745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractSlider::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9775,7 +9775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::sliderChange(QAbstractSlider::SliderChange change0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -9794,7 +9794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9813,7 +9813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9832,7 +9832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10001,7 +10001,7 @@ PythonQtShell_QAbstractSpinBox::~PythonQtShell_QAbstractSpinBox() { void PythonQtShell_QAbstractSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10020,7 +10020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10039,7 +10039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10058,7 +10058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10077,7 +10077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10096,7 +10096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10115,7 +10115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10134,7 +10134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10164,7 +10164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10183,7 +10183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10202,7 +10202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10221,7 +10221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10240,7 +10240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10259,7 +10259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10289,7 +10289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10319,7 +10319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -10338,7 +10338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10357,7 +10357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10387,7 +10387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10406,7 +10406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10436,7 +10436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10466,7 +10466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10485,7 +10485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10504,7 +10504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10523,7 +10523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10553,7 +10553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10572,7 +10572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10591,7 +10591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10610,7 +10610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10640,7 +10640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10659,7 +10659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10678,7 +10678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10697,7 +10697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10716,7 +10716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10735,7 +10735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10765,7 +10765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10795,7 +10795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10814,7 +10814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10844,7 +10844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10863,7 +10863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10893,7 +10893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10912,7 +10912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10931,7 +10931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QAbstractSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -10961,7 +10961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10980,7 +10980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10999,7 +10999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QAbstractSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11029,7 +11029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11303,7 +11303,7 @@ PythonQtShell_QAbstractTableModel::~PythonQtShell_QAbstractTableModel() { QModelIndex PythonQtShell_QAbstractTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -11333,7 +11333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -11363,7 +11363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -11393,7 +11393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11412,7 +11412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -11442,7 +11442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11461,7 +11461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractTableModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -11491,7 +11491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -11521,7 +11521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11551,7 +11551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11581,7 +11581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11600,7 +11600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -11630,7 +11630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -11660,7 +11660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -11690,7 +11690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11720,7 +11720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11750,7 +11750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -11780,7 +11780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -11810,7 +11810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -11840,7 +11840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -11870,7 +11870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -11900,7 +11900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -11930,7 +11930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11960,7 +11960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11990,7 +11990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12009,7 +12009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -12039,7 +12039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12069,7 +12069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -12099,7 +12099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -12129,7 +12129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -12159,7 +12159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12189,7 +12189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -12208,7 +12208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -12238,7 +12238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12268,7 +12268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12298,7 +12298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12328,7 +12328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12367,7 +12367,7 @@ PythonQtShell_QAbstractTextDocumentLayout::~PythonQtShell_QAbstractTextDocumentL QRectF PythonQtShell_QAbstractTextDocumentLayout::blockBoundingRect(const QTextBlock& block0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -12397,7 +12397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12416,7 +12416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12435,7 +12435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::documentChanged(int from0, int charsRemoved1, int charsAdded2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -12454,7 +12454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QAbstractTextDocumentLayout::documentSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -12484,7 +12484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::draw(QPainter* painter0, const QAbstractTextDocumentLayout::PaintContext& context1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -12503,7 +12503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::drawInlineObject(QPainter* painter0, const QRectF& rect1, QTextInlineObject object2, int posInDocument3, const QTextFormat& format4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -12522,7 +12522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTextDocumentLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12552,7 +12552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTextDocumentLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12582,7 +12582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QAbstractTextDocumentLayout::frameBoundingRect(QTextFrame* frame0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -12612,7 +12612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTextDocumentLayout::hitTest(const QPointF& point0, Qt::HitTestAccuracy accuracy1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -12642,7 +12642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTextDocumentLayout::pageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12672,7 +12672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::positionInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -12691,7 +12691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::resizeInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -12710,7 +12710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12881,7 +12881,7 @@ PythonQtShell_QAction::~PythonQtShell_QAction() { void PythonQtShell_QAction::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12900,7 +12900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAction::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12919,7 +12919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAction::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12949,7 +12949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAction::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12979,7 +12979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAction::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13272,7 +13272,7 @@ PythonQtShell_QActionGroup::~PythonQtShell_QActionGroup() { void PythonQtShell_QActionGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13291,7 +13291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QActionGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13310,7 +13310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QActionGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13340,7 +13340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QActionGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13370,7 +13370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QActionGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13742,7 +13742,7 @@ PythonQtShell_QBoxLayout::~PythonQtShell_QBoxLayout() { void PythonQtShell_QBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -13761,7 +13761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13780,7 +13780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -13810,7 +13810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13840,7 +13840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13859,7 +13859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13889,7 +13889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13919,7 +13919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -13949,7 +13949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -13979,7 +13979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -14009,7 +14009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14028,7 +14028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14058,7 +14058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -14088,7 +14088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -14118,7 +14118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14148,7 +14148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14178,7 +14178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -14197,7 +14197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -14227,7 +14227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14421,7 +14421,7 @@ PythonQtShell_QButtonGroup::~PythonQtShell_QButtonGroup() { void PythonQtShell_QButtonGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14440,7 +14440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QButtonGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14459,7 +14459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QButtonGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14489,7 +14489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QButtonGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14519,7 +14519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QButtonGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14598,7 +14598,7 @@ PythonQtShell_QCalendarWidget::~PythonQtShell_QCalendarWidget() { void PythonQtShell_QCalendarWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14617,7 +14617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14636,7 +14636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14655,7 +14655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14674,7 +14674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14693,7 +14693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14712,7 +14712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14742,7 +14742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14761,7 +14761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14780,7 +14780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14799,7 +14799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14818,7 +14818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14837,7 +14837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14867,7 +14867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14897,7 +14897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14916,7 +14916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14946,7 +14946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14965,7 +14965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14995,7 +14995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15025,7 +15025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15044,7 +15044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15063,7 +15063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15082,7 +15082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCalendarWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15112,7 +15112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15131,7 +15131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15150,7 +15150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15169,7 +15169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15199,7 +15199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCalendarWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15229,7 +15229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15248,7 +15248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15267,7 +15267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15286,7 +15286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15305,7 +15305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15324,7 +15324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15354,7 +15354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::paintCell(QPainter* painter0, const QRect& rect1, const QDate& date2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintCell"); + static PyObject* name = PyUnicode_FromString("paintCell"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QDate&"}; @@ -15373,7 +15373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCalendarWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15403,7 +15403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15422,7 +15422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCalendarWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15452,7 +15452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15471,7 +15471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCalendarWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15501,7 +15501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15520,7 +15520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCalendarWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15550,7 +15550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15569,7 +15569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15588,7 +15588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15807,7 +15807,7 @@ PythonQtShell_QCheckBox::~PythonQtShell_QCheckBox() { void PythonQtShell_QCheckBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15826,7 +15826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15845,7 +15845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15864,7 +15864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15883,7 +15883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15902,7 +15902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15921,7 +15921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15940,7 +15940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15970,7 +15970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -15989,7 +15989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16008,7 +16008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16027,7 +16027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16046,7 +16046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16065,7 +16065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16095,7 +16095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16125,7 +16125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16144,7 +16144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16174,7 +16174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16193,7 +16193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16223,7 +16223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16253,7 +16253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16272,7 +16272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -16302,7 +16302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16321,7 +16321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16340,7 +16340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCheckBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16370,7 +16370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16389,7 +16389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16408,7 +16408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16427,7 +16427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16457,7 +16457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16476,7 +16476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16495,7 +16495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16514,7 +16514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16533,7 +16533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16552,7 +16552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16582,7 +16582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16601,7 +16601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCheckBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16631,7 +16631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16650,7 +16650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCheckBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16680,7 +16680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16699,7 +16699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCheckBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16729,7 +16729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16748,7 +16748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16767,7 +16767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16786,7 +16786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16967,7 +16967,7 @@ PythonQtShell_QColorDialog::~PythonQtShell_QColorDialog() { void PythonQtShell_QColorDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16986,7 +16986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17005,7 +17005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17024,7 +17024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17043,7 +17043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17062,7 +17062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17081,7 +17081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17100,7 +17100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17130,7 +17130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17149,7 +17149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17168,7 +17168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17187,7 +17187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17206,7 +17206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17225,7 +17225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17244,7 +17244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17274,7 +17274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17304,7 +17304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17334,7 +17334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17353,7 +17353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17383,7 +17383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17402,7 +17402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17432,7 +17432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17462,7 +17462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17481,7 +17481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17500,7 +17500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17519,7 +17519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QColorDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17549,7 +17549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17568,7 +17568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17587,7 +17587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17606,7 +17606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17636,7 +17636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17655,7 +17655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17674,7 +17674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17693,7 +17693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17712,7 +17712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17731,7 +17731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17761,7 +17761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17780,7 +17780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QColorDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17810,7 +17810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17829,7 +17829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QColorDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17859,7 +17859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17878,7 +17878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17897,7 +17897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QColorDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17927,7 +17927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17946,7 +17946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17965,7 +17965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17984,7 +17984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -18112,7 +18112,7 @@ PythonQtShell_QColumnView::~PythonQtShell_QColumnView() { void PythonQtShell_QColumnView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18131,7 +18131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18150,7 +18150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18169,7 +18169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -18188,7 +18188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18207,7 +18207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -18226,7 +18226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18245,7 +18245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractItemView* PythonQtShell_QColumnView::createColumn(const QModelIndex& rootIndex0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createColumn"); + static PyObject* name = PyUnicode_FromString("createColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractItemView*" , "const QModelIndex&"}; @@ -18275,7 +18275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -18294,7 +18294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18313,7 +18313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -18332,7 +18332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18362,7 +18362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18381,7 +18381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -18400,7 +18400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -18419,7 +18419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -18438,7 +18438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -18457,7 +18457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -18487,7 +18487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -18506,7 +18506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18525,7 +18525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -18555,7 +18555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -18585,7 +18585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18604,7 +18604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18634,7 +18634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18653,7 +18653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18683,7 +18683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18713,7 +18713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18732,7 +18732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18762,7 +18762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18781,7 +18781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18800,7 +18800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QColumnView::indexAt(const QPoint& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -18830,7 +18830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18849,7 +18849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18868,7 +18868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QColumnView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18898,7 +18898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -18928,7 +18928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18947,7 +18947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18966,7 +18966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -18985,7 +18985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19004,7 +19004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19034,7 +19034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19053,7 +19053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19072,7 +19072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19091,7 +19091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19110,7 +19110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19129,7 +19129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19159,7 +19159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QColumnView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19189,7 +19189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19208,7 +19208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QColumnView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19238,7 +19238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19257,7 +19257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19276,7 +19276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -19295,7 +19295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -19314,7 +19314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -19333,7 +19333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -19352,7 +19352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19371,7 +19371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QColumnView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -19401,7 +19401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -19420,7 +19420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QColumnView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -19450,7 +19450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -19469,7 +19469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -19488,7 +19488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -19507,7 +19507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -19526,7 +19526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -19545,7 +19545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QColumnView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19575,7 +19575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19594,7 +19594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19624,7 +19624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19654,7 +19654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -19673,7 +19673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -19692,7 +19692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -19711,7 +19711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19730,7 +19730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19749,7 +19749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19768,7 +19768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19798,7 +19798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19817,7 +19817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19836,7 +19836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QColumnView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -19866,7 +19866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19896,7 +19896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QColumnView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19926,7 +19926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QColumnView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -19956,7 +19956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QColumnView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -19986,7 +19986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -20145,7 +20145,7 @@ PythonQtShell_QComboBox::~PythonQtShell_QComboBox() { void PythonQtShell_QComboBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -20164,7 +20164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20183,7 +20183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20202,7 +20202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -20221,7 +20221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -20240,7 +20240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20259,7 +20259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20289,7 +20289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -20308,7 +20308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -20327,7 +20327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -20346,7 +20346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -20365,7 +20365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20384,7 +20384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20414,7 +20414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -20444,7 +20444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20463,7 +20463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -20493,7 +20493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20512,7 +20512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -20542,7 +20542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20572,7 +20572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::hideEvent(QHideEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -20591,7 +20591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::hidePopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20610,7 +20610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -20629,7 +20629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -20648,7 +20648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -20678,7 +20678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -20697,7 +20697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -20716,7 +20716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20735,7 +20735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -20765,7 +20765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20784,7 +20784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20803,7 +20803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20822,7 +20822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20841,7 +20841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -20860,7 +20860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -20890,7 +20890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QComboBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -20920,7 +20920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -20939,7 +20939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QComboBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -20969,7 +20969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -20988,7 +20988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QComboBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -21018,7 +21018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -21037,7 +21037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::showPopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21056,7 +21056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -21075,7 +21075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -21094,7 +21094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -21493,7 +21493,7 @@ PythonQtShell_QCommandLinkButton::~PythonQtShell_QCommandLinkButton() { void PythonQtShell_QCommandLinkButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -21512,7 +21512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21531,7 +21531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21550,7 +21550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -21569,7 +21569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -21588,7 +21588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -21607,7 +21607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21626,7 +21626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -21656,7 +21656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -21675,7 +21675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -21694,7 +21694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -21713,7 +21713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -21732,7 +21732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21751,7 +21751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -21781,7 +21781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -21811,7 +21811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -21830,7 +21830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -21860,7 +21860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -21879,7 +21879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -21909,7 +21909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -21939,7 +21939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -21958,7 +21958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -21988,7 +21988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -22007,7 +22007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -22026,7 +22026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCommandLinkButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -22056,7 +22056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -22075,7 +22075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -22094,7 +22094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22113,7 +22113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -22143,7 +22143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22162,7 +22162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22181,7 +22181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22200,7 +22200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22219,7 +22219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -22238,7 +22238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -22268,7 +22268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22287,7 +22287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCommandLinkButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -22317,7 +22317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -22336,7 +22336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCommandLinkButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -22366,7 +22366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -22385,7 +22385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCommandLinkButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -22415,7 +22415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -22434,7 +22434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -22453,7 +22453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -22472,7 +22472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -22544,7 +22544,7 @@ PythonQtShell_QCommonStyle::~PythonQtShell_QCommonStyle() { void PythonQtShell_QCommonStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -22563,7 +22563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22582,7 +22582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -22601,7 +22601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -22620,7 +22620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -22639,7 +22639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -22658,7 +22658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -22677,7 +22677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommonStyle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22707,7 +22707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommonStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -22737,7 +22737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -22767,7 +22767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, const QPoint& pt2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -22797,7 +22797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -22827,7 +22827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -22857,7 +22857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::pixelMetric(QStyle::PixelMetric m0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -22887,7 +22887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -22906,7 +22906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QPalette& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -22925,7 +22925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -22944,7 +22944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCommonStyle::sizeFromContents(QStyle::ContentsType ct0, const QStyleOption* opt1, const QSize& contentsSize2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -22974,7 +22974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QCommonStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -23004,7 +23004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QCommonStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -23034,7 +23034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QCommonStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -23064,7 +23064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::styleHint(QStyle::StyleHint sh0, const QStyleOption* opt1, const QWidget* w2, QStyleHintReturn* shret3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -23094,7 +23094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -23124,7 +23124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::subElementRect(QStyle::SubElement r0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -23154,7 +23154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -23173,7 +23173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::unpolish(QApplication* application0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -23192,7 +23192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::unpolish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp index 68d0b5cba..c2390159a 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp @@ -84,7 +84,7 @@ PythonQtShell_QCompleter::~PythonQtShell_QCompleter() { void PythonQtShell_QCompleter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCompleter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -122,7 +122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCompleter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -152,7 +152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCompleter::eventFilter(QObject* o0, QEvent* e1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QCompleter::pathFromIndex(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pathFromIndex"); + static PyObject* name = PyUnicode_FromString("pathFromIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QModelIndex&"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QCompleter::splitPath(const QString& path0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("splitPath"); + static PyObject* name = PyUnicode_FromString("splitPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "const QString&"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCompleter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -521,7 +521,7 @@ PythonQtShell_QDataWidgetMapper::~PythonQtShell_QDataWidgetMapper() { void PythonQtShell_QDataWidgetMapper::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -540,7 +540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -559,7 +559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDataWidgetMapper::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -589,7 +589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDataWidgetMapper::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -619,7 +619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::setCurrentIndex(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -638,7 +638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -762,7 +762,7 @@ PythonQtShell_QDateEdit::~PythonQtShell_QDateEdit() { void PythonQtShell_QDateEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -781,7 +781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -800,7 +800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -819,7 +819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -838,7 +838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -857,7 +857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -876,7 +876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QDateEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -925,7 +925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -955,7 +955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -974,7 +974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -993,7 +993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1031,7 +1031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1050,7 +1050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1080,7 +1080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1110,7 +1110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -1129,7 +1129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1148,7 +1148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1178,7 +1178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1197,7 +1197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1227,7 +1227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1257,7 +1257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1276,7 +1276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1295,7 +1295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1314,7 +1314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDateEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1344,7 +1344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1363,7 +1363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1382,7 +1382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1401,7 +1401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1431,7 +1431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1450,7 +1450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1469,7 +1469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1488,7 +1488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1507,7 +1507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1526,7 +1526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1556,7 +1556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDateEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1586,7 +1586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1605,7 +1605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDateEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1635,7 +1635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1654,7 +1654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDateEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1684,7 +1684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1703,7 +1703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1722,7 +1722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDateEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -1752,7 +1752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1771,7 +1771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDateEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -1801,7 +1801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1820,7 +1820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDateEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1883,7 +1883,7 @@ PythonQtShell_QDateTimeEdit::~PythonQtShell_QDateTimeEdit() { void PythonQtShell_QDateTimeEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1902,7 +1902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1921,7 +1921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1940,7 +1940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1959,7 +1959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1978,7 +1978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1997,7 +1997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2016,7 +2016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QDateTimeEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -2046,7 +2046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2076,7 +2076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2095,7 +2095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2114,7 +2114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2133,7 +2133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2152,7 +2152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2171,7 +2171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2201,7 +2201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2231,7 +2231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2250,7 +2250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2299,7 +2299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2318,7 +2318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2348,7 +2348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2378,7 +2378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2397,7 +2397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2416,7 +2416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2435,7 +2435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDateTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2465,7 +2465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2484,7 +2484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2503,7 +2503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2522,7 +2522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2552,7 +2552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2571,7 +2571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2590,7 +2590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2609,7 +2609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2628,7 +2628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2647,7 +2647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2677,7 +2677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDateTimeEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2707,7 +2707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2726,7 +2726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDateTimeEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2756,7 +2756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2775,7 +2775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDateTimeEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2805,7 +2805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2824,7 +2824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2843,7 +2843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDateTimeEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -2873,7 +2873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2892,7 +2892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDateTimeEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2922,7 +2922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2941,7 +2941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDateTimeEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2971,7 +2971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3326,7 +3326,7 @@ PythonQtShell_QDesktopWidget::~PythonQtShell_QDesktopWidget() { void PythonQtShell_QDesktopWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3345,7 +3345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3364,7 +3364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3402,7 +3402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3421,7 +3421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3440,7 +3440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3470,7 +3470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3489,7 +3489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3508,7 +3508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3527,7 +3527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3546,7 +3546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3565,7 +3565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3595,7 +3595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3625,7 +3625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3644,7 +3644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3674,7 +3674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3693,7 +3693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3723,7 +3723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3753,7 +3753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3772,7 +3772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3791,7 +3791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3810,7 +3810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDesktopWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3840,7 +3840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3859,7 +3859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3878,7 +3878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3897,7 +3897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3927,7 +3927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDesktopWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3957,7 +3957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3976,7 +3976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3995,7 +3995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4014,7 +4014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4033,7 +4033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4052,7 +4052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4082,7 +4082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDesktopWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4112,7 +4112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4131,7 +4131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDesktopWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4161,7 +4161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4180,7 +4180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDesktopWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4210,7 +4210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4229,7 +4229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDesktopWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4259,7 +4259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4278,7 +4278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4297,7 +4297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4396,7 +4396,7 @@ PythonQtShell_QDial::~PythonQtShell_QDial() { void PythonQtShell_QDial::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4415,7 +4415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4434,7 +4434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4453,7 +4453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4472,7 +4472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4491,7 +4491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4510,7 +4510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4540,7 +4540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4559,7 +4559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4578,7 +4578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4597,7 +4597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4616,7 +4616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4635,7 +4635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4665,7 +4665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4695,7 +4695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4714,7 +4714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4744,7 +4744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4763,7 +4763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4793,7 +4793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4823,7 +4823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4842,7 +4842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4861,7 +4861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4880,7 +4880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDial::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4910,7 +4910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4929,7 +4929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4948,7 +4948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4967,7 +4967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4997,7 +4997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5016,7 +5016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseMoveEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5035,7 +5035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mousePressEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5054,7 +5054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseReleaseEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5073,7 +5073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5092,7 +5092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5122,7 +5122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDial::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5152,7 +5152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::paintEvent(QPaintEvent* pe0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5171,7 +5171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDial::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5201,7 +5201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::resizeEvent(QResizeEvent* re0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5220,7 +5220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDial::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5250,7 +5250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5269,7 +5269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5288,7 +5288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5307,7 +5307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5411,7 +5411,7 @@ PythonQtShell_QDialog::~PythonQtShell_QDialog() { void PythonQtShell_QDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5430,7 +5430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5449,7 +5449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5468,7 +5468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5487,7 +5487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5506,7 +5506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5525,7 +5525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5544,7 +5544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5574,7 +5574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5593,7 +5593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5612,7 +5612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5631,7 +5631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5650,7 +5650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5669,7 +5669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5688,7 +5688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5718,7 +5718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5748,7 +5748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5778,7 +5778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5797,7 +5797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5827,7 +5827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5846,7 +5846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5876,7 +5876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5906,7 +5906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5925,7 +5925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5944,7 +5944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5963,7 +5963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5993,7 +5993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6012,7 +6012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6031,7 +6031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6050,7 +6050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6080,7 +6080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6099,7 +6099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6118,7 +6118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6137,7 +6137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6156,7 +6156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6175,7 +6175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6205,7 +6205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6224,7 +6224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6254,7 +6254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6273,7 +6273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6303,7 +6303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6322,7 +6322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6341,7 +6341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6371,7 +6371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6390,7 +6390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6409,7 +6409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6428,7 +6428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6557,7 +6557,7 @@ PythonQtShell_QDialogButtonBox::~PythonQtShell_QDialogButtonBox() { void PythonQtShell_QDialogButtonBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6576,7 +6576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6595,7 +6595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6614,7 +6614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6633,7 +6633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6652,7 +6652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6671,7 +6671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6701,7 +6701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6720,7 +6720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6739,7 +6739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6758,7 +6758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6777,7 +6777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6796,7 +6796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6826,7 +6826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6856,7 +6856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6875,7 +6875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6905,7 +6905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6924,7 +6924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6954,7 +6954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6984,7 +6984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7003,7 +7003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7022,7 +7022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7041,7 +7041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDialogButtonBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7071,7 +7071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7090,7 +7090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7109,7 +7109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7128,7 +7128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7158,7 +7158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDialogButtonBox::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7188,7 +7188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7207,7 +7207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7226,7 +7226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7245,7 +7245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7264,7 +7264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7283,7 +7283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7313,7 +7313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDialogButtonBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7343,7 +7343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7362,7 +7362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDialogButtonBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7392,7 +7392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7411,7 +7411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDialogButtonBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7441,7 +7441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7460,7 +7460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDialogButtonBox::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7490,7 +7490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7509,7 +7509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7528,7 +7528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7650,7 +7650,7 @@ PythonQtShell_QDirModel::~PythonQtShell_QDirModel() { QModelIndex PythonQtShell_QDirModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7680,7 +7680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7710,7 +7710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7740,7 +7740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7759,7 +7759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDirModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7789,7 +7789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7808,7 +7808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDirModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -7838,7 +7838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7868,7 +7868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7898,7 +7898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7928,7 +7928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7947,7 +7947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QDirModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -7977,7 +7977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::hasChildren(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8007,7 +8007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDirModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -8037,7 +8037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8067,7 +8067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8097,7 +8097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8127,7 +8127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QDirModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -8157,7 +8157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QDirModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -8187,7 +8187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QDirModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -8217,7 +8217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QDirModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -8247,7 +8247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -8277,7 +8277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -8307,7 +8307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8337,7 +8337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8367,7 +8367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8397,7 +8397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8416,7 +8416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QDirModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -8446,7 +8446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDirModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -8476,7 +8476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -8506,7 +8506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -8536,7 +8536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -8566,7 +8566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8596,7 +8596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -8615,7 +8615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDirModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -8645,7 +8645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8675,7 +8675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QDirModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8705,7 +8705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QDirModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8735,7 +8735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8953,7 +8953,7 @@ PythonQtShell_QDockWidget::~PythonQtShell_QDockWidget() { void PythonQtShell_QDockWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8972,7 +8972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8991,7 +8991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9010,7 +9010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9029,7 +9029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9048,7 +9048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9067,7 +9067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9097,7 +9097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9116,7 +9116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9135,7 +9135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9154,7 +9154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9173,7 +9173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9192,7 +9192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9222,7 +9222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9252,7 +9252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9271,7 +9271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9301,7 +9301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9320,7 +9320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9350,7 +9350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9380,7 +9380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9399,7 +9399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9418,7 +9418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9437,7 +9437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDockWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9467,7 +9467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9486,7 +9486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9505,7 +9505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9524,7 +9524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9554,7 +9554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDockWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9584,7 +9584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9603,7 +9603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9622,7 +9622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9641,7 +9641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9660,7 +9660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9679,7 +9679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9709,7 +9709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDockWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9739,7 +9739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9758,7 +9758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDockWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9788,7 +9788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9807,7 +9807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDockWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9837,7 +9837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9856,7 +9856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDockWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9886,7 +9886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9905,7 +9905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9924,7 +9924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10042,7 +10042,7 @@ PythonQtShell_QDoubleSpinBox::~PythonQtShell_QDoubleSpinBox() { void PythonQtShell_QDoubleSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10061,7 +10061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10080,7 +10080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10099,7 +10099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10118,7 +10118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10137,7 +10137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10156,7 +10156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10175,7 +10175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10205,7 +10205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10224,7 +10224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10243,7 +10243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10262,7 +10262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10281,7 +10281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10300,7 +10300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10330,7 +10330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10360,7 +10360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::fixup(QString& str0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -10379,7 +10379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10398,7 +10398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10428,7 +10428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10447,7 +10447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10477,7 +10477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10507,7 +10507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10526,7 +10526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10545,7 +10545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10564,7 +10564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDoubleSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10594,7 +10594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10613,7 +10613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10632,7 +10632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10651,7 +10651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10681,7 +10681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10700,7 +10700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10719,7 +10719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10738,7 +10738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10757,7 +10757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10776,7 +10776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10806,7 +10806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDoubleSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10836,7 +10836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10855,7 +10855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDoubleSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10885,7 +10885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10904,7 +10904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDoubleSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10934,7 +10934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10953,7 +10953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10972,7 +10972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDoubleSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -11002,7 +11002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11021,7 +11021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDoubleSpinBox::textFromValue(double val0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "double"}; @@ -11051,7 +11051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11070,7 +11070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDoubleSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11100,7 +11100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { double PythonQtShell_QDoubleSpinBox::valueFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"double" , "const QString&"}; @@ -11130,7 +11130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11254,7 +11254,7 @@ PythonQtShell_QDoubleValidator::~PythonQtShell_QDoubleValidator() { void PythonQtShell_QDoubleValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11273,7 +11273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11292,7 +11292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11322,7 +11322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11352,7 +11352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11371,7 +11371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::setRange(double bottom0, double top1, int decimals2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "double" , "double" , "int"}; @@ -11390,7 +11390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11409,7 +11409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDoubleValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11503,7 +11503,7 @@ PythonQtShell_QDrag::~PythonQtShell_QDrag() { void PythonQtShell_QDrag::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11522,7 +11522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDrag::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11541,7 +11541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDrag::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11571,7 +11571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDrag::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11601,7 +11601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDrag::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11857,7 +11857,7 @@ PythonQtShell_QErrorMessage::~PythonQtShell_QErrorMessage() { void PythonQtShell_QErrorMessage::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11876,7 +11876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11895,7 +11895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11914,7 +11914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11933,7 +11933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11952,7 +11952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11971,7 +11971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11990,7 +11990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12020,7 +12020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12039,7 +12039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12058,7 +12058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12077,7 +12077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12096,7 +12096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12115,7 +12115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12134,7 +12134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12164,7 +12164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12194,7 +12194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12224,7 +12224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12243,7 +12243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12273,7 +12273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12292,7 +12292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12322,7 +12322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12352,7 +12352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12371,7 +12371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12390,7 +12390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12409,7 +12409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QErrorMessage::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12439,7 +12439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12458,7 +12458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12477,7 +12477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12496,7 +12496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12526,7 +12526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12545,7 +12545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12564,7 +12564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12583,7 +12583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12602,7 +12602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12621,7 +12621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12651,7 +12651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12670,7 +12670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QErrorMessage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12700,7 +12700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12719,7 +12719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QErrorMessage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12749,7 +12749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12768,7 +12768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12787,7 +12787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QErrorMessage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12817,7 +12817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12836,7 +12836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12855,7 +12855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12874,7 +12874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12933,7 +12933,7 @@ PythonQtShell_QFileDialog::~PythonQtShell_QFileDialog() { void PythonQtShell_QFileDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12952,7 +12952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12971,7 +12971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12990,7 +12990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13009,7 +13009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13028,7 +13028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13047,7 +13047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13066,7 +13066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13096,7 +13096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13115,7 +13115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13134,7 +13134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13153,7 +13153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13172,7 +13172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13191,7 +13191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13210,7 +13210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13240,7 +13240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13270,7 +13270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13300,7 +13300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13319,7 +13319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13349,7 +13349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13368,7 +13368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13398,7 +13398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13428,7 +13428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13447,7 +13447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13466,7 +13466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13485,7 +13485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13515,7 +13515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13534,7 +13534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13553,7 +13553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13572,7 +13572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13602,7 +13602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13621,7 +13621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13640,7 +13640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13659,7 +13659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13678,7 +13678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13697,7 +13697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13727,7 +13727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13746,7 +13746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFileDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13776,7 +13776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13795,7 +13795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFileDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13825,7 +13825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13844,7 +13844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13863,7 +13863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFileDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13893,7 +13893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13912,7 +13912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13931,7 +13931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13950,7 +13950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14263,7 +14263,7 @@ PythonQtShell_QFileIconProvider::~PythonQtShell_QFileIconProvider() { QIcon PythonQtShell_QFileIconProvider::icon(QFileIconProvider::IconType type0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QFileIconProvider::IconType"}; @@ -14293,7 +14293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QFileIconProvider::icon(const QFileInfo& info0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "const QFileInfo&"}; @@ -14323,7 +14323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFileIconProvider::type(const QFileInfo& info0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QFileInfo&"}; @@ -14403,7 +14403,7 @@ PythonQtShell_QFileSystemModel::~PythonQtShell_QFileSystemModel() { QModelIndex PythonQtShell_QFileSystemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -14433,7 +14433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14463,7 +14463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14493,7 +14493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14512,7 +14512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileSystemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -14542,7 +14542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14561,7 +14561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileSystemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -14591,7 +14591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14621,7 +14621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14651,7 +14651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14681,7 +14681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14700,7 +14700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QFileSystemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -14730,7 +14730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14760,7 +14760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileSystemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -14790,7 +14790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14820,7 +14820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14850,7 +14850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14880,7 +14880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QFileSystemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -14910,7 +14910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QFileSystemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -14940,7 +14940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QFileSystemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -14970,7 +14970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QFileSystemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -15000,7 +15000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15030,7 +15030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15060,7 +15060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -15090,7 +15090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15120,7 +15120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15150,7 +15150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15169,7 +15169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QFileSystemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -15199,7 +15199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileSystemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -15229,7 +15229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -15259,7 +15259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -15289,7 +15289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -15319,7 +15319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15349,7 +15349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -15368,7 +15368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFileSystemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -15398,7 +15398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15428,7 +15428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QFileSystemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15458,7 +15458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QFileSystemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15488,7 +15488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15768,7 +15768,7 @@ PythonQtShell_QFocusFrame::~PythonQtShell_QFocusFrame() { void PythonQtShell_QFocusFrame::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15787,7 +15787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15806,7 +15806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15825,7 +15825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15844,7 +15844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15863,7 +15863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15882,7 +15882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15912,7 +15912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -15931,7 +15931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -15950,7 +15950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -15969,7 +15969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -15988,7 +15988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16007,7 +16007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16037,7 +16037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16067,7 +16067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16086,7 +16086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16116,7 +16116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16135,7 +16135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16165,7 +16165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16195,7 +16195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16214,7 +16214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16233,7 +16233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16252,7 +16252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFocusFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16282,7 +16282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16301,7 +16301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16320,7 +16320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16339,7 +16339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16369,7 +16369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFocusFrame::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16399,7 +16399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16418,7 +16418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16437,7 +16437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16456,7 +16456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16475,7 +16475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16494,7 +16494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16524,7 +16524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFocusFrame::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16554,7 +16554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16573,7 +16573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFocusFrame::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16603,7 +16603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16622,7 +16622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFocusFrame::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16652,7 +16652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16671,7 +16671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFocusFrame::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16701,7 +16701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16720,7 +16720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16739,7 +16739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16798,7 +16798,7 @@ PythonQtShell_QFontComboBox::~PythonQtShell_QFontComboBox() { void PythonQtShell_QFontComboBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16817,7 +16817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16836,7 +16836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16855,7 +16855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16874,7 +16874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16893,7 +16893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16912,7 +16912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16942,7 +16942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16961,7 +16961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16980,7 +16980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16999,7 +16999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17018,7 +17018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17037,7 +17037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17067,7 +17067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17097,7 +17097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17116,7 +17116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17146,7 +17146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17165,7 +17165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17195,7 +17195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17225,7 +17225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::hideEvent(QHideEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17244,7 +17244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::hidePopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17263,7 +17263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17282,7 +17282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17301,7 +17301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFontComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17331,7 +17331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17350,7 +17350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17369,7 +17369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17388,7 +17388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17418,7 +17418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17437,7 +17437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17456,7 +17456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17475,7 +17475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17494,7 +17494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17513,7 +17513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17543,7 +17543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFontComboBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17573,7 +17573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17592,7 +17592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFontComboBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17622,7 +17622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17641,7 +17641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFontComboBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17671,7 +17671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17690,7 +17690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::showPopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17709,7 +17709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17728,7 +17728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17747,7 +17747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp index b12c043c2..418000a12 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp @@ -85,7 +85,7 @@ PythonQtShell_QTextBrowser::~PythonQtShell_QTextBrowser() { void PythonQtShell_QTextBrowser::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -104,7 +104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::backward() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("backward"); + static PyObject* name = PyUnicode_FromString("backward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -123,7 +123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -153,7 +153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -172,7 +172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -191,7 +191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -210,7 +210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -229,7 +229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTextBrowser::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -259,7 +259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -278,7 +278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -308,7 +308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -327,7 +327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -346,7 +346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -365,7 +365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -384,7 +384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -403,7 +403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -422,7 +422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -452,7 +452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -482,7 +482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -501,7 +501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -531,7 +531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::focusOutEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::forward() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("forward"); + static PyObject* name = PyUnicode_FromString("forward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -569,7 +569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -599,7 +599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -629,7 +629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -648,7 +648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::home() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("home"); + static PyObject* name = PyUnicode_FromString("home"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -667,7 +667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -686,7 +686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -705,7 +705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextBrowser::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -754,7 +754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -792,7 +792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -811,7 +811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextBrowser::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -841,7 +841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -871,7 +871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -909,7 +909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -928,7 +928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -947,7 +947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -966,7 +966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -996,7 +996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTextBrowser::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1026,7 +1026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1045,7 +1045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTextBrowser::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1075,7 +1075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::reload() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reload"); + static PyObject* name = PyUnicode_FromString("reload"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1094,7 +1094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1113,7 +1113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1132,7 +1132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::setSource(const QUrl& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSource"); + static PyObject* name = PyUnicode_FromString("setSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&"}; @@ -1151,7 +1151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1170,7 +1170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTextBrowser::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1200,7 +1200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1219,7 +1219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1238,7 +1238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1257,7 +1257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1287,7 +1287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTextBrowser::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1317,7 +1317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2167,7 +2167,7 @@ PythonQtShell_QTextDocument::~PythonQtShell_QTextDocument() { void PythonQtShell_QTextDocument::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2186,7 +2186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2205,7 +2205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QTextObject* PythonQtShell_QTextDocument::createObject(const QTextFormat& f0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTextObject*" , "const QTextFormat&"}; @@ -2235,7 +2235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2254,7 +2254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextDocument::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2284,7 +2284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextDocument::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2314,7 +2314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextDocument::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -2344,7 +2344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2859,7 +2859,7 @@ PythonQtShell_QTextEdit::~PythonQtShell_QTextEdit() { void PythonQtShell_QTextEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2878,7 +2878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -2908,7 +2908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2927,7 +2927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2946,7 +2946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTextEdit::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -3014,7 +3014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3063,7 +3063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -3082,7 +3082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3101,7 +3101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3120,7 +3120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3139,7 +3139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3177,7 +3177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3237,7 +3237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3286,7 +3286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3305,7 +3305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3335,7 +3335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3365,7 +3365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3384,7 +3384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3403,7 +3403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3422,7 +3422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextEdit::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3452,7 +3452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -3471,7 +3471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3490,7 +3490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3509,7 +3509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3528,7 +3528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextEdit::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -3558,7 +3558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3588,7 +3588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3607,7 +3607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3626,7 +3626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3645,7 +3645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3664,7 +3664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3683,7 +3683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3713,7 +3713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTextEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3743,7 +3743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3762,7 +3762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTextEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3792,7 +3792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3811,7 +3811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3830,7 +3830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3849,7 +3849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTextEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3879,7 +3879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3898,7 +3898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3917,7 +3917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3936,7 +3936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3966,7 +3966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTextEdit::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3996,7 +3996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4534,7 +4534,7 @@ PythonQtShell_QTextFrame::~PythonQtShell_QTextFrame() { void PythonQtShell_QTextFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4553,7 +4553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4572,7 +4572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextFrame::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4602,7 +4602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4632,7 +4632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5389,7 +5389,7 @@ PythonQtShell_QTextList::~PythonQtShell_QTextList() { void PythonQtShell_QTextList::blockFormatChanged(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -5408,7 +5408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::blockInserted(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -5427,7 +5427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::blockRemoved(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -5446,7 +5446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5465,7 +5465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5484,7 +5484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextList::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5514,7 +5514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextList::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5544,7 +5544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5677,7 +5677,7 @@ PythonQtShell_QTextObject::~PythonQtShell_QTextObject() { void PythonQtShell_QTextObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5696,7 +5696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5715,7 +5715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5745,7 +5745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5775,7 +5775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5947,7 +5947,7 @@ PythonQtShell_QTextTable::~PythonQtShell_QTextTable() { void PythonQtShell_QTextTable::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5966,7 +5966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextTable::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5985,7 +5985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextTable::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6015,7 +6015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextTable::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6045,7 +6045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextTable::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6421,7 +6421,7 @@ PythonQtShell_QTimeEdit::~PythonQtShell_QTimeEdit() { void PythonQtShell_QTimeEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6440,7 +6440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6459,7 +6459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6478,7 +6478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6497,7 +6497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6516,7 +6516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6535,7 +6535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6554,7 +6554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QTimeEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -6584,7 +6584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6614,7 +6614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6633,7 +6633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6652,7 +6652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6671,7 +6671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6690,7 +6690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6709,7 +6709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6739,7 +6739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6769,7 +6769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -6788,7 +6788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6807,7 +6807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6837,7 +6837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6856,7 +6856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6886,7 +6886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6916,7 +6916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6935,7 +6935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6954,7 +6954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6973,7 +6973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7003,7 +7003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7022,7 +7022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7041,7 +7041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7060,7 +7060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7090,7 +7090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7109,7 +7109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7128,7 +7128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7147,7 +7147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7166,7 +7166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7185,7 +7185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7215,7 +7215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTimeEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7245,7 +7245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7264,7 +7264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTimeEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7294,7 +7294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7313,7 +7313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTimeEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7343,7 +7343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7362,7 +7362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7381,7 +7381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QTimeEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -7411,7 +7411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7430,7 +7430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTimeEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -7460,7 +7460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7479,7 +7479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QTimeEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -7509,7 +7509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7542,7 +7542,7 @@ PythonQtShell_QToolBar::~PythonQtShell_QToolBar() { void PythonQtShell_QToolBar::actionEvent(QActionEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7561,7 +7561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7580,7 +7580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7599,7 +7599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7618,7 +7618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7637,7 +7637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7656,7 +7656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7686,7 +7686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7705,7 +7705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7724,7 +7724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7743,7 +7743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7762,7 +7762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7781,7 +7781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7811,7 +7811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7841,7 +7841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7860,7 +7860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7890,7 +7890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7909,7 +7909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7939,7 +7939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7969,7 +7969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7988,7 +7988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8007,7 +8007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8026,7 +8026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8056,7 +8056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8075,7 +8075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8094,7 +8094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8113,7 +8113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8143,7 +8143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8173,7 +8173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8192,7 +8192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8211,7 +8211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8230,7 +8230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8249,7 +8249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8268,7 +8268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8298,7 +8298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8328,7 +8328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8347,7 +8347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8377,7 +8377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8396,7 +8396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8426,7 +8426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8445,7 +8445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBar::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8475,7 +8475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8494,7 +8494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8513,7 +8513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp index 262d79061..2641c3188 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp @@ -84,7 +84,7 @@ PythonQtShell_QToolBox::~PythonQtShell_QToolBox() { void PythonQtShell_QToolBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -122,7 +122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -141,7 +141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -160,7 +160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -179,7 +179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -198,7 +198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -228,7 +228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -247,7 +247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -266,7 +266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -285,7 +285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -304,7 +304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -323,7 +323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -353,7 +353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -383,7 +383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -402,7 +402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -432,7 +432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -451,7 +451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -511,7 +511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -530,7 +530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -549,7 +549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -568,7 +568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::itemInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemInserted"); + static PyObject* name = PyUnicode_FromString("itemInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::itemRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemRemoved"); + static PyObject* name = PyUnicode_FromString("itemRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -655,7 +655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -674,7 +674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -693,7 +693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -723,7 +723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBox::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -753,7 +753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -772,7 +772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -791,7 +791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -810,7 +810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -829,7 +829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -848,7 +848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -878,7 +878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -908,7 +908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -927,7 +927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -957,7 +957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -976,7 +976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1006,7 +1006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1025,7 +1025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1044,7 +1044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1063,7 +1063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1207,7 +1207,7 @@ PythonQtShell_QToolButton::~PythonQtShell_QToolButton() { void PythonQtShell_QToolButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1226,7 +1226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1245,7 +1245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1264,7 +1264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1283,7 +1283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1302,7 +1302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1321,7 +1321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1340,7 +1340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1370,7 +1370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1389,7 +1389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1408,7 +1408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1427,7 +1427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1446,7 +1446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1465,7 +1465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1495,7 +1495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1525,7 +1525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1544,7 +1544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1574,7 +1574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1593,7 +1593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1623,7 +1623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1653,7 +1653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1672,7 +1672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -1702,7 +1702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1721,7 +1721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1789,7 +1789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1808,7 +1808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1827,7 +1827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1857,7 +1857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1876,7 +1876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1895,7 +1895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1914,7 +1914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1933,7 +1933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1952,7 +1952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1982,7 +1982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2001,7 +2001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2031,7 +2031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2050,7 +2050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2080,7 +2080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2099,7 +2099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2129,7 +2129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2148,7 +2148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2167,7 +2167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2186,7 +2186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3043,7 +3043,7 @@ PythonQtShell_QTreeView::~PythonQtShell_QTreeView() { void PythonQtShell_QTreeView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3062,7 +3062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3081,7 +3081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3100,7 +3100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -3119,7 +3119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3138,7 +3138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3157,7 +3157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3176,7 +3176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3195,7 +3195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3214,7 +3214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -3233,7 +3233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3263,7 +3263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3282,7 +3282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3301,7 +3301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3320,7 +3320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3339,7 +3339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::drawBranches(QPainter* painter0, const QRect& rect1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -3358,7 +3358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::drawRow(QPainter* painter0, const QStyleOptionViewItem& options1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3377,7 +3377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3396,7 +3396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -3426,7 +3426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3445,7 +3445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3464,7 +3464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3494,7 +3494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3524,7 +3524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3543,7 +3543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3573,7 +3573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3592,7 +3592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3622,7 +3622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3652,7 +3652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3671,7 +3671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3701,7 +3701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3720,7 +3720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3739,7 +3739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTreeView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3769,7 +3769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3788,7 +3788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3807,7 +3807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3837,7 +3837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3867,7 +3867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3886,7 +3886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3924,7 +3924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3943,7 +3943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3973,7 +3973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3992,7 +3992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4011,7 +4011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4030,7 +4030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4049,7 +4049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4068,7 +4068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4098,7 +4098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTreeView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4128,7 +4128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4147,7 +4147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTreeView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4177,7 +4177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4196,7 +4196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4215,7 +4215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4234,7 +4234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4253,7 +4253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4272,7 +4272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -4291,7 +4291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4310,7 +4310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTreeView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4340,7 +4340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -4359,7 +4359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTreeView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -4389,7 +4389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -4408,7 +4408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4427,7 +4427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4446,7 +4446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4465,7 +4465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4484,7 +4484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTreeView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4514,7 +4514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4533,7 +4533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4563,7 +4563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4593,7 +4593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4612,7 +4612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4631,7 +4631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4650,7 +4650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4669,7 +4669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4688,7 +4688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4707,7 +4707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4737,7 +4737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4756,7 +4756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4775,7 +4775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTreeView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4805,7 +4805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4835,7 +4835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTreeView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4865,7 +4865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTreeView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -4895,7 +4895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTreeView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -4925,7 +4925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5349,7 +5349,7 @@ PythonQtShell_QTreeWidget::~PythonQtShell_QTreeWidget() { void PythonQtShell_QTreeWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5368,7 +5368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5387,7 +5387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5406,7 +5406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -5425,7 +5425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5463,7 +5463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5482,7 +5482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -5501,7 +5501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5520,7 +5520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -5539,7 +5539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5569,7 +5569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5588,7 +5588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5607,7 +5607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5626,7 +5626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5645,7 +5645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::drawBranches(QPainter* painter0, const QRect& rect1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -5664,7 +5664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::drawRow(QPainter* painter0, const QStyleOptionViewItem& options1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -5683,7 +5683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5702,7 +5702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::dropMimeData(QTreeWidgetItem* parent0, int index1, const QMimeData* data2, Qt::DropAction action3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QTreeWidgetItem*" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -5732,7 +5732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -5762,7 +5762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5781,7 +5781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5800,7 +5800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5830,7 +5830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5860,7 +5860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5879,7 +5879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5909,7 +5909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5928,7 +5928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5958,7 +5958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5988,7 +5988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6007,7 +6007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6037,7 +6037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6056,7 +6056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6075,7 +6075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTreeWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -6105,7 +6105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6124,7 +6124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6143,7 +6143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6173,7 +6173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6203,7 +6203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6222,7 +6222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6241,7 +6241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6260,7 +6260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6279,7 +6279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6309,7 +6309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTreeWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -6339,7 +6339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QTreeWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6369,7 +6369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6388,7 +6388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6407,7 +6407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6426,7 +6426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6445,7 +6445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6464,7 +6464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6494,7 +6494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTreeWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6524,7 +6524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6543,7 +6543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTreeWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6573,7 +6573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6592,7 +6592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6611,7 +6611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -6630,7 +6630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -6649,7 +6649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -6668,7 +6668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -6687,7 +6687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6706,7 +6706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTreeWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -6736,7 +6736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -6755,7 +6755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTreeWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -6785,7 +6785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6804,7 +6804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -6823,7 +6823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -6842,7 +6842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6861,7 +6861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTreeWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6891,7 +6891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6910,7 +6910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6940,7 +6940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6970,7 +6970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -6989,7 +6989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QTreeWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7019,7 +7019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7038,7 +7038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7057,7 +7057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7076,7 +7076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7095,7 +7095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7114,7 +7114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7144,7 +7144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7163,7 +7163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7182,7 +7182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTreeWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -7212,7 +7212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7242,7 +7242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTreeWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7272,7 +7272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTreeWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -7302,7 +7302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTreeWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -7332,7 +7332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7586,7 +7586,7 @@ PythonQtShell_QTreeWidgetItem::~PythonQtShell_QTreeWidgetItem() { QTreeWidgetItem* PythonQtShell_QTreeWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTreeWidgetItem*"}; @@ -7616,7 +7616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeWidgetItem::data(int column0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "int"}; @@ -7646,7 +7646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidgetItem::__lt__(const QTreeWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QTreeWidgetItem&"}; @@ -7676,7 +7676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -7695,7 +7695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::setData(int column0, int role1, const QVariant& value2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "const QVariant&"}; @@ -7714,7 +7714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -8056,7 +8056,7 @@ PythonQtShell_QUndoCommand::~PythonQtShell_QUndoCommand() { int PythonQtShell_QUndoCommand::id() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("id"); + static PyObject* name = PyUnicode_FromString("id"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8086,7 +8086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoCommand::mergeWith(const QUndoCommand* other0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mergeWith"); + static PyObject* name = PyUnicode_FromString("mergeWith"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUndoCommand*"}; @@ -8116,7 +8116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoCommand::redo() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redo"); + static PyObject* name = PyUnicode_FromString("redo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8135,7 +8135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoCommand::undo() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("undo"); + static PyObject* name = PyUnicode_FromString("undo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8213,7 +8213,7 @@ PythonQtShell_QUndoGroup::~PythonQtShell_QUndoGroup() { void PythonQtShell_QUndoGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8232,7 +8232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8251,7 +8251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8281,7 +8281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8311,7 +8311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8395,7 +8395,7 @@ PythonQtShell_QUndoStack::~PythonQtShell_QUndoStack() { void PythonQtShell_QUndoStack::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8414,7 +8414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoStack::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8433,7 +8433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoStack::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8463,7 +8463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoStack::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8493,7 +8493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoStack::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8617,7 +8617,7 @@ PythonQtShell_QUndoView::~PythonQtShell_QUndoView() { void PythonQtShell_QUndoView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8636,7 +8636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8655,7 +8655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8674,7 +8674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -8693,7 +8693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8712,7 +8712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8731,7 +8731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8750,7 +8750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -8769,7 +8769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8788,7 +8788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -8807,7 +8807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8837,7 +8837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8856,7 +8856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8875,7 +8875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8894,7 +8894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8913,7 +8913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8932,7 +8932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -8962,7 +8962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -8981,7 +8981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9000,7 +9000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9030,7 +9030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9060,7 +9060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9079,7 +9079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9109,7 +9109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9128,7 +9128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9158,7 +9158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9188,7 +9188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9207,7 +9207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9237,7 +9237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9256,7 +9256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9275,7 +9275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QUndoView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -9305,7 +9305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9324,7 +9324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9343,7 +9343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QUndoView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9373,7 +9373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -9403,7 +9403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9422,7 +9422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9441,7 +9441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -9460,7 +9460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9479,7 +9479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9509,7 +9509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9528,7 +9528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9547,7 +9547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9566,7 +9566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9585,7 +9585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9604,7 +9604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9634,7 +9634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QUndoView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9664,7 +9664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9683,7 +9683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QUndoView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9713,7 +9713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9732,7 +9732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9751,7 +9751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9770,7 +9770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9789,7 +9789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9808,7 +9808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -9827,7 +9827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9846,7 +9846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QUndoView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -9876,7 +9876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -9895,7 +9895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QUndoView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -9925,7 +9925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -9944,7 +9944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9963,7 +9963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -9982,7 +9982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -10001,7 +10001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10020,7 +10020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QUndoView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10050,7 +10050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10069,7 +10069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10099,7 +10099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10129,7 +10129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -10148,7 +10148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10167,7 +10167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10186,7 +10186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10205,7 +10205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10224,7 +10224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10243,7 +10243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10273,7 +10273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10292,7 +10292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10311,7 +10311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QUndoView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -10341,7 +10341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10371,7 +10371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QUndoView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10401,7 +10401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QUndoView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -10431,7 +10431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QUndoView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -10461,7 +10461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10528,7 +10528,7 @@ PythonQtShell_QVBoxLayout::~PythonQtShell_QVBoxLayout() { void PythonQtShell_QVBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -10547,7 +10547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10566,7 +10566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QVBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10596,7 +10596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10626,7 +10626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10645,7 +10645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10675,7 +10675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10705,7 +10705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QVBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10735,7 +10735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QVBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10765,7 +10765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -10795,7 +10795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10814,7 +10814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10844,7 +10844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QVBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10874,7 +10874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QVBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10904,7 +10904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10934,7 +10934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10964,7 +10964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10983,7 +10983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QVBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -11013,7 +11013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11046,7 +11046,7 @@ PythonQtShell_QValidator::~PythonQtShell_QValidator() { void PythonQtShell_QValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11065,7 +11065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11084,7 +11084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11114,7 +11114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11144,7 +11144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11163,7 +11163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11182,7 +11182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11964,7 +11964,7 @@ PythonQtShell_QWidget::~PythonQtShell_QWidget() { void PythonQtShell_QWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11983,7 +11983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12002,7 +12002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12021,7 +12021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12040,7 +12040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12059,7 +12059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12078,7 +12078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12108,7 +12108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12127,7 +12127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12146,7 +12146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12165,7 +12165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12184,7 +12184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12203,7 +12203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12233,7 +12233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12263,7 +12263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12282,7 +12282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12312,7 +12312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12331,7 +12331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12361,7 +12361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12391,7 +12391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12410,7 +12410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12429,7 +12429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12448,7 +12448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12478,7 +12478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12497,7 +12497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12516,7 +12516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12535,7 +12535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12565,7 +12565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12595,7 +12595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12614,7 +12614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12633,7 +12633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12652,7 +12652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12671,7 +12671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12690,7 +12690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12720,7 +12720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12750,7 +12750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12769,7 +12769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12799,7 +12799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12818,7 +12818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::setVisible(bool visible0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12837,7 +12837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12867,7 +12867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12886,7 +12886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12916,7 +12916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12935,7 +12935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12954,7 +12954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14228,7 +14228,7 @@ PythonQtShell_QWidgetAction::~PythonQtShell_QWidgetAction() { void PythonQtShell_QWidgetAction::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14247,7 +14247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QWidgetAction::createWidget(QWidget* parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -14277,7 +14277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14296,7 +14296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::deleteWidget(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteWidget"); + static PyObject* name = PyUnicode_FromString("deleteWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14315,7 +14315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetAction::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14345,7 +14345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetAction::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14375,7 +14375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14449,7 +14449,7 @@ PythonQtShell_QWidgetItem::~PythonQtShell_QWidgetItem() { QSizePolicy::ControlTypes PythonQtShell_QWidgetItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -14479,7 +14479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QWidgetItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -14509,7 +14509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QWidgetItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -14539,7 +14539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14569,7 +14569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidgetItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14599,7 +14599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14618,7 +14618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14648,7 +14648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QWidgetItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -14678,7 +14678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14708,7 +14708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidgetItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14738,7 +14738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14768,7 +14768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -14787,7 +14787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14817,7 +14817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QWidgetItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -14847,7 +14847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QWidgetItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -14942,7 +14942,7 @@ PythonQtShell_QWindow::~PythonQtShell_QWindow() { void PythonQtShell_QWindow::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14961,7 +14961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14980,7 +14980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15010,7 +15010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15040,7 +15040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::exposeEvent(QExposeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -15059,7 +15059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15078,7 +15078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWindow::focusObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -15108,7 +15108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15127,7 +15127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurfaceFormat PythonQtShell_QWindow::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -15157,7 +15157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15176,7 +15176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15195,7 +15195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15214,7 +15214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15233,7 +15233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15252,7 +15252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15271,7 +15271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15290,7 +15290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15309,7 +15309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15339,7 +15339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15358,7 +15358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15377,7 +15377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWindow::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15407,7 +15407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QWindow::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -15437,7 +15437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15456,7 +15456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15475,7 +15475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::touchEvent(QTouchEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -15494,7 +15494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16003,7 +16003,7 @@ PythonQtShell_QWizard::~PythonQtShell_QWizard() { void PythonQtShell_QWizard::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16022,7 +16022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16041,7 +16041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16060,7 +16060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16079,7 +16079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::cleanupPage(int id0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16098,7 +16098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16117,7 +16117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16136,7 +16136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16155,7 +16155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16185,7 +16185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16204,7 +16204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16223,7 +16223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16242,7 +16242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16261,7 +16261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16280,7 +16280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16299,7 +16299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16329,7 +16329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16359,7 +16359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16389,7 +16389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16408,7 +16408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16438,7 +16438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16457,7 +16457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16487,7 +16487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16517,7 +16517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16536,7 +16536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16555,7 +16555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::initializePage(int id0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16574,7 +16574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16593,7 +16593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWizard::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16623,7 +16623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16642,7 +16642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16661,7 +16661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16680,7 +16680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16710,7 +16710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16729,7 +16729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16748,7 +16748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16767,7 +16767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16786,7 +16786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16805,7 +16805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16835,7 +16835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::nextId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16865,7 +16865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16884,7 +16884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWizard::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16914,7 +16914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16933,7 +16933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWizard::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16963,7 +16963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16982,7 +16982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17001,7 +17001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWizard::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17031,7 +17031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17050,7 +17050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17069,7 +17069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17088,7 +17088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::validateCurrentPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validateCurrentPage"); + static PyObject* name = PyUnicode_FromString("validateCurrentPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17118,7 +17118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17357,7 +17357,7 @@ PythonQtShell_QWizardPage::~PythonQtShell_QWizardPage() { void PythonQtShell_QWizardPage::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17376,7 +17376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17395,7 +17395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17414,7 +17414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::cleanupPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17433,7 +17433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17452,7 +17452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17471,7 +17471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17490,7 +17490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17520,7 +17520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17539,7 +17539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17558,7 +17558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17577,7 +17577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17596,7 +17596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17615,7 +17615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17645,7 +17645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17675,7 +17675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17694,7 +17694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17724,7 +17724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17743,7 +17743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17773,7 +17773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17803,7 +17803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17822,7 +17822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17841,7 +17841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::initializePage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17860,7 +17860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17879,7 +17879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWizardPage::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17909,7 +17909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::isComplete() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isComplete"); + static PyObject* name = PyUnicode_FromString("isComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17939,7 +17939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17958,7 +17958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17977,7 +17977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17996,7 +17996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18026,7 +18026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWizardPage::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18056,7 +18056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18075,7 +18075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18094,7 +18094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18113,7 +18113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18132,7 +18132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18151,7 +18151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18181,7 +18181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::nextId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18211,7 +18211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWizardPage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18241,7 +18241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18260,7 +18260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWizardPage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18290,7 +18290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18309,7 +18309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWizardPage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18339,7 +18339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18358,7 +18358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWizardPage::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18388,7 +18388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18407,7 +18407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18426,7 +18426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::validatePage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validatePage"); + static PyObject* name = PyUnicode_FromString("validatePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18456,7 +18456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp index 9909e6b16..70e4143b7 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp @@ -213,7 +213,7 @@ PythonQtShell_QFontDialog::~PythonQtShell_QFontDialog() { void PythonQtShell_QFontDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -232,7 +232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -251,7 +251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -270,7 +270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -289,7 +289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -308,7 +308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -327,7 +327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -346,7 +346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -376,7 +376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -395,7 +395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -414,7 +414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -433,7 +433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -452,7 +452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -471,7 +471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -490,7 +490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -520,7 +520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -580,7 +580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -599,7 +599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -629,7 +629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -648,7 +648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -678,7 +678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -708,7 +708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -727,7 +727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -746,7 +746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -765,7 +765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFontDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -795,7 +795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -814,7 +814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -852,7 +852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -882,7 +882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -901,7 +901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -958,7 +958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -977,7 +977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1007,7 +1007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1026,7 +1026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFontDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1056,7 +1056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1075,7 +1075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFontDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1105,7 +1105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1124,7 +1124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1143,7 +1143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFontDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1173,7 +1173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1192,7 +1192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1211,7 +1211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1230,7 +1230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1738,7 +1738,7 @@ PythonQtShell_QFormLayout::~PythonQtShell_QFormLayout() { void PythonQtShell_QFormLayout::addItem(QLayoutItem* item0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -1757,7 +1757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1776,7 +1776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QFormLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -1806,7 +1806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFormLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1836,7 +1836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1855,7 +1855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1885,7 +1885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1915,7 +1915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QFormLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -1945,7 +1945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QFormLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -1975,7 +1975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFormLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -2005,7 +2005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2024,7 +2024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2054,7 +2054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QFormLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2084,7 +2084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QFormLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -2114,7 +2114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFormLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2144,7 +2144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFormLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2174,7 +2174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::setGeometry(const QRect& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2193,7 +2193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QFormLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2223,7 +2223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2487,7 +2487,7 @@ PythonQtShell_QFrame::~PythonQtShell_QFrame() { void PythonQtShell_QFrame::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2506,7 +2506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2525,7 +2525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2544,7 +2544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2563,7 +2563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2582,7 +2582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2601,7 +2601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2631,7 +2631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2650,7 +2650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2669,7 +2669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2688,7 +2688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2707,7 +2707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2726,7 +2726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2756,7 +2756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2786,7 +2786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2805,7 +2805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2835,7 +2835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2854,7 +2854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2884,7 +2884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2914,7 +2914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2933,7 +2933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2952,7 +2952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2971,7 +2971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3001,7 +3001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3020,7 +3020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3039,7 +3039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3058,7 +3058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3088,7 +3088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFrame::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3118,7 +3118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3137,7 +3137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3156,7 +3156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3175,7 +3175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3194,7 +3194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3213,7 +3213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3243,7 +3243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFrame::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3273,7 +3273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3292,7 +3292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFrame::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3322,7 +3322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3341,7 +3341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFrame::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3371,7 +3371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3390,7 +3390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3409,7 +3409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3428,7 +3428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3547,7 +3547,7 @@ PythonQtShell_QGesture::~PythonQtShell_QGesture() { void PythonQtShell_QGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3585,7 +3585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3615,7 +3615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3645,7 +3645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3815,7 +3815,7 @@ PythonQtShell_QGestureRecognizer::~PythonQtShell_QGestureRecognizer() { QGesture* PythonQtShell_QGestureRecognizer::create(QObject* target0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGesture*" , "QObject*"}; @@ -3845,7 +3845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGestureRecognizer::Result PythonQtShell_QGestureRecognizer::recognize(QGesture* state0, QObject* watched1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("recognize"); + static PyObject* name = PyUnicode_FromString("recognize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGestureRecognizer::Result" , "QGesture*" , "QObject*" , "QEvent*"}; @@ -3875,7 +3875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGestureRecognizer::reset(QGesture* state0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGesture*"}; @@ -4152,7 +4152,7 @@ PythonQtShell_QGraphicsAnchorLayout::~PythonQtShell_QGraphicsAnchorLayout() { int PythonQtShell_QGraphicsAnchorLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4182,7 +4182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -4201,7 +4201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4220,7 +4220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsAnchorLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -4250,7 +4250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4269,7 +4269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4288,7 +4288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4392,7 +4392,7 @@ PythonQtShell_QGraphicsBlurEffect::~PythonQtShell_QGraphicsBlurEffect() { QRectF PythonQtShell_QGraphicsBlurEffect::boundingRectFor(const QRectF& rect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4422,7 +4422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4441,7 +4441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4460,7 +4460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4479,7 +4479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsBlurEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4509,7 +4509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsBlurEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4539,7 +4539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4558,7 +4558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4607,7 +4607,7 @@ PythonQtShell_QGraphicsColorizeEffect::~PythonQtShell_QGraphicsColorizeEffect() QRectF PythonQtShell_QGraphicsColorizeEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4637,7 +4637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4656,7 +4656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4675,7 +4675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4694,7 +4694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsColorizeEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4724,7 +4724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsColorizeEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4754,7 +4754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4773,7 +4773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4817,7 +4817,7 @@ PythonQtShell_QGraphicsDropShadowEffect::~PythonQtShell_QGraphicsDropShadowEffec QRectF PythonQtShell_QGraphicsDropShadowEffect::boundingRectFor(const QRectF& rect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4847,7 +4847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4866,7 +4866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4885,7 +4885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4904,7 +4904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsDropShadowEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4934,7 +4934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsDropShadowEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4964,7 +4964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4983,7 +4983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5047,7 +5047,7 @@ PythonQtShell_QGraphicsEffect::~PythonQtShell_QGraphicsEffect() { QRectF PythonQtShell_QGraphicsEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5077,7 +5077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5096,7 +5096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5115,7 +5115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5134,7 +5134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5164,7 +5164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5194,7 +5194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5213,7 +5213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5292,7 +5292,7 @@ PythonQtShell_QGraphicsEllipseItem::~PythonQtShell_QGraphicsEllipseItem() { bool PythonQtShell_QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5322,7 +5322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsEllipseItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5455,7 +5455,7 @@ PythonQtShell_QGraphicsGridLayout::~PythonQtShell_QGraphicsGridLayout() { int PythonQtShell_QGraphicsGridLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5485,7 +5485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -5504,7 +5504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5523,7 +5523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsGridLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -5553,7 +5553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5572,7 +5572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5591,7 +5591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5845,7 +5845,7 @@ PythonQtShell_QGraphicsItem::~PythonQtShell_QGraphicsItem() { void PythonQtShell_QGraphicsItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5864,7 +5864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5894,7 +5894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -5924,7 +5924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -5954,7 +5954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5984,7 +5984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -6003,7 +6003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6022,7 +6022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6041,7 +6041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6060,7 +6060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6079,7 +6079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -6109,7 +6109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6128,7 +6128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6147,7 +6147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6166,7 +6166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6185,7 +6185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6204,7 +6204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6223,7 +6223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6253,7 +6253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6283,7 +6283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -6316,7 +6316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6335,7 +6335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6354,7 +6354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6373,7 +6373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6392,7 +6392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6411,7 +6411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6430,7 +6430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6460,7 +6460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6479,7 +6479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6509,7 +6509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -6539,7 +6539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6558,7 +6558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6588,7 +6588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6618,7 +6618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6648,7 +6648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -7719,7 +7719,7 @@ PythonQtShell_QGraphicsItemAnimation::~PythonQtShell_QGraphicsItemAnimation() { void PythonQtShell_QGraphicsItemAnimation::afterAnimationStep(qreal step0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("afterAnimationStep"); + static PyObject* name = PyUnicode_FromString("afterAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7738,7 +7738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::beforeAnimationStep(qreal step0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beforeAnimationStep"); + static PyObject* name = PyUnicode_FromString("beforeAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7757,7 +7757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7776,7 +7776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7795,7 +7795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemAnimation::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7825,7 +7825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7855,7 +7855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8014,7 +8014,7 @@ PythonQtShell_QGraphicsItemGroup::~PythonQtShell_QGraphicsItemGroup() { void PythonQtShell_QGraphicsItemGroup::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8033,7 +8033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsItemGroup::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -8063,7 +8063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -8093,7 +8093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -8123,7 +8123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -8153,7 +8153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -8172,7 +8172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8191,7 +8191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8210,7 +8210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8229,7 +8229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8248,7 +8248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -8278,7 +8278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8297,7 +8297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8316,7 +8316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8335,7 +8335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8354,7 +8354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8373,7 +8373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8392,7 +8392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8422,7 +8422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -8452,7 +8452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -8485,7 +8485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8504,7 +8504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8523,7 +8523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8542,7 +8542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8561,7 +8561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8580,7 +8580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8599,7 +8599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItemGroup::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -8629,7 +8629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -8648,7 +8648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8678,7 +8678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -8708,7 +8708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -8727,7 +8727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItemGroup::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -8757,7 +8757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -8787,7 +8787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsItemGroup::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8817,7 +8817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -8881,7 +8881,7 @@ PythonQtShell_QGraphicsLayout::~PythonQtShell_QGraphicsLayout() { int PythonQtShell_QGraphicsLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8911,7 +8911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -8930,7 +8930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8949,7 +8949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsLayout::itemAt(int i0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -8979,7 +8979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8998,7 +8998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9017,7 +9017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsLayout::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9047,7 +9047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9066,7 +9066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9160,7 +9160,7 @@ PythonQtShell_QGraphicsLayoutItem::~PythonQtShell_QGraphicsLayoutItem() { void PythonQtShell_QGraphicsLayoutItem::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -9179,7 +9179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayoutItem::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9198,7 +9198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsLayoutItem::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9228,7 +9228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayoutItem::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9447,7 +9447,7 @@ PythonQtShell_QGraphicsLineItem::~PythonQtShell_QGraphicsLineItem() { void PythonQtShell_QGraphicsLineItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9466,7 +9466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsLineItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -9496,7 +9496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -9526,7 +9526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -9556,7 +9556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -9586,7 +9586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -9605,7 +9605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9624,7 +9624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9643,7 +9643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9662,7 +9662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9681,7 +9681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -9711,7 +9711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9730,7 +9730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9749,7 +9749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9768,7 +9768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9787,7 +9787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9806,7 +9806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9825,7 +9825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9855,7 +9855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9885,7 +9885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9918,7 +9918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9937,7 +9937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9956,7 +9956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9975,7 +9975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9994,7 +9994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10013,7 +10013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10032,7 +10032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsLineItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10062,7 +10062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -10081,7 +10081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10111,7 +10111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -10141,7 +10141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -10160,7 +10160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsLineItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10190,7 +10190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -10220,7 +10220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsLineItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10250,7 +10250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -10362,7 +10362,7 @@ PythonQtShell_QGraphicsLinearLayout::~PythonQtShell_QGraphicsLinearLayout() { int PythonQtShell_QGraphicsLinearLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10392,7 +10392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10411,7 +10411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10430,7 +10430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsLinearLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -10460,7 +10460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10479,7 +10479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10498,7 +10498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10641,7 +10641,7 @@ PythonQtShell_QGraphicsObject::~PythonQtShell_QGraphicsObject() { void PythonQtShell_QGraphicsObject::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10660,7 +10660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsObject::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10690,7 +10690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10709,7 +10709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10739,7 +10739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10769,7 +10769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10799,7 +10799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10818,7 +10818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10837,7 +10837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10856,7 +10856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10875,7 +10875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10894,7 +10894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10913,7 +10913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10943,7 +10943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10973,7 +10973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -11003,7 +11003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11022,7 +11022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11041,7 +11041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11060,7 +11060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11079,7 +11079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11098,7 +11098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11117,7 +11117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11147,7 +11147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11177,7 +11177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -11210,7 +11210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11229,7 +11229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11248,7 +11248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11267,7 +11267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11286,7 +11286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11305,7 +11305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11324,7 +11324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsObject::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11354,7 +11354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -11373,7 +11373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11403,7 +11403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -11433,7 +11433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -11452,7 +11452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsObject::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11482,7 +11482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -11512,7 +11512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11531,7 +11531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsObject::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11561,7 +11561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -11612,7 +11612,7 @@ PythonQtShell_QGraphicsOpacityEffect::~PythonQtShell_QGraphicsOpacityEffect() { QRectF PythonQtShell_QGraphicsOpacityEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -11642,7 +11642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11661,7 +11661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11680,7 +11680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11699,7 +11699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsOpacityEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11729,7 +11729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsOpacityEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11759,7 +11759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -11778,7 +11778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11822,7 +11822,7 @@ PythonQtShell_QGraphicsPathItem::~PythonQtShell_QGraphicsPathItem() { bool PythonQtShell_QGraphicsPathItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11852,7 +11852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPathItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp index c663810d8..cb58ec07f 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp @@ -86,7 +86,7 @@ PythonQtShell_QGraphicsPixmapItem::~PythonQtShell_QGraphicsPixmapItem() { void PythonQtShell_QGraphicsPixmapItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsPixmapItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -135,7 +135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -165,7 +165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -195,7 +195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -225,7 +225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -244,7 +244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -263,7 +263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -282,7 +282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -301,7 +301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -320,7 +320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -350,7 +350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -369,7 +369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -388,7 +388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -407,7 +407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -426,7 +426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -445,7 +445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -494,7 +494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -524,7 +524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -557,7 +557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -576,7 +576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -595,7 +595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -614,7 +614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -633,7 +633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -652,7 +652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -671,7 +671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPixmapItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -701,7 +701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -720,7 +720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -750,7 +750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -780,7 +780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -799,7 +799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPixmapItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -829,7 +829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -859,7 +859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsPixmapItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -889,7 +889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1017,7 +1017,7 @@ PythonQtShell_QGraphicsPolygonItem::~PythonQtShell_QGraphicsPolygonItem() { bool PythonQtShell_QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPolygonItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1161,7 +1161,7 @@ PythonQtShell_QGraphicsProxyWidget::~PythonQtShell_QGraphicsProxyWidget() { void PythonQtShell_QGraphicsProxyWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1180,7 +1180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1199,7 +1199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1218,7 +1218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1237,7 +1237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1267,7 +1267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1297,7 +1297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1327,7 +1327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -1346,7 +1346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1365,7 +1365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1384,7 +1384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1403,7 +1403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1422,7 +1422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1441,7 +1441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -1460,7 +1460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -1479,7 +1479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1498,7 +1498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1517,7 +1517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsProxyWidget::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -1547,7 +1547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -1566,7 +1566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -1585,7 +1585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsProxyWidget::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -1634,7 +1634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1653,7 +1653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1672,7 +1672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1691,7 +1691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1710,7 +1710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsProxyWidget::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -1960,7 +1960,7 @@ PythonQtShell_QGraphicsRectItem::~PythonQtShell_QGraphicsRectItem() { bool PythonQtShell_QGraphicsRectItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1990,7 +1990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsRectItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2103,7 +2103,7 @@ PythonQtShell_QGraphicsRotation::~PythonQtShell_QGraphicsRotation() { void PythonQtShell_QGraphicsRotation::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2141,7 +2141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2160,7 +2160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsRotation::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2190,7 +2190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsRotation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2220,7 +2220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2289,7 +2289,7 @@ PythonQtShell_QGraphicsScale::~PythonQtShell_QGraphicsScale() { void PythonQtShell_QGraphicsScale::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -2308,7 +2308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2327,7 +2327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2346,7 +2346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScale::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2376,7 +2376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScale::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2406,7 +2406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2480,7 +2480,7 @@ PythonQtShell_QGraphicsScene::~PythonQtShell_QGraphicsScene() { void PythonQtShell_QGraphicsScene::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2499,7 +2499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -2518,7 +2518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2537,7 +2537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2556,7 +2556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2575,7 +2575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2594,7 +2594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawBackground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -2613,7 +2613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawForeground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -2632,7 +2632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawItems(QPainter* painter0, int numItems1, QGraphicsItem** items2, const QStyleOptionGraphicsItem* options3, QWidget* widget4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2651,7 +2651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2670,7 +2670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScene::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2700,7 +2700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScene::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2730,7 +2730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2749,7 +2749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2768,7 +2768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::helpEvent(QGraphicsSceneHelpEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHelpEvent*"}; @@ -2787,7 +2787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2806,7 +2806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsScene::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2836,7 +2836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2855,7 +2855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2874,7 +2874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2893,7 +2893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2912,7 +2912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2931,7 +2931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2969,7 +2969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -3985,7 +3985,7 @@ PythonQtShell_QGraphicsSimpleTextItem::~PythonQtShell_QGraphicsSimpleTextItem() bool PythonQtShell_QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -4015,7 +4015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsSimpleTextItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -4129,7 +4129,7 @@ PythonQtShell_QGraphicsTextItem::~PythonQtShell_QGraphicsTextItem() { void PythonQtShell_QGraphicsTextItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4148,7 +4148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTextItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4167,7 +4167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTextItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4197,7 +4197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTextItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4227,7 +4227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTextItem::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4510,7 +4510,7 @@ PythonQtShell_QGraphicsTransform::~PythonQtShell_QGraphicsTransform() { void PythonQtShell_QGraphicsTransform::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -4529,7 +4529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4548,7 +4548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4567,7 +4567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTransform::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4597,7 +4597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTransform::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4627,7 +4627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4661,7 +4661,7 @@ PythonQtShell_QGraphicsView::~PythonQtShell_QGraphicsView() { void PythonQtShell_QGraphicsView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4699,7 +4699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4718,7 +4718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4737,7 +4737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4756,7 +4756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4775,7 +4775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4805,7 +4805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4862,7 +4862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawBackground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -4881,7 +4881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawForeground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -4900,7 +4900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawItems(QPainter* painter0, int numItems1, QGraphicsItem** items2, const QStyleOptionGraphicsItem* options3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*"}; @@ -4919,7 +4919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4938,7 +4938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4957,7 +4957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4987,7 +4987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5017,7 +5017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5036,7 +5036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5066,7 +5066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5085,7 +5085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5115,7 +5115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5145,7 +5145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5164,7 +5164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5183,7 +5183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5202,7 +5202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5232,7 +5232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5251,7 +5251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5270,7 +5270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5289,7 +5289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5319,7 +5319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5338,7 +5338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5357,7 +5357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5376,7 +5376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGraphicsView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5474,7 +5474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5493,7 +5493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGraphicsView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5523,7 +5523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5542,7 +5542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5561,7 +5561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::setupViewport(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5580,7 +5580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGraphicsView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5610,7 +5610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5629,7 +5629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5648,7 +5648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5667,7 +5667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5697,7 +5697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGraphicsView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5727,7 +5727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6275,7 +6275,7 @@ PythonQtShell_QGraphicsWidget::~PythonQtShell_QGraphicsWidget() { void PythonQtShell_QGraphicsWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6294,7 +6294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6313,7 +6313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6332,7 +6332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6351,7 +6351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6381,7 +6381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6411,7 +6411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6441,7 +6441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -6460,7 +6460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6479,7 +6479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6498,7 +6498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6517,7 +6517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6536,7 +6536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6555,7 +6555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -6574,7 +6574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -6593,7 +6593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6612,7 +6612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6631,7 +6631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWidget::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -6661,7 +6661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -6680,7 +6680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -6699,7 +6699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6718,7 +6718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsWidget::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -6748,7 +6748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6767,7 +6767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6786,7 +6786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6805,7 +6805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6824,7 +6824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6854,7 +6854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsWidget::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -7289,7 +7289,7 @@ PythonQtShell_QGridLayout::~PythonQtShell_QGridLayout() { void PythonQtShell_QGridLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -7308,7 +7308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7327,7 +7327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QGridLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7357,7 +7357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGridLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7387,7 +7387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7406,7 +7406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7436,7 +7436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7466,7 +7466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QGridLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7496,7 +7496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QGridLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7526,7 +7526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGridLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -7556,7 +7556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7575,7 +7575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7605,7 +7605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QGridLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7635,7 +7635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QGridLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7665,7 +7665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGridLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7695,7 +7695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGridLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7725,7 +7725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7744,7 +7744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QGridLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7774,7 +7774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8007,7 +8007,7 @@ PythonQtShell_QGroupBox::~PythonQtShell_QGroupBox() { void PythonQtShell_QGroupBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8026,7 +8026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8045,7 +8045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::childEvent(QChildEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8064,7 +8064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8083,7 +8083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8102,7 +8102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8121,7 +8121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8151,7 +8151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8170,7 +8170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8189,7 +8189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8208,7 +8208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8227,7 +8227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8246,7 +8246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8276,7 +8276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8306,7 +8306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8325,7 +8325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8355,7 +8355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8374,7 +8374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8404,7 +8404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8434,7 +8434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8453,7 +8453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8472,7 +8472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8491,7 +8491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGroupBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8521,7 +8521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8540,7 +8540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8559,7 +8559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8578,7 +8578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8608,7 +8608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8627,7 +8627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8646,7 +8646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8665,7 +8665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8684,7 +8684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8703,7 +8703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8733,7 +8733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGroupBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8763,7 +8763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8782,7 +8782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGroupBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8812,7 +8812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8831,7 +8831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGroupBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8861,7 +8861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8880,7 +8880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGroupBox::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8910,7 +8910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8929,7 +8929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8948,7 +8948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9288,7 +9288,7 @@ PythonQtShell_QHBoxLayout::~PythonQtShell_QHBoxLayout() { void PythonQtShell_QHBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -9307,7 +9307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9326,7 +9326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QHBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9356,7 +9356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9386,7 +9386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9405,7 +9405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9435,7 +9435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9465,7 +9465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QHBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -9495,7 +9495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QHBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -9525,7 +9525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -9555,7 +9555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9574,7 +9574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9604,7 +9604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QHBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9634,7 +9634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QHBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -9664,7 +9664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9694,7 +9694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9724,7 +9724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -9743,7 +9743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QHBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9773,7 +9773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9806,7 +9806,7 @@ PythonQtShell_QHeaderView::~PythonQtShell_QHeaderView() { void PythonQtShell_QHeaderView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9825,7 +9825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9844,7 +9844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9863,7 +9863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9882,7 +9882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9901,7 +9901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9920,7 +9920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9939,7 +9939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::currentChanged(const QModelIndex& current0, const QModelIndex& old1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -9958,7 +9958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9977,7 +9977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -9996,7 +9996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10026,7 +10026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10045,7 +10045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10064,7 +10064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10083,7 +10083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10102,7 +10102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10121,7 +10121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10151,7 +10151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10170,7 +10170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10189,7 +10189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10219,7 +10219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10249,7 +10249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10268,7 +10268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10298,7 +10298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10317,7 +10317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10347,7 +10347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10377,7 +10377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10396,7 +10396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10426,7 +10426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10445,7 +10445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10464,7 +10464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QHeaderView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10494,7 +10494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10513,7 +10513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10532,7 +10532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QHeaderView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10562,7 +10562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10592,7 +10592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10611,7 +10611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10630,7 +10630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10649,7 +10649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10668,7 +10668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10698,7 +10698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10717,7 +10717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10736,7 +10736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10755,7 +10755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10774,7 +10774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10793,7 +10793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10823,7 +10823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QHeaderView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10853,7 +10853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10872,7 +10872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::paintSection(QPainter* painter0, const QRect& rect1, int logicalIndex2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintSection"); + static PyObject* name = PyUnicode_FromString("paintSection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int"}; @@ -10891,7 +10891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QHeaderView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10921,7 +10921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10940,7 +10940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10959,7 +10959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10978,7 +10978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10997,7 +10997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11016,7 +11016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11035,7 +11035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHeaderView::sectionSizeFromContents(int logicalIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sectionSizeFromContents"); + static PyObject* name = PyUnicode_FromString("sectionSizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -11065,7 +11065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11084,7 +11084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QHeaderView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11114,7 +11114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11133,7 +11133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QHeaderView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11163,7 +11163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11182,7 +11182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11201,7 +11201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags flags1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11220,7 +11220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11239,7 +11239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11258,7 +11258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QHeaderView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11288,7 +11288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11307,7 +11307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11337,7 +11337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11367,7 +11367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11386,7 +11386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11405,7 +11405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11424,7 +11424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11443,7 +11443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11462,7 +11462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11481,7 +11481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11511,7 +11511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11530,7 +11530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11549,7 +11549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QHeaderView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11579,7 +11579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::viewportEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11609,7 +11609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHeaderView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11639,7 +11639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QHeaderView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11669,7 +11669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QHeaderView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11699,7 +11699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp index 3024947f2..56a25739b 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp @@ -92,7 +92,7 @@ PythonQtShell_QIconEngine::~PythonQtShell_QIconEngine() { QSize PythonQtShell_QIconEngine::actualSize(const QSize& size0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actualSize"); + static PyObject* name = PyUnicode_FromString("actualSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -122,7 +122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::addFile(const QString& fileName0, const QSize& size1, QIcon::Mode mode2, QIcon::State state3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addFile"); + static PyObject* name = PyUnicode_FromString("addFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -141,7 +141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::addPixmap(const QPixmap& pixmap0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addPixmap"); + static PyObject* name = PyUnicode_FromString("addPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPixmap&" , "QIcon::Mode" , "QIcon::State"}; @@ -160,7 +160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QIconEngine::availableSizes(QIcon::Mode mode0, QIcon::State state1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availableSizes"); + static PyObject* name = PyUnicode_FromString("availableSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QIcon::Mode" , "QIcon::State"}; @@ -190,7 +190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIconEngine* PythonQtShell_QIconEngine::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIconEngine*"}; @@ -220,7 +220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QIconEngine::iconName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("iconName"); + static PyObject* name = PyUnicode_FromString("iconName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -250,7 +250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QIconEngine::key() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("key"); + static PyObject* name = PyUnicode_FromString("key"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -280,7 +280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::paint(QPainter* painter0, const QRect& rect1, QIcon::Mode mode2, QIcon::State state3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "QIcon::Mode" , "QIcon::State"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QIconEngine::pixmap(const QSize& size0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixmap"); + static PyObject* name = PyUnicode_FromString("pixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -329,7 +329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIconEngine::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -359,7 +359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::virtual_hook(int id0, void* data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -378,7 +378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIconEngine::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -478,7 +478,7 @@ PythonQtShell_QImageIOHandler::~PythonQtShell_QImageIOHandler() { bool PythonQtShell_QImageIOHandler::canRead() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canRead"); + static PyObject* name = PyUnicode_FromString("canRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -508,7 +508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::currentImageNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentImageNumber"); + static PyObject* name = PyUnicode_FromString("currentImageNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -538,7 +538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QImageIOHandler::currentImageRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentImageRect"); + static PyObject* name = PyUnicode_FromString("currentImageRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -568,7 +568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::imageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("imageCount"); + static PyObject* name = PyUnicode_FromString("imageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::jumpToImage(int imageNumber0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("jumpToImage"); + static PyObject* name = PyUnicode_FromString("jumpToImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -628,7 +628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::jumpToNextImage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("jumpToNextImage"); + static PyObject* name = PyUnicode_FromString("jumpToNextImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -658,7 +658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::loopCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loopCount"); + static PyObject* name = PyUnicode_FromString("loopCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QImageIOHandler::name() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -718,7 +718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::nextImageDelay() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextImageDelay"); + static PyObject* name = PyUnicode_FromString("nextImageDelay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -748,7 +748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QImageIOHandler::option(QImageIOHandler::ImageOption option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("option"); + static PyObject* name = PyUnicode_FromString("option"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QImageIOHandler::ImageOption"}; @@ -778,7 +778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::read(QImage* image0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImage*"}; @@ -808,7 +808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOHandler::setOption(QImageIOHandler::ImageOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOption"); + static PyObject* name = PyUnicode_FromString("setOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QImageIOHandler::ImageOption" , "const QVariant&"}; @@ -827,7 +827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::supportsOption(QImageIOHandler::ImageOption option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsOption"); + static PyObject* name = PyUnicode_FromString("supportsOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImageIOHandler::ImageOption"}; @@ -857,7 +857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::write(const QImage& image0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QImage&"}; @@ -982,7 +982,7 @@ PythonQtShell_QImageIOPlugin::~PythonQtShell_QImageIOPlugin() { QImageIOPlugin::Capabilities PythonQtShell_QImageIOPlugin::capabilities(QIODevice* device0, const QByteArray& format1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("capabilities"); + static PyObject* name = PyUnicode_FromString("capabilities"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOPlugin::Capabilities" , "QIODevice*" , "const QByteArray&"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1031,7 +1031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QImageIOHandler* PythonQtShell_QImageIOPlugin::create(QIODevice* device0, const QByteArray& format1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOHandler*" , "QIODevice*" , "const QByteArray&"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1080,7 +1080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOPlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1110,7 +1110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOPlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1140,7 +1140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1502,7 +1502,7 @@ PythonQtShell_QInputDialog::~PythonQtShell_QInputDialog() { void PythonQtShell_QInputDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1521,7 +1521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1540,7 +1540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1559,7 +1559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1578,7 +1578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1597,7 +1597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1616,7 +1616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1635,7 +1635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1665,7 +1665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1684,7 +1684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1703,7 +1703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1722,7 +1722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1741,7 +1741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1760,7 +1760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1779,7 +1779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1809,7 +1809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1839,7 +1839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1918,7 +1918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1937,7 +1937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1967,7 +1967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1997,7 +1997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2016,7 +2016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2035,7 +2035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2054,7 +2054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QInputDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2084,7 +2084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2103,7 +2103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2141,7 +2141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2171,7 +2171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2190,7 +2190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2209,7 +2209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2228,7 +2228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2247,7 +2247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2266,7 +2266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2296,7 +2296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2315,7 +2315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QInputDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2345,7 +2345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2364,7 +2364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QInputDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2394,7 +2394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2413,7 +2413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2432,7 +2432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QInputDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2462,7 +2462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2481,7 +2481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2500,7 +2500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2519,7 +2519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2940,7 +2940,7 @@ PythonQtShell_QIntValidator::~PythonQtShell_QIntValidator() { void PythonQtShell_QIntValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2959,7 +2959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2978,7 +2978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIntValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3008,7 +3008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIntValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3038,7 +3038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3057,7 +3057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::setRange(int bottom0, int top1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3076,7 +3076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3095,7 +3095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QIntValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3174,7 +3174,7 @@ PythonQtShell_QItemDelegate::~PythonQtShell_QItemDelegate() { void PythonQtShell_QItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3193,7 +3193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3223,7 +3223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3242,7 +3242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3261,7 +3261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawCheck(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, Qt::CheckState state3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawCheck"); + static PyObject* name = PyUnicode_FromString("drawCheck"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "Qt::CheckState"}; @@ -3280,7 +3280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawDecoration(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawDecoration"); + static PyObject* name = PyUnicode_FromString("drawDecoration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QPixmap&"}; @@ -3299,7 +3299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawDisplay(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, const QString& text3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawDisplay"); + static PyObject* name = PyUnicode_FromString("drawDisplay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QString&"}; @@ -3318,7 +3318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawFocus(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawFocus"); + static PyObject* name = PyUnicode_FromString("drawFocus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&"}; @@ -3337,7 +3337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3367,7 +3367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3397,7 +3397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3427,7 +3427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3457,7 +3457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3476,7 +3476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -3506,7 +3506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3525,7 +3525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -3544,7 +3544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3574,7 +3574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3593,7 +3593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3732,7 +3732,7 @@ PythonQtShell_QItemEditorCreatorBase::~PythonQtShell_QItemEditorCreatorBase() { QWidget* PythonQtShell_QItemEditorCreatorBase::createWidget(QWidget* parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -3762,7 +3762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QItemEditorCreatorBase::valuePropertyName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -3812,7 +3812,7 @@ PythonQtShell_QItemEditorFactory::~PythonQtShell_QItemEditorFactory() { QWidget* PythonQtShell_QItemEditorFactory::createEditor(int userType0, QWidget* parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "int" , "QWidget*"}; @@ -3842,7 +3842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QItemEditorFactory::valuePropertyName(int userType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "int"}; @@ -4172,7 +4172,7 @@ PythonQtShell_QItemSelectionModel::~PythonQtShell_QItemSelectionModel() { void PythonQtShell_QItemSelectionModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4191,7 +4191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4210,7 +4210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::clearCurrentIndex() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clearCurrentIndex"); + static PyObject* name = PyUnicode_FromString("clearCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4229,7 +4229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4248,7 +4248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemSelectionModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4278,7 +4278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemSelectionModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4308,7 +4308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4327,7 +4327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::select(const QItemSelection& selection0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "QItemSelectionModel::SelectionFlags"}; @@ -4346,7 +4346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::select(const QModelIndex& index0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4365,7 +4365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::setCurrentIndex(const QModelIndex& index0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4384,7 +4384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4696,7 +4696,7 @@ PythonQtShell_QKeyEventTransition::~PythonQtShell_QKeyEventTransition() { void PythonQtShell_QKeyEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4715,7 +4715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4734,7 +4734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4764,7 +4764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4794,7 +4794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4906,7 +4906,7 @@ PythonQtShell_QLCDNumber::~PythonQtShell_QLCDNumber() { void PythonQtShell_QLCDNumber::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4925,7 +4925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4944,7 +4944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4963,7 +4963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4982,7 +4982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5001,7 +5001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5020,7 +5020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5050,7 +5050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5069,7 +5069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5088,7 +5088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5107,7 +5107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5126,7 +5126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5145,7 +5145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5175,7 +5175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5205,7 +5205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5224,7 +5224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5254,7 +5254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5273,7 +5273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5303,7 +5303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5333,7 +5333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5352,7 +5352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5371,7 +5371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5390,7 +5390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLCDNumber::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5420,7 +5420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5439,7 +5439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5458,7 +5458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5477,7 +5477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5507,7 +5507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLCDNumber::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5537,7 +5537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5556,7 +5556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5575,7 +5575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5594,7 +5594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5613,7 +5613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5632,7 +5632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5662,7 +5662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLCDNumber::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5692,7 +5692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5711,7 +5711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLCDNumber::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5741,7 +5741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5760,7 +5760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLCDNumber::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5790,7 +5790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5809,7 +5809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5828,7 +5828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5847,7 +5847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5950,7 +5950,7 @@ PythonQtShell_QLabel::~PythonQtShell_QLabel() { void PythonQtShell_QLabel::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5969,7 +5969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5988,7 +5988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6007,7 +6007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6026,7 +6026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::contextMenuEvent(QContextMenuEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6045,7 +6045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6064,7 +6064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6094,7 +6094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6113,7 +6113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6132,7 +6132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6151,7 +6151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6170,7 +6170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6189,7 +6189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6219,7 +6219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6249,7 +6249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::focusInEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6268,7 +6268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6298,7 +6298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::focusOutEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6317,7 +6317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6347,7 +6347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6377,7 +6377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6396,7 +6396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6415,7 +6415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6434,7 +6434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLabel::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6464,7 +6464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6483,7 +6483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6502,7 +6502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6521,7 +6521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6551,7 +6551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6570,7 +6570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6589,7 +6589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6608,7 +6608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6627,7 +6627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6646,7 +6646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6676,7 +6676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLabel::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6706,7 +6706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6725,7 +6725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLabel::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6755,7 +6755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6774,7 +6774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLabel::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6804,7 +6804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6823,7 +6823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6842,7 +6842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6861,7 +6861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7094,7 +7094,7 @@ PythonQtShell_QLayout::~PythonQtShell_QLayout() { void PythonQtShell_QLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -7113,7 +7113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7132,7 +7132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7162,7 +7162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7192,7 +7192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7211,7 +7211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7241,7 +7241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7271,7 +7271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7301,7 +7301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7331,7 +7331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7361,7 +7361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7391,7 +7391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -7421,7 +7421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7440,7 +7440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7470,7 +7470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7500,7 +7500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7530,7 +7530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7560,7 +7560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7590,7 +7590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7620,7 +7620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7639,7 +7639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7669,7 +7669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QLayout::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -7699,7 +7699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7729,7 +7729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7748,7 +7748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QLayout::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -8022,7 +8022,7 @@ PythonQtShell_QLayoutItem::~PythonQtShell_QLayoutItem() { QSizePolicy::ControlTypes PythonQtShell_QLayoutItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -8052,7 +8052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QLayoutItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -8082,7 +8082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QLayoutItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -8112,7 +8112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayoutItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8142,7 +8142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayoutItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8172,7 +8172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayoutItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8191,7 +8191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayoutItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8221,7 +8221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QLayoutItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -8251,7 +8251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8281,7 +8281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayoutItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8311,7 +8311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8341,7 +8341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayoutItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -8360,7 +8360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8390,7 +8390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QLayoutItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -8420,7 +8420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QLayoutItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -8545,7 +8545,7 @@ PythonQtShell_QLineEdit::~PythonQtShell_QLineEdit() { void PythonQtShell_QLineEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8564,7 +8564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8583,7 +8583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8602,7 +8602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8621,7 +8621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8640,7 +8640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8659,7 +8659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8689,7 +8689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8708,7 +8708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8727,7 +8727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8746,7 +8746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8765,7 +8765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8784,7 +8784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8814,7 +8814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8844,7 +8844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8863,7 +8863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8893,7 +8893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8912,7 +8912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8942,7 +8942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8972,7 +8972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8991,7 +8991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9010,7 +9010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9029,7 +9029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLineEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9059,7 +9059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9078,7 +9078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9097,7 +9097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9116,7 +9116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9146,7 +9146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9165,7 +9165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9184,7 +9184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9203,7 +9203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9222,7 +9222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9241,7 +9241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9271,7 +9271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLineEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9301,7 +9301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9320,7 +9320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLineEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9350,7 +9350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9369,7 +9369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLineEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9399,7 +9399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9418,7 +9418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9437,7 +9437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9456,7 +9456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9893,7 +9893,7 @@ PythonQtShell_QListView::~PythonQtShell_QListView() { void PythonQtShell_QListView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9912,7 +9912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9931,7 +9931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9950,7 +9950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9969,7 +9969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9988,7 +9988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10007,7 +10007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10026,7 +10026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -10045,7 +10045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10064,7 +10064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -10083,7 +10083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10113,7 +10113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10132,7 +10132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10151,7 +10151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10170,7 +10170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10189,7 +10189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10208,7 +10208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10238,7 +10238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10257,7 +10257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10276,7 +10276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10306,7 +10306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10336,7 +10336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10355,7 +10355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10385,7 +10385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10404,7 +10404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10434,7 +10434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10464,7 +10464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10483,7 +10483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10513,7 +10513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10532,7 +10532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10551,7 +10551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QListView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10581,7 +10581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10600,7 +10600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10619,7 +10619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10649,7 +10649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10679,7 +10679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10698,7 +10698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10717,7 +10717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10736,7 +10736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10755,7 +10755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10785,7 +10785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10804,7 +10804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10823,7 +10823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10842,7 +10842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10861,7 +10861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10880,7 +10880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10910,7 +10910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QListView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10940,7 +10940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10959,7 +10959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QListView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10989,7 +10989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11008,7 +11008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11027,7 +11027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11046,7 +11046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11065,7 +11065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11084,7 +11084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11103,7 +11103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11122,7 +11122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QListView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11152,7 +11152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11171,7 +11171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QListView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11201,7 +11201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11220,7 +11220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11239,7 +11239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11258,7 +11258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11277,7 +11277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11296,7 +11296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QListView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11326,7 +11326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11345,7 +11345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11375,7 +11375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11405,7 +11405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11424,7 +11424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11443,7 +11443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11462,7 +11462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11481,7 +11481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11500,7 +11500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11519,7 +11519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11549,7 +11549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11568,7 +11568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11587,7 +11587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QListView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11617,7 +11617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11647,7 +11647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QListView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11677,7 +11677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QListView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11707,7 +11707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QListView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11737,7 +11737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12086,7 +12086,7 @@ PythonQtShell_QListWidget::~PythonQtShell_QListWidget() { void PythonQtShell_QListWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12105,7 +12105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12124,7 +12124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12143,7 +12143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -12162,7 +12162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12181,7 +12181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12200,7 +12200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12219,7 +12219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -12238,7 +12238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12257,7 +12257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -12276,7 +12276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12306,7 +12306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12325,7 +12325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12344,7 +12344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12363,7 +12363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12382,7 +12382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12401,7 +12401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::dropMimeData(int index0, const QMimeData* data1, Qt::DropAction action2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -12431,7 +12431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -12461,7 +12461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -12480,7 +12480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12499,7 +12499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12529,7 +12529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12559,7 +12559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12578,7 +12578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12608,7 +12608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12627,7 +12627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12657,7 +12657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12687,7 +12687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12706,7 +12706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12736,7 +12736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12755,7 +12755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12774,7 +12774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QListWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -12804,7 +12804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12823,7 +12823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12842,7 +12842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12872,7 +12872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12902,7 +12902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12921,7 +12921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12940,7 +12940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -12959,7 +12959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12978,7 +12978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13008,7 +13008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QListWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -13038,7 +13038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QListWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13068,7 +13068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13087,7 +13087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13106,7 +13106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13125,7 +13125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13144,7 +13144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13163,7 +13163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13193,7 +13193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QListWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13223,7 +13223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13242,7 +13242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QListWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13272,7 +13272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13291,7 +13291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13310,7 +13310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13329,7 +13329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13348,7 +13348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13367,7 +13367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -13386,7 +13386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13405,7 +13405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QListWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -13435,7 +13435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -13454,7 +13454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QListWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -13484,7 +13484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -13503,7 +13503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -13522,7 +13522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -13541,7 +13541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13560,7 +13560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QListWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13590,7 +13590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13609,7 +13609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13639,7 +13639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13669,7 +13669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -13688,7 +13688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QListWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13718,7 +13718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13737,7 +13737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13756,7 +13756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13775,7 +13775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13794,7 +13794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13813,7 +13813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13843,7 +13843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13862,7 +13862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13881,7 +13881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QListWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -13911,7 +13911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13941,7 +13941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QListWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13971,7 +13971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QListWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -14001,7 +14001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QListWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -14031,7 +14031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14250,7 +14250,7 @@ PythonQtShell_QListWidgetItem::~PythonQtShell_QListWidgetItem() { QListWidgetItem* PythonQtShell_QListWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QListWidgetItem*"}; @@ -14280,7 +14280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListWidgetItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -14310,7 +14310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidgetItem::__lt__(const QListWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QListWidgetItem&"}; @@ -14340,7 +14340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14359,7 +14359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::setBackgroundColor(const QColor& color0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setBackgroundColor"); + static PyObject* name = PyUnicode_FromString("setBackgroundColor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QColor&"}; @@ -14378,7 +14378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::setData(int role0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -14397,7 +14397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14609,7 +14609,7 @@ PythonQtShell_QMainWindow::~PythonQtShell_QMainWindow() { void PythonQtShell_QMainWindow::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14628,7 +14628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14647,7 +14647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14666,7 +14666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14685,7 +14685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14704,7 +14704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMenu* PythonQtShell_QMainWindow::createPopupMenu() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createPopupMenu"); + static PyObject* name = PyUnicode_FromString("createPopupMenu"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMenu*"}; @@ -14734,7 +14734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14753,7 +14753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14783,7 +14783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14802,7 +14802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14821,7 +14821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14840,7 +14840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14859,7 +14859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14878,7 +14878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14908,7 +14908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14938,7 +14938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14957,7 +14957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14987,7 +14987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15006,7 +15006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15036,7 +15036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15066,7 +15066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15085,7 +15085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15104,7 +15104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15123,7 +15123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMainWindow::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15153,7 +15153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15172,7 +15172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15191,7 +15191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15210,7 +15210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15240,7 +15240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMainWindow::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15270,7 +15270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15289,7 +15289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15308,7 +15308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15327,7 +15327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15346,7 +15346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15365,7 +15365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15395,7 +15395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMainWindow::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15425,7 +15425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15444,7 +15444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMainWindow::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15474,7 +15474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15493,7 +15493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMainWindow::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15523,7 +15523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15542,7 +15542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMainWindow::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15572,7 +15572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15591,7 +15591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15610,7 +15610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp index 19bb21947..a0466470b 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp @@ -509,7 +509,7 @@ PythonQtShell_QMdiArea::~PythonQtShell_QMdiArea() { void PythonQtShell_QMdiArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -528,7 +528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -547,7 +547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::childEvent(QChildEvent* childEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -566,7 +566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -585,7 +585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -604,7 +604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -623,7 +623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -653,7 +653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -672,7 +672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -691,7 +691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -710,7 +710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -729,7 +729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -748,7 +748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -778,7 +778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -808,7 +808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -827,7 +827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -857,7 +857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -876,7 +876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -906,7 +906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -936,7 +936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -955,7 +955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -974,7 +974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -993,7 +993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMdiArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1023,7 +1023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1042,7 +1042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1080,7 +1080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1110,7 +1110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1129,7 +1129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1148,7 +1148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1167,7 +1167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1186,7 +1186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1205,7 +1205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1235,7 +1235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMdiArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1265,7 +1265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::paintEvent(QPaintEvent* paintEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1284,7 +1284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMdiArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1314,7 +1314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::resizeEvent(QResizeEvent* resizeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1333,7 +1333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1352,7 +1352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1371,7 +1371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMdiArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1401,7 +1401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1420,7 +1420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1439,7 +1439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::timerEvent(QTimerEvent* timerEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1488,7 +1488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMdiArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1518,7 +1518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1722,7 +1722,7 @@ PythonQtShell_QMdiSubWindow::~PythonQtShell_QMdiSubWindow() { void PythonQtShell_QMdiSubWindow::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1741,7 +1741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::changeEvent(QEvent* changeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1760,7 +1760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::childEvent(QChildEvent* childEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1779,7 +1779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::closeEvent(QCloseEvent* closeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1798,7 +1798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::contextMenuEvent(QContextMenuEvent* contextMenuEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1817,7 +1817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1836,7 +1836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1866,7 +1866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1885,7 +1885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1904,7 +1904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1923,7 +1923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1942,7 +1942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1961,7 +1961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1991,7 +1991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2021,7 +2021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::focusInEvent(QFocusEvent* focusInEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2040,7 +2040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2070,7 +2070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::focusOutEvent(QFocusEvent* focusOutEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2089,7 +2089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2119,7 +2119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2149,7 +2149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::hideEvent(QHideEvent* hideEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2168,7 +2168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2187,7 +2187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2206,7 +2206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMdiSubWindow::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2236,7 +2236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::keyPressEvent(QKeyEvent* keyEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2255,7 +2255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2274,7 +2274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::leaveEvent(QEvent* leaveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2293,7 +2293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2323,7 +2323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseDoubleClickEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2342,7 +2342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseMoveEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2361,7 +2361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mousePressEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2380,7 +2380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseReleaseEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2399,7 +2399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::moveEvent(QMoveEvent* moveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2418,7 +2418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2448,7 +2448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMdiSubWindow::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2478,7 +2478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::paintEvent(QPaintEvent* paintEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2497,7 +2497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMdiSubWindow::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2527,7 +2527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::resizeEvent(QResizeEvent* resizeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2546,7 +2546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMdiSubWindow::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2576,7 +2576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2595,7 +2595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2614,7 +2614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::timerEvent(QTimerEvent* timerEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2633,7 +2633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2842,7 +2842,7 @@ PythonQtShell_QMenu::~PythonQtShell_QMenu() { void PythonQtShell_QMenu::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2861,7 +2861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2880,7 +2880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2899,7 +2899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2918,7 +2918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2937,7 +2937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2956,7 +2956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2986,7 +2986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3005,7 +3005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3024,7 +3024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3043,7 +3043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3062,7 +3062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3081,7 +3081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3111,7 +3111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3141,7 +3141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3160,7 +3160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3190,7 +3190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3209,7 +3209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3239,7 +3239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3269,7 +3269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3288,7 +3288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3307,7 +3307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3326,7 +3326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMenu::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3356,7 +3356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3375,7 +3375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3394,7 +3394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3413,7 +3413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3443,7 +3443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMenu::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3473,7 +3473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3492,7 +3492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3511,7 +3511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3530,7 +3530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3549,7 +3549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3568,7 +3568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3598,7 +3598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMenu::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3628,7 +3628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3647,7 +3647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMenu::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3677,7 +3677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3696,7 +3696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMenu::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3726,7 +3726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3745,7 +3745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3764,7 +3764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3783,7 +3783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4071,7 +4071,7 @@ PythonQtShell_QMenuBar::~PythonQtShell_QMenuBar() { void PythonQtShell_QMenuBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4090,7 +4090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4109,7 +4109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4128,7 +4128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4147,7 +4147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4166,7 +4166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4185,7 +4185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4215,7 +4215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4234,7 +4234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4253,7 +4253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4272,7 +4272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4291,7 +4291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4310,7 +4310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4340,7 +4340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4370,7 +4370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4389,7 +4389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4419,7 +4419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4438,7 +4438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4468,7 +4468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4498,7 +4498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4517,7 +4517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4536,7 +4536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4555,7 +4555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMenuBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4585,7 +4585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4604,7 +4604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4623,7 +4623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4642,7 +4642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4672,7 +4672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4691,7 +4691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4710,7 +4710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4729,7 +4729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4748,7 +4748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4767,7 +4767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4797,7 +4797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMenuBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4827,7 +4827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4846,7 +4846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMenuBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4876,7 +4876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4895,7 +4895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::setVisible(bool visible0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4914,7 +4914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMenuBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4944,7 +4944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4963,7 +4963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4982,7 +4982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5001,7 +5001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5225,7 +5225,7 @@ PythonQtShell_QMessageBox::~PythonQtShell_QMessageBox() { void PythonQtShell_QMessageBox::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5244,7 +5244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5263,7 +5263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5282,7 +5282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5301,7 +5301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5320,7 +5320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5339,7 +5339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5358,7 +5358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5388,7 +5388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5407,7 +5407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5426,7 +5426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5445,7 +5445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5464,7 +5464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5483,7 +5483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5502,7 +5502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5532,7 +5532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5562,7 +5562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5641,7 +5641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5660,7 +5660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5690,7 +5690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5720,7 +5720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5739,7 +5739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5758,7 +5758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5777,7 +5777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMessageBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5807,7 +5807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5826,7 +5826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5845,7 +5845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5864,7 +5864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5894,7 +5894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5913,7 +5913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5932,7 +5932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5951,7 +5951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5970,7 +5970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5989,7 +5989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6019,7 +6019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6038,7 +6038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMessageBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6068,7 +6068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6087,7 +6087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMessageBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6117,7 +6117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6136,7 +6136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6155,7 +6155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMessageBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6185,7 +6185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6204,7 +6204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6223,7 +6223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6242,7 +6242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6583,7 +6583,7 @@ PythonQtShell_QMouseEventTransition::~PythonQtShell_QMouseEventTransition() { void PythonQtShell_QMouseEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6602,7 +6602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6621,7 +6621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6651,7 +6651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6681,7 +6681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6711,7 +6711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6730,7 +6730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6823,7 +6823,7 @@ PythonQtShell_QMovie::~PythonQtShell_QMovie() { void PythonQtShell_QMovie::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6842,7 +6842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMovie::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6861,7 +6861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMovie::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6891,7 +6891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMovie::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6921,7 +6921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMovie::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7182,7 +7182,7 @@ PythonQtShell_QOpenGLContext::~PythonQtShell_QOpenGLContext() { void PythonQtShell_QOpenGLContext::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7201,7 +7201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLContext::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7220,7 +7220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLContext::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7250,7 +7250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLContext::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7280,7 +7280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLContext::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8111,7 +8111,7 @@ PythonQtShell_QOpenGLPaintDevice::~PythonQtShell_QOpenGLPaintDevice() { int PythonQtShell_QOpenGLPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8141,7 +8141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLPaintDevice::ensureActiveTarget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ensureActiveTarget"); + static PyObject* name = PyUnicode_FromString("ensureActiveTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8160,7 +8160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8179,7 +8179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QOpenGLPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8209,7 +8209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QOpenGLPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8239,7 +8239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QOpenGLPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8269,7 +8269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QOpenGLPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8382,7 +8382,7 @@ PythonQtShell_QOpenGLShader::~PythonQtShell_QOpenGLShader() { void PythonQtShell_QOpenGLShader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8401,7 +8401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8420,7 +8420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8450,7 +8450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8480,7 +8480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8559,7 +8559,7 @@ PythonQtShell_QOpenGLShaderProgram::~PythonQtShell_QOpenGLShaderProgram() { void PythonQtShell_QOpenGLShaderProgram::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8578,7 +8578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShaderProgram::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8597,7 +8597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8627,7 +8627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8657,7 +8657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::link() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8687,7 +8687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShaderProgram::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9236,7 +9236,7 @@ PythonQtShell_QPageSetupDialog::~PythonQtShell_QPageSetupDialog() { void PythonQtShell_QPageSetupDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9255,7 +9255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9274,7 +9274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9293,7 +9293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9312,7 +9312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9331,7 +9331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9350,7 +9350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9369,7 +9369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9399,7 +9399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9418,7 +9418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9437,7 +9437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9456,7 +9456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9475,7 +9475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9494,7 +9494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9513,7 +9513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9543,7 +9543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9573,7 +9573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9603,7 +9603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9622,7 +9622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9652,7 +9652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9671,7 +9671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9701,7 +9701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9731,7 +9731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9750,7 +9750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9769,7 +9769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9788,7 +9788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPageSetupDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9818,7 +9818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9837,7 +9837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9856,7 +9856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9875,7 +9875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9905,7 +9905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9924,7 +9924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9943,7 +9943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9962,7 +9962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9981,7 +9981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10000,7 +10000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10030,7 +10030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10049,7 +10049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPageSetupDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10079,7 +10079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10098,7 +10098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPageSetupDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10128,7 +10128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10147,7 +10147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10166,7 +10166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPageSetupDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10196,7 +10196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10215,7 +10215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10234,7 +10234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10253,7 +10253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10311,7 +10311,7 @@ PythonQtShell_QPagedPaintDevice::~PythonQtShell_QPagedPaintDevice() { int PythonQtShell_QPagedPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10341,7 +10341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10360,7 +10360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPagedPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10390,7 +10390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPagedPaintDevice::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10420,7 +10420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPagedPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10450,7 +10450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPagedPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10480,7 +10480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setMargins(const QPagedPaintDevice::Margins& margins0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -10499,7 +10499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setPageSize(QPagedPaintDevice::PageSize size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -10518,7 +10518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -10537,7 +10537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPagedPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10622,7 +10622,7 @@ PythonQtShell_QPaintDevice::~PythonQtShell_QPaintDevice() { int PythonQtShell_QPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10652,7 +10652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10671,7 +10671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10701,7 +10701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10731,7 +10731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10761,7 +10761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10886,7 +10886,7 @@ PythonQtShell_QPaintEngine::~PythonQtShell_QPaintEngine() { bool PythonQtShell_QPaintEngine::begin(QPaintDevice* pdev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("begin"); + static PyObject* name = PyUnicode_FromString("begin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QPaintDevice*"}; @@ -10916,7 +10916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPoint PythonQtShell_QPaintEngine::coordinateOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("coordinateOffset"); + static PyObject* name = PyUnicode_FromString("coordinateOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPoint"}; @@ -10946,7 +10946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawEllipse(const QRect& r0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10965,7 +10965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawEllipse(const QRectF& r0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -10984,7 +10984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawImage(const QRectF& r0, const QImage& pm1, const QRectF& sr2, Qt::ImageConversionFlags flags3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawImage"); + static PyObject* name = PyUnicode_FromString("drawImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QImage&" , "const QRectF&" , "Qt::ImageConversionFlags"}; @@ -11003,7 +11003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawLines(const QLine* lines0, int lineCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLine*" , "int"}; @@ -11022,7 +11022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawLines(const QLineF* lines0, int lineCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLineF*" , "int"}; @@ -11041,7 +11041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPath(const QPainterPath& path0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPath"); + static PyObject* name = PyUnicode_FromString("drawPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPainterPath&"}; @@ -11060,7 +11060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPixmap(const QRectF& r0, const QPixmap& pm1, const QRectF& sr2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPixmap"); + static PyObject* name = PyUnicode_FromString("drawPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QRectF&"}; @@ -11079,7 +11079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPoints(const QPoint* points0, int pointCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int"}; @@ -11098,7 +11098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPoints(const QPointF* points0, int pointCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int"}; @@ -11117,7 +11117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPolygon(const QPoint* points0, int pointCount1, QPaintEngine::PolygonDrawMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -11136,7 +11136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPolygon(const QPointF* points0, int pointCount1, QPaintEngine::PolygonDrawMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -11155,7 +11155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawRects(const QRect* rects0, int rectCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect*" , "int"}; @@ -11174,7 +11174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawRects(const QRectF* rects0, int rectCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF*" , "int"}; @@ -11193,7 +11193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawTextItem(const QPointF& p0, const QTextItem& textItem1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawTextItem"); + static PyObject* name = PyUnicode_FromString("drawTextItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&" , "const QTextItem&"}; @@ -11212,7 +11212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawTiledPixmap(const QRectF& r0, const QPixmap& pixmap1, const QPointF& s2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawTiledPixmap"); + static PyObject* name = PyUnicode_FromString("drawTiledPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QPointF&"}; @@ -11231,7 +11231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPaintEngine::end() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("end"); + static PyObject* name = PyUnicode_FromString("end"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11261,7 +11261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine::Type PythonQtShell_QPaintEngine::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine::Type"}; @@ -11291,7 +11291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::updateState(const QPaintEngineState& state0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPaintEngineState&"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp index d3243dfd6..f475ba376 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp @@ -147,7 +147,7 @@ PythonQtShell_QPanGesture::~PythonQtShell_QPanGesture() { void PythonQtShell_QPanGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -166,7 +166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPanGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -185,7 +185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPanGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -215,7 +215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPanGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -245,7 +245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPanGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -309,7 +309,7 @@ PythonQtShell_QPdfWriter::~PythonQtShell_QPdfWriter() { void PythonQtShell_QPdfWriter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -328,7 +328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -347,7 +347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPdfWriter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -377,7 +377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -407,7 +407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -437,7 +437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -456,7 +456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPdfWriter::metric(QPaintDevice::PaintDeviceMetric id0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -486,7 +486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -516,7 +516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPdfWriter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -546,7 +546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPdfWriter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -576,7 +576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setMargins(const QPagedPaintDevice::Margins& m0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -595,7 +595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -614,7 +614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -633,7 +633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPdfWriter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -746,7 +746,7 @@ PythonQtShell_QPicture::~PythonQtShell_QPicture() { int PythonQtShell_QPicture::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -776,7 +776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPicture::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -795,7 +795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPicture::metric(QPaintDevice::PaintDeviceMetric m0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -825,7 +825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPicture::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -855,7 +855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPicture::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -885,7 +885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPicture::setData(const char* data0, uint size1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*" , "uint"}; @@ -904,7 +904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPicture::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1028,7 +1028,7 @@ PythonQtShell_QPictureFormatPlugin::~PythonQtShell_QPictureFormatPlugin() { void PythonQtShell_QPictureFormatPlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPictureFormatPlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1066,7 +1066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1096,7 +1096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1126,7 +1126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::installIOHandler(const QString& format0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("installIOHandler"); + static PyObject* name = PyUnicode_FromString("installIOHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1156,7 +1156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::loadPicture(const QString& format0, const QString& filename1, QPicture* pic2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadPicture"); + static PyObject* name = PyUnicode_FromString("loadPicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QPicture*"}; @@ -1186,7 +1186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::savePicture(const QString& format0, const QString& filename1, const QPicture& pic2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("savePicture"); + static PyObject* name = PyUnicode_FromString("savePicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QPicture&"}; @@ -1216,7 +1216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPictureFormatPlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1394,7 +1394,7 @@ PythonQtShell_QPinchGesture::~PythonQtShell_QPinchGesture() { void PythonQtShell_QPinchGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1413,7 +1413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPinchGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1432,7 +1432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPinchGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1462,7 +1462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPinchGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1492,7 +1492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPinchGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1716,7 +1716,7 @@ PythonQtShell_QPlainTextDocumentLayout::~PythonQtShell_QPlainTextDocumentLayout( QRectF PythonQtShell_QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock& block0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -1746,7 +1746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1765,7 +1765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1784,7 +1784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::documentChanged(int from0, int arg__2, int charsAdded2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -1803,7 +1803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QPlainTextDocumentLayout::documentSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -1833,7 +1833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::draw(QPainter* arg__1, const QAbstractTextDocumentLayout::PaintContext& arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -1852,7 +1852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::drawInlineObject(QPainter* painter0, const QRectF& rect1, QTextInlineObject object2, int posInDocument3, const QTextFormat& format4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -1871,7 +1871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextDocumentLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1901,7 +1901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextDocumentLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1931,7 +1931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QPlainTextDocumentLayout::frameBoundingRect(QTextFrame* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -1961,7 +1961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextDocumentLayout::hitTest(const QPointF& arg__1, Qt::HitTestAccuracy arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -1991,7 +1991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextDocumentLayout::pageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2021,7 +2021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::positionInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -2040,7 +2040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::resizeInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -2059,7 +2059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2143,7 +2143,7 @@ PythonQtShell_QPlainTextEdit::~PythonQtShell_QPlainTextEdit() { void PythonQtShell_QPlainTextEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2162,7 +2162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -2192,7 +2192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2211,7 +2211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2230,7 +2230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2249,7 +2249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2268,7 +2268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QPlainTextEdit::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -2298,7 +2298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2317,7 +2317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2347,7 +2347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -2366,7 +2366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2385,7 +2385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2404,7 +2404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2423,7 +2423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2442,7 +2442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2461,7 +2461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2491,7 +2491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2521,7 +2521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2540,7 +2540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2570,7 +2570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2589,7 +2589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2619,7 +2619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2649,7 +2649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2668,7 +2668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2687,7 +2687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2706,7 +2706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2736,7 +2736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -2755,7 +2755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2774,7 +2774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2793,7 +2793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2812,7 +2812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPlainTextEdit::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -2842,7 +2842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2872,7 +2872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2891,7 +2891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2910,7 +2910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2929,7 +2929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2948,7 +2948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2967,7 +2967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2997,7 +2997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPlainTextEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3027,7 +3027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3046,7 +3046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPlainTextEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3076,7 +3076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3095,7 +3095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3114,7 +3114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3133,7 +3133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPlainTextEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3163,7 +3163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3182,7 +3182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3201,7 +3201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3220,7 +3220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3250,7 +3250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPlainTextEdit::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3280,7 +3280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4016,7 +4016,7 @@ PythonQtShell_QPrintDialog::~PythonQtShell_QPrintDialog() { void PythonQtShell_QPrintDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4035,7 +4035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4054,7 +4054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4073,7 +4073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4092,7 +4092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4111,7 +4111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4130,7 +4130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4149,7 +4149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4179,7 +4179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4198,7 +4198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4217,7 +4217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4236,7 +4236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4255,7 +4255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4274,7 +4274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4293,7 +4293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4323,7 +4323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4353,7 +4353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4383,7 +4383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4402,7 +4402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4432,7 +4432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4451,7 +4451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4481,7 +4481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4511,7 +4511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4530,7 +4530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4549,7 +4549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4568,7 +4568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4598,7 +4598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4617,7 +4617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4636,7 +4636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4655,7 +4655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4685,7 +4685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4704,7 +4704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4723,7 +4723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4742,7 +4742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4761,7 +4761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4780,7 +4780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4810,7 +4810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4829,7 +4829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrintDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4859,7 +4859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4878,7 +4878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrintDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4908,7 +4908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4927,7 +4927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4946,7 +4946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrintDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4976,7 +4976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4995,7 +4995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5014,7 +5014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5033,7 +5033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5121,7 +5121,7 @@ PythonQtShell_QPrintEngine::~PythonQtShell_QPrintEngine() { bool PythonQtShell_QPrintEngine::abort() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5151,7 +5151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintEngine::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5181,7 +5181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintEngine::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5211,7 +5211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPrinter::PrinterState PythonQtShell_QPrintEngine::printerState() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("printerState"); + static PyObject* name = PyUnicode_FromString("printerState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPrinter::PrinterState"}; @@ -5241,7 +5241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintEngine::property(QPrintEngine::PrintEnginePropertyKey key0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QPrintEngine::PrintEnginePropertyKey"}; @@ -5271,7 +5271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintEngine::setProperty(QPrintEngine::PrintEnginePropertyKey key0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPrintEngine::PrintEnginePropertyKey" , "const QVariant&"}; @@ -5330,7 +5330,7 @@ PythonQtShell_QPrintPreviewDialog::~PythonQtShell_QPrintPreviewDialog() { void PythonQtShell_QPrintPreviewDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5349,7 +5349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5368,7 +5368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5387,7 +5387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5406,7 +5406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5425,7 +5425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5463,7 +5463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5493,7 +5493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5512,7 +5512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5531,7 +5531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5550,7 +5550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5569,7 +5569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5588,7 +5588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5607,7 +5607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5637,7 +5637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5667,7 +5667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5697,7 +5697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5716,7 +5716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5746,7 +5746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5765,7 +5765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5795,7 +5795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5825,7 +5825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5844,7 +5844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5863,7 +5863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5882,7 +5882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintPreviewDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5912,7 +5912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5931,7 +5931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5950,7 +5950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5969,7 +5969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5999,7 +5999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6018,7 +6018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6037,7 +6037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6056,7 +6056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6075,7 +6075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6094,7 +6094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6124,7 +6124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6143,7 +6143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrintPreviewDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6173,7 +6173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6192,7 +6192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrintPreviewDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6222,7 +6222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6241,7 +6241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6260,7 +6260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrintPreviewDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6290,7 +6290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6309,7 +6309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6328,7 +6328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6347,7 +6347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6405,7 +6405,7 @@ PythonQtShell_QPrintPreviewWidget::~PythonQtShell_QPrintPreviewWidget() { void PythonQtShell_QPrintPreviewWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6424,7 +6424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6443,7 +6443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6462,7 +6462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6481,7 +6481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6500,7 +6500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6519,7 +6519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6549,7 +6549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6568,7 +6568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6587,7 +6587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6606,7 +6606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6625,7 +6625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6644,7 +6644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6674,7 +6674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6704,7 +6704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6723,7 +6723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6753,7 +6753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6772,7 +6772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6802,7 +6802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6832,7 +6832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6851,7 +6851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6870,7 +6870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6889,7 +6889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintPreviewWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6919,7 +6919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6938,7 +6938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6957,7 +6957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6976,7 +6976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7006,7 +7006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPrintPreviewWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7036,7 +7036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7055,7 +7055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7074,7 +7074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7093,7 +7093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7112,7 +7112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7131,7 +7131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7161,7 +7161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrintPreviewWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7191,7 +7191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7210,7 +7210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrintPreviewWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7240,7 +7240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7259,7 +7259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrintPreviewWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7289,7 +7289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7308,7 +7308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPrintPreviewWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7338,7 +7338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7357,7 +7357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7376,7 +7376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7444,7 +7444,7 @@ PythonQtShell_QPrinter::~PythonQtShell_QPrinter() { int PythonQtShell_QPrinter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7474,7 +7474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7493,7 +7493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrinter::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7523,7 +7523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrinter::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7553,7 +7553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrinter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7583,7 +7583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrinter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7613,7 +7613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::setMargins(const QPagedPaintDevice::Margins& m0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -7632,7 +7632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::setPageSize(QPagedPaintDevice::PageSize arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -7651,7 +7651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -7670,7 +7670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrinter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8113,7 +8113,7 @@ PythonQtShell_QProgressBar::~PythonQtShell_QProgressBar() { void PythonQtShell_QProgressBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8132,7 +8132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8151,7 +8151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8170,7 +8170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8189,7 +8189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8208,7 +8208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8227,7 +8227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8257,7 +8257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8276,7 +8276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8295,7 +8295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8314,7 +8314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8333,7 +8333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8352,7 +8352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8382,7 +8382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8412,7 +8412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8431,7 +8431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8461,7 +8461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8480,7 +8480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8510,7 +8510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8540,7 +8540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8559,7 +8559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8578,7 +8578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8597,7 +8597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QProgressBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8627,7 +8627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8646,7 +8646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8665,7 +8665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8684,7 +8684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8714,7 +8714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8733,7 +8733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8752,7 +8752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8771,7 +8771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8790,7 +8790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8809,7 +8809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8839,7 +8839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QProgressBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8869,7 +8869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8888,7 +8888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QProgressBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8918,7 +8918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8937,7 +8937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QProgressBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8967,7 +8967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8986,7 +8986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9005,7 +9005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QProgressBar::text() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("text"); + static PyObject* name = PyUnicode_FromString("text"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -9035,7 +9035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9054,7 +9054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9183,7 +9183,7 @@ PythonQtShell_QProgressDialog::~PythonQtShell_QProgressDialog() { void PythonQtShell_QProgressDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9202,7 +9202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9221,7 +9221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9240,7 +9240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9259,7 +9259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9278,7 +9278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9297,7 +9297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9316,7 +9316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9346,7 +9346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9365,7 +9365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9384,7 +9384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9403,7 +9403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9422,7 +9422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9441,7 +9441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9460,7 +9460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9490,7 +9490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9520,7 +9520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9550,7 +9550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9569,7 +9569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9599,7 +9599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9618,7 +9618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9648,7 +9648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9678,7 +9678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9697,7 +9697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9716,7 +9716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9735,7 +9735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QProgressDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9765,7 +9765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9784,7 +9784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9803,7 +9803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9822,7 +9822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9852,7 +9852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9871,7 +9871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9890,7 +9890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9909,7 +9909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9928,7 +9928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9947,7 +9947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9977,7 +9977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9996,7 +9996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QProgressDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10026,7 +10026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10045,7 +10045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QProgressDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10075,7 +10075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10094,7 +10094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10113,7 +10113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QProgressDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10143,7 +10143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10162,7 +10162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10181,7 +10181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10200,7 +10200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10333,7 +10333,7 @@ PythonQtShell_QProxyStyle::~PythonQtShell_QProxyStyle() { void PythonQtShell_QProxyStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10352,7 +10352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10371,7 +10371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawComplexControl(QStyle::ComplexControl control0, const QStyleOptionComplex* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -10390,7 +10390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -10409,7 +10409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -10428,7 +10428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -10447,7 +10447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawPrimitive(QStyle::PrimitiveElement element0, const QStyleOption* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -10466,7 +10466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProxyStyle::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10496,7 +10496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProxyStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10526,7 +10526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -10556,7 +10556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QProxyStyle::hitTestComplexControl(QStyle::ComplexControl control0, const QStyleOptionComplex* option1, const QPoint& pos2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -10586,7 +10586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -10616,7 +10616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -10646,7 +10646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::pixelMetric(QStyle::PixelMetric metric0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -10676,7 +10676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -10695,7 +10695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QPalette& pal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -10714,7 +10714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10733,7 +10733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QProxyStyle::sizeFromContents(QStyle::ContentsType type0, const QStyleOption* option1, const QSize& size2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -10763,7 +10763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QProxyStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -10793,7 +10793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QProxyStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -10823,7 +10823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QProxyStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -10853,7 +10853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::styleHint(QStyle::StyleHint hint0, const QStyleOption* option1, const QWidget* widget2, QStyleHintReturn* returnData3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -10883,7 +10883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -10913,7 +10913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::subElementRect(QStyle::SubElement element0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -10943,7 +10943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10962,7 +10962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::unpolish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -10981,7 +10981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::unpolish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11140,7 +11140,7 @@ PythonQtShell_QPushButton::~PythonQtShell_QPushButton() { void PythonQtShell_QPushButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11159,7 +11159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11178,7 +11178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11197,7 +11197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11216,7 +11216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11235,7 +11235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11254,7 +11254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11273,7 +11273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11303,7 +11303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11322,7 +11322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11341,7 +11341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11360,7 +11360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11379,7 +11379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11398,7 +11398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11428,7 +11428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11458,7 +11458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11477,7 +11477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11507,7 +11507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11526,7 +11526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11556,7 +11556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11586,7 +11586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11605,7 +11605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -11635,7 +11635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11654,7 +11654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11673,7 +11673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPushButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11703,7 +11703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11722,7 +11722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11741,7 +11741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11760,7 +11760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11790,7 +11790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11809,7 +11809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11828,7 +11828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11847,7 +11847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11866,7 +11866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11885,7 +11885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11915,7 +11915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11934,7 +11934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPushButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11964,7 +11964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11983,7 +11983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPushButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12013,7 +12013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12032,7 +12032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPushButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12062,7 +12062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12081,7 +12081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12100,7 +12100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12119,7 +12119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12536,7 +12536,7 @@ PythonQtShell_QRadioButton::~PythonQtShell_QRadioButton() { void PythonQtShell_QRadioButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12555,7 +12555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12574,7 +12574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12593,7 +12593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12612,7 +12612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12631,7 +12631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12650,7 +12650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12669,7 +12669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12699,7 +12699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12718,7 +12718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12737,7 +12737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12756,7 +12756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12775,7 +12775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12794,7 +12794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12824,7 +12824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12854,7 +12854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12873,7 +12873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12903,7 +12903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12922,7 +12922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12952,7 +12952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12982,7 +12982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13001,7 +13001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::hitButton(const QPoint& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -13031,7 +13031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13050,7 +13050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13069,7 +13069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QRadioButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13099,7 +13099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13118,7 +13118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13137,7 +13137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13156,7 +13156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13186,7 +13186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13205,7 +13205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13224,7 +13224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13243,7 +13243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13262,7 +13262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13281,7 +13281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13311,7 +13311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13330,7 +13330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QRadioButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13360,7 +13360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13379,7 +13379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QRadioButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13409,7 +13409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13428,7 +13428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QRadioButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13458,7 +13458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13477,7 +13477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13496,7 +13496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13515,7 +13515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13776,7 +13776,7 @@ PythonQtShell_QRegExpValidator::~PythonQtShell_QRegExpValidator() { void PythonQtShell_QRegExpValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13795,7 +13795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13814,7 +13814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegExpValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13844,7 +13844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegExpValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13874,7 +13874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -13893,7 +13893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13912,7 +13912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QRegExpValidator::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -13991,7 +13991,7 @@ PythonQtShell_QRubberBand::~PythonQtShell_QRubberBand() { void PythonQtShell_QRubberBand::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14010,7 +14010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14029,7 +14029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14048,7 +14048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14067,7 +14067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14086,7 +14086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14105,7 +14105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14135,7 +14135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14154,7 +14154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14173,7 +14173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14192,7 +14192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14211,7 +14211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14230,7 +14230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14260,7 +14260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14290,7 +14290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14309,7 +14309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14339,7 +14339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14358,7 +14358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14388,7 +14388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14418,7 +14418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14437,7 +14437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14456,7 +14456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14475,7 +14475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QRubberBand::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14505,7 +14505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14524,7 +14524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14543,7 +14543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14562,7 +14562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14592,7 +14592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QRubberBand::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14622,7 +14622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14641,7 +14641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14660,7 +14660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14679,7 +14679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14698,7 +14698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14717,7 +14717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14747,7 +14747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QRubberBand::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14777,7 +14777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14796,7 +14796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QRubberBand::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14826,7 +14826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14845,7 +14845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QRubberBand::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14875,7 +14875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14894,7 +14894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QRubberBand::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14924,7 +14924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14943,7 +14943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14962,7 +14962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp index e1b5f0295..b16c9ea3b 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp @@ -230,7 +230,7 @@ PythonQtShell_QScrollArea::~PythonQtShell_QScrollArea() { void PythonQtShell_QScrollArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -249,7 +249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -268,7 +268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -287,7 +287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -306,7 +306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -325,7 +325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -344,7 +344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -393,7 +393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -412,7 +412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -431,7 +431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -450,7 +450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -469,7 +469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -499,7 +499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -529,7 +529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -548,7 +548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -578,7 +578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -597,7 +597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -627,7 +627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -657,7 +657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -676,7 +676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -695,7 +695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -714,7 +714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QScrollArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -744,7 +744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -763,7 +763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -782,7 +782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -801,7 +801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -831,7 +831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -850,7 +850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -869,7 +869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -888,7 +888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -907,7 +907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -926,7 +926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -956,7 +956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QScrollArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1005,7 +1005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QScrollArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1035,7 +1035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1054,7 +1054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1073,7 +1073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1092,7 +1092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QScrollArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1122,7 +1122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1141,7 +1141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1160,7 +1160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1179,7 +1179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1209,7 +1209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QScrollArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1239,7 +1239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1343,7 +1343,7 @@ PythonQtShell_QScrollBar::~PythonQtShell_QScrollBar() { void PythonQtShell_QScrollBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1362,7 +1362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1381,7 +1381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1400,7 +1400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1419,7 +1419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1438,7 +1438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1457,7 +1457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1487,7 +1487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1506,7 +1506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1525,7 +1525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1544,7 +1544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1563,7 +1563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1582,7 +1582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1612,7 +1612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1642,7 +1642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1661,7 +1661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1691,7 +1691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1710,7 +1710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1789,7 +1789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1808,7 +1808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1827,7 +1827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QScrollBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1857,7 +1857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1876,7 +1876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1895,7 +1895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1914,7 +1914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1944,7 +1944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QScrollBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1974,7 +1974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1993,7 +1993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2012,7 +2012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2031,7 +2031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2050,7 +2050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2069,7 +2069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2099,7 +2099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QScrollBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2129,7 +2129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2148,7 +2148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QScrollBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2178,7 +2178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2197,7 +2197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QScrollBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2227,7 +2227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2246,7 +2246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2265,7 +2265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2284,7 +2284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2662,7 +2662,7 @@ PythonQtShell_QShortcut::~PythonQtShell_QShortcut() { void PythonQtShell_QShortcut::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2681,7 +2681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QShortcut::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2700,7 +2700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QShortcut::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2730,7 +2730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QShortcut::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2760,7 +2760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QShortcut::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2889,7 +2889,7 @@ PythonQtShell_QSizeGrip::~PythonQtShell_QSizeGrip() { void PythonQtShell_QSizeGrip::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2908,7 +2908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2927,7 +2927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2946,7 +2946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3071,7 +3071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3090,7 +3090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3109,7 +3109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3128,7 +3128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3188,7 +3188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3237,7 +3237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3286,7 +3286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3316,7 +3316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::hideEvent(QHideEvent* hideEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3335,7 +3335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3354,7 +3354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3373,7 +3373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSizeGrip::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3403,7 +3403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3422,7 +3422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3441,7 +3441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3460,7 +3460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3490,7 +3490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSizeGrip::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3520,7 +3520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3539,7 +3539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3558,7 +3558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3577,7 +3577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseReleaseEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3596,7 +3596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::moveEvent(QMoveEvent* moveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3615,7 +3615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3645,7 +3645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSizeGrip::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3675,7 +3675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3694,7 +3694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSizeGrip::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3724,7 +3724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3743,7 +3743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSizeGrip::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3773,7 +3773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3792,7 +3792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3811,7 +3811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3830,7 +3830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3914,7 +3914,7 @@ PythonQtShell_QSlider::~PythonQtShell_QSlider() { void PythonQtShell_QSlider::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3933,7 +3933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3952,7 +3952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3971,7 +3971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3990,7 +3990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4009,7 +4009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4028,7 +4028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4058,7 +4058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4077,7 +4077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4096,7 +4096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4115,7 +4115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4134,7 +4134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4153,7 +4153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4183,7 +4183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4213,7 +4213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4232,7 +4232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4262,7 +4262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4281,7 +4281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4311,7 +4311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4341,7 +4341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4360,7 +4360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4379,7 +4379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4398,7 +4398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4428,7 +4428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4447,7 +4447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4466,7 +4466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4485,7 +4485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4515,7 +4515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4534,7 +4534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4553,7 +4553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4572,7 +4572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4591,7 +4591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4610,7 +4610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4640,7 +4640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSlider::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4670,7 +4670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::paintEvent(QPaintEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4689,7 +4689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSlider::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4719,7 +4719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4738,7 +4738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSlider::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4768,7 +4768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4787,7 +4787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4806,7 +4806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4825,7 +4825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4918,7 +4918,7 @@ PythonQtShell_QSortFilterProxyModel::~PythonQtShell_QSortFilterProxyModel() { QModelIndex PythonQtShell_QSortFilterProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -4948,7 +4948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -4978,7 +4978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5008,7 +5008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5027,7 +5027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSortFilterProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5057,7 +5057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5076,7 +5076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSortFilterProxyModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5106,7 +5106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5136,7 +5136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5166,7 +5166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5196,7 +5196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5215,7 +5215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::filterAcceptsColumn(int source_column0, const QModelIndex& source_parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("filterAcceptsColumn"); + static PyObject* name = PyUnicode_FromString("filterAcceptsColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -5245,7 +5245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::filterAcceptsRow(int source_row0, const QModelIndex& source_parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("filterAcceptsRow"); + static PyObject* name = PyUnicode_FromString("filterAcceptsRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -5275,7 +5275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSortFilterProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -5305,7 +5305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5335,7 +5335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSortFilterProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -5365,7 +5365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5425,7 +5425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5455,7 +5455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSortFilterProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -5485,7 +5485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::lessThan(const QModelIndex& left0, const QModelIndex& right1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lessThan"); + static PyObject* name = PyUnicode_FromString("lessThan"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QModelIndex&"}; @@ -5515,7 +5515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5545,7 +5545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection& sourceSelection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -5575,7 +5575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionToSource(const QItemSelection& proxySelection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -5605,7 +5605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5635,7 +5635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSortFilterProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -5665,7 +5665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSortFilterProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -5695,7 +5695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSortFilterProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5725,7 +5725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5755,7 +5755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5785,7 +5785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5815,7 +5815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5845,7 +5845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5875,7 +5875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5894,7 +5894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSortFilterProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -5924,7 +5924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSortFilterProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5954,7 +5954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -5984,7 +5984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -6014,7 +6014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -6044,7 +6044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -6063,7 +6063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6093,7 +6093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -6112,7 +6112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSortFilterProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -6142,7 +6142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6172,7 +6172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -6202,7 +6202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -6232,7 +6232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6521,7 +6521,7 @@ PythonQtShell_QSound::~PythonQtShell_QSound() { void PythonQtShell_QSound::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6540,7 +6540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSound::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6559,7 +6559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSound::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6589,7 +6589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSound::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6619,7 +6619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSound::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6678,7 +6678,7 @@ PythonQtShell_QSpacerItem::~PythonQtShell_QSpacerItem() { QSizePolicy::ControlTypes PythonQtShell_QSpacerItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -6708,7 +6708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QSpacerItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -6738,7 +6738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QSpacerItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -6768,7 +6768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpacerItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6798,7 +6798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpacerItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6828,7 +6828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpacerItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6847,7 +6847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpacerItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6877,7 +6877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QSpacerItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -6907,7 +6907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6937,7 +6937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpacerItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6967,7 +6967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6997,7 +6997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpacerItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7016,7 +7016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7046,7 +7046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QSpacerItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -7076,7 +7076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QSpacerItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -7161,7 +7161,7 @@ PythonQtShell_QSpinBox::~PythonQtShell_QSpinBox() { void PythonQtShell_QSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7180,7 +7180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7199,7 +7199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7218,7 +7218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7237,7 +7237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7256,7 +7256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7275,7 +7275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7294,7 +7294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7324,7 +7324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7343,7 +7343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7362,7 +7362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7381,7 +7381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7400,7 +7400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7419,7 +7419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7449,7 +7449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7479,7 +7479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::fixup(QString& str0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -7498,7 +7498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7517,7 +7517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7547,7 +7547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7566,7 +7566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7596,7 +7596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7626,7 +7626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7645,7 +7645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7664,7 +7664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7683,7 +7683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7713,7 +7713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7732,7 +7732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7751,7 +7751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7770,7 +7770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7800,7 +7800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7819,7 +7819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7838,7 +7838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7857,7 +7857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7876,7 +7876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7895,7 +7895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7925,7 +7925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7955,7 +7955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7974,7 +7974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8004,7 +8004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8023,7 +8023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8053,7 +8053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8072,7 +8072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8091,7 +8091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -8121,7 +8121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8140,7 +8140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSpinBox::textFromValue(int val0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -8170,7 +8170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8189,7 +8189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -8219,7 +8219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::valueFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -8249,7 +8249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8368,7 +8368,7 @@ PythonQtShell_QSplashScreen::~PythonQtShell_QSplashScreen() { void PythonQtShell_QSplashScreen::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8387,7 +8387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8406,7 +8406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8425,7 +8425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8444,7 +8444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8463,7 +8463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8482,7 +8482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8512,7 +8512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8531,7 +8531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8550,7 +8550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8569,7 +8569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::drawContents(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawContents"); + static PyObject* name = PyUnicode_FromString("drawContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8588,7 +8588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8607,7 +8607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8626,7 +8626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8656,7 +8656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8686,7 +8686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8705,7 +8705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8735,7 +8735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8754,7 +8754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8784,7 +8784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8814,7 +8814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8833,7 +8833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8852,7 +8852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8871,7 +8871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplashScreen::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8901,7 +8901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8920,7 +8920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8939,7 +8939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8958,7 +8958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8988,7 +8988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplashScreen::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9018,7 +9018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9037,7 +9037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9056,7 +9056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9075,7 +9075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9094,7 +9094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9113,7 +9113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9143,7 +9143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplashScreen::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9173,7 +9173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9192,7 +9192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplashScreen::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9222,7 +9222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9241,7 +9241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplashScreen::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9271,7 +9271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9290,7 +9290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplashScreen::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9320,7 +9320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9339,7 +9339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9358,7 +9358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9421,7 +9421,7 @@ PythonQtShell_QSplitter::~PythonQtShell_QSplitter() { void PythonQtShell_QSplitter::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9440,7 +9440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9459,7 +9459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9478,7 +9478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9497,7 +9497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9516,7 +9516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSplitterHandle* PythonQtShell_QSplitter::createHandle() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createHandle"); + static PyObject* name = PyUnicode_FromString("createHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSplitterHandle*"}; @@ -9546,7 +9546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9565,7 +9565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9595,7 +9595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9614,7 +9614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9633,7 +9633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9652,7 +9652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9671,7 +9671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9690,7 +9690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9720,7 +9720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9750,7 +9750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9769,7 +9769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9799,7 +9799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9818,7 +9818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9848,7 +9848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9878,7 +9878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9897,7 +9897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9916,7 +9916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9935,7 +9935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplitter::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9965,7 +9965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9984,7 +9984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10003,7 +10003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10022,7 +10022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10052,7 +10052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10071,7 +10071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10090,7 +10090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10109,7 +10109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10128,7 +10128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10147,7 +10147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10177,7 +10177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplitter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10207,7 +10207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10226,7 +10226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplitter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10256,7 +10256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10275,7 +10275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplitter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10305,7 +10305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10324,7 +10324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10343,7 +10343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10362,7 +10362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10565,7 +10565,7 @@ PythonQtShell_QSplitterHandle::~PythonQtShell_QSplitterHandle() { void PythonQtShell_QSplitterHandle::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10584,7 +10584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10603,7 +10603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10622,7 +10622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10641,7 +10641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10660,7 +10660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10679,7 +10679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10709,7 +10709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10728,7 +10728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10747,7 +10747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10766,7 +10766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10785,7 +10785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10804,7 +10804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10834,7 +10834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10864,7 +10864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10883,7 +10883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10913,7 +10913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10932,7 +10932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10962,7 +10962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10992,7 +10992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11011,7 +11011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11030,7 +11030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11049,7 +11049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplitterHandle::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11079,7 +11079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11098,7 +11098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11117,7 +11117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11136,7 +11136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11166,7 +11166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplitterHandle::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11196,7 +11196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11215,7 +11215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11234,7 +11234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11253,7 +11253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11272,7 +11272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11291,7 +11291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11321,7 +11321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplitterHandle::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11351,7 +11351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11370,7 +11370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplitterHandle::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11400,7 +11400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11419,7 +11419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplitterHandle::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11449,7 +11449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11468,7 +11468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11487,7 +11487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11506,7 +11506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11600,7 +11600,7 @@ PythonQtShell_QStackedLayout::~PythonQtShell_QStackedLayout() { void PythonQtShell_QStackedLayout::addItem(QLayoutItem* item0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -11619,7 +11619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11638,7 +11638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QStackedLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -11668,7 +11668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11698,7 +11698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11717,7 +11717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11747,7 +11747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11777,7 +11777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QStackedLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -11807,7 +11807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStackedLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -11837,7 +11837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -11867,7 +11867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11886,7 +11886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11916,7 +11916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QStackedLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -11946,7 +11946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QStackedLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -11976,7 +11976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12006,7 +12006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12036,7 +12036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::setGeometry(const QRect& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -12055,7 +12055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QStackedLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -12085,7 +12085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12207,7 +12207,7 @@ PythonQtShell_QStackedWidget::~PythonQtShell_QStackedWidget() { void PythonQtShell_QStackedWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12226,7 +12226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12245,7 +12245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12264,7 +12264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12283,7 +12283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12302,7 +12302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12321,7 +12321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12351,7 +12351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12370,7 +12370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12389,7 +12389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12408,7 +12408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12427,7 +12427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12446,7 +12446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12476,7 +12476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12506,7 +12506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12525,7 +12525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12555,7 +12555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12574,7 +12574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12604,7 +12604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12634,7 +12634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12653,7 +12653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12672,7 +12672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12691,7 +12691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStackedWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12721,7 +12721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12740,7 +12740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12759,7 +12759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12778,7 +12778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12808,7 +12808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12838,7 +12838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12857,7 +12857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12876,7 +12876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12895,7 +12895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12914,7 +12914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12933,7 +12933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12963,7 +12963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QStackedWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12993,7 +12993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13012,7 +13012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QStackedWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13042,7 +13042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13061,7 +13061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QStackedWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13091,7 +13091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13110,7 +13110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13129,7 +13129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13148,7 +13148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13222,7 +13222,7 @@ PythonQtShell_QStandardItem::~PythonQtShell_QStandardItem() { QStandardItem* PythonQtShell_QStandardItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStandardItem*"}; @@ -13252,7 +13252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -13282,7 +13282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItem::__lt__(const QStandardItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QStandardItem&"}; @@ -13312,7 +13312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -13331,7 +13331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::setData(const QVariant& value0, int role1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&" , "int"}; @@ -13350,7 +13350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13380,7 +13380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -13825,7 +13825,7 @@ PythonQtShell_QStandardItemModel::~PythonQtShell_QStandardItemModel() { QModelIndex PythonQtShell_QStandardItemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -13855,7 +13855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -13885,7 +13885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -13915,7 +13915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13934,7 +13934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13964,7 +13964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13983,7 +13983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -14013,7 +14013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14043,7 +14043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14073,7 +14073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14103,7 +14103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14122,7 +14122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QStandardItemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -14152,7 +14152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14182,7 +14182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -14212,7 +14212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14242,7 +14242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14272,7 +14272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14302,7 +14302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QStandardItemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -14332,7 +14332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QStandardItemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -14362,7 +14362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QStandardItemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -14392,7 +14392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QStandardItemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -14422,7 +14422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -14452,7 +14452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -14482,7 +14482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -14512,7 +14512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14542,7 +14542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14572,7 +14572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14591,7 +14591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QStandardItemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -14621,7 +14621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -14651,7 +14651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -14681,7 +14681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -14711,7 +14711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -14741,7 +14741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14771,7 +14771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -14790,7 +14790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStandardItemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -14820,7 +14820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14850,7 +14850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStandardItemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -14880,7 +14880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStandardItemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -14910,7 +14910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15307,7 +15307,7 @@ PythonQtShell_QStatusBar::~PythonQtShell_QStatusBar() { void PythonQtShell_QStatusBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15326,7 +15326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15345,7 +15345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15364,7 +15364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15383,7 +15383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15402,7 +15402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15421,7 +15421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15451,7 +15451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -15470,7 +15470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -15489,7 +15489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -15508,7 +15508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -15527,7 +15527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15546,7 +15546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15576,7 +15576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15606,7 +15606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15625,7 +15625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15655,7 +15655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15674,7 +15674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15704,7 +15704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15734,7 +15734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15753,7 +15753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15772,7 +15772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15791,7 +15791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStatusBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15821,7 +15821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15840,7 +15840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15859,7 +15859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15878,7 +15878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15908,7 +15908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStatusBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15938,7 +15938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15957,7 +15957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15976,7 +15976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15995,7 +15995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16014,7 +16014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16033,7 +16033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16063,7 +16063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QStatusBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16093,7 +16093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16112,7 +16112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QStatusBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16142,7 +16142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16161,7 +16161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QStatusBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16191,7 +16191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16210,7 +16210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStatusBar::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16240,7 +16240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16259,7 +16259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16278,7 +16278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16388,7 +16388,7 @@ PythonQtShell_QStringListModel::~PythonQtShell_QStringListModel() { QModelIndex PythonQtShell_QStringListModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -16418,7 +16418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -16448,7 +16448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -16478,7 +16478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16497,7 +16497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16516,7 +16516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStringListModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -16546,7 +16546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -16576,7 +16576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16606,7 +16606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16636,7 +16636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -16655,7 +16655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QStringListModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -16685,7 +16685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStringListModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -16715,7 +16715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStringListModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -16745,7 +16745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -16775,7 +16775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -16805,7 +16805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QStringListModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -16835,7 +16835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QStringListModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -16865,7 +16865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QStringListModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -16895,7 +16895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QStringListModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -16925,7 +16925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -16955,7 +16955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -16985,7 +16985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17015,7 +17015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17045,7 +17045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17064,7 +17064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QStringListModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -17094,7 +17094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStringListModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -17124,7 +17124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -17154,7 +17154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -17184,7 +17184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -17214,7 +17214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStringListModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -17244,7 +17244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -17263,7 +17263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStringListModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -17293,7 +17293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17323,7 +17323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStringListModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -17353,7 +17353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStringListModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -17383,7 +17383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17471,7 +17471,7 @@ PythonQtShell_QStyle::~PythonQtShell_QStyle() { void PythonQtShell_QStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17490,7 +17490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17509,7 +17509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QPainter* p2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -17528,7 +17528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -17547,7 +17547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -17566,7 +17566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -17585,7 +17585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawPrimitive(QStyle::PrimitiveElement pe0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -17604,7 +17604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17634,7 +17634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17664,7 +17664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -17694,7 +17694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QStyle::hitTestComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, const QPoint& pt2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -17724,7 +17724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -17754,7 +17754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::itemTextRect(const QFontMetrics& fm0, const QRect& r1, int flags2, bool enabled3, const QString& text4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemTextRect"); + static PyObject* name = PyUnicode_FromString("itemTextRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QFontMetrics&" , "const QRect&" , "int" , "bool" , "const QString&"}; @@ -17784,7 +17784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -17814,7 +17814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::pixelMetric(QStyle::PixelMetric metric0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -17844,7 +17844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QApplication* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -17863,7 +17863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QPalette& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -17882,7 +17882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QWidget* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -17901,7 +17901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStyle::sizeFromContents(QStyle::ContentsType ct0, const QStyleOption* opt1, const QSize& contentsSize2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -17931,7 +17931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -17961,7 +17961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -17991,7 +17991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -18021,7 +18021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::styleHint(QStyle::StyleHint stylehint0, const QStyleOption* opt1, const QWidget* widget2, QStyleHintReturn* returnData3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -18051,7 +18051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -18081,7 +18081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::subElementRect(QStyle::SubElement subElement0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -18111,7 +18111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18130,7 +18130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::unpolish(QApplication* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -18149,7 +18149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::unpolish(QWidget* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp index 270bde0ff..48a35aa22 100644 --- a/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp @@ -270,7 +270,7 @@ PythonQtShell_QStylePlugin::~PythonQtShell_QStylePlugin() { void PythonQtShell_QStylePlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -289,7 +289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle* PythonQtShell_QStylePlugin::create(const QString& key0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle*" , "const QString&"}; @@ -319,7 +319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStylePlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -338,7 +338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStylePlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -368,7 +368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStylePlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -398,7 +398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStylePlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -432,7 +432,7 @@ PythonQtShell_QStyledItemDelegate::~PythonQtShell_QStyledItemDelegate() { void PythonQtShell_QStyledItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -451,7 +451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QStyledItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -500,7 +500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -519,7 +519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QStyledItemDelegate::displayText(const QVariant& value0, const QLocale& locale1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("displayText"); + static PyObject* name = PyUnicode_FromString("displayText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QVariant&" , "const QLocale&"}; @@ -549,7 +549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -609,7 +609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -639,7 +639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -669,7 +669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::initStyleOption(QStyleOptionViewItem* option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOptionViewItem*" , "const QModelIndex&"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -707,7 +707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QStyledItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -737,7 +737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -756,7 +756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStyledItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -824,7 +824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -913,7 +913,7 @@ PythonQtShell_QSurface::~PythonQtShell_QSurface() { QSurfaceFormat PythonQtShell_QSurface::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -943,7 +943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSurface::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -973,7 +973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPlatformSurface* PythonQtShell_QSurface::surfaceHandle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceHandle"); + static PyObject* name = PyUnicode_FromString("surfaceHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPlatformSurface*"}; @@ -1003,7 +1003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QSurface::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -1244,7 +1244,7 @@ PythonQtShell_QSwipeGesture::~PythonQtShell_QSwipeGesture() { void PythonQtShell_QSwipeGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1263,7 +1263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSwipeGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1282,7 +1282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSwipeGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1312,7 +1312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSwipeGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1342,7 +1342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSwipeGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1391,7 +1391,7 @@ PythonQtShell_QSyntaxHighlighter::~PythonQtShell_QSyntaxHighlighter() { void PythonQtShell_QSyntaxHighlighter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1410,7 +1410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1429,7 +1429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSyntaxHighlighter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1459,7 +1459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSyntaxHighlighter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1489,7 +1489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::highlightBlock(const QString& text0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("highlightBlock"); + static PyObject* name = PyUnicode_FromString("highlightBlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1508,7 +1508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1606,7 +1606,7 @@ PythonQtShell_QSystemTrayIcon::~PythonQtShell_QSystemTrayIcon() { void PythonQtShell_QSystemTrayIcon::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1625,7 +1625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSystemTrayIcon::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1644,7 +1644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSystemTrayIcon::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1674,7 +1674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSystemTrayIcon::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1704,7 +1704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSystemTrayIcon::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1797,7 +1797,7 @@ PythonQtShell_QTabBar::~PythonQtShell_QTabBar() { void PythonQtShell_QTabBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1816,7 +1816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1835,7 +1835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1854,7 +1854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1873,7 +1873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1892,7 +1892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1911,7 +1911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1941,7 +1941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1960,7 +1960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1979,7 +1979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1998,7 +1998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2017,7 +2017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2036,7 +2036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2066,7 +2066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2096,7 +2096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2115,7 +2115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2145,7 +2145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2164,7 +2164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2194,7 +2194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2224,7 +2224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2243,7 +2243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2262,7 +2262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2281,7 +2281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTabBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2311,7 +2311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2330,7 +2330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2349,7 +2349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2368,7 +2368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2398,7 +2398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTabBar::minimumTabSizeHint(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumTabSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumTabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2428,7 +2428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2447,7 +2447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2466,7 +2466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2485,7 +2485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2504,7 +2504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2523,7 +2523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2553,7 +2553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTabBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2583,7 +2583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2602,7 +2602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTabBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2632,7 +2632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2651,7 +2651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTabBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2681,7 +2681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2700,7 +2700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2719,7 +2719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabLayoutChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabLayoutChange"); + static PyObject* name = PyUnicode_FromString("tabLayoutChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2738,7 +2738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2757,7 +2757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTabBar::tabSizeHint(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabSizeHint"); + static PyObject* name = PyUnicode_FromString("tabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2787,7 +2787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2806,7 +2806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2825,7 +2825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3179,7 +3179,7 @@ PythonQtShell_QTabWidget::~PythonQtShell_QTabWidget() { void PythonQtShell_QTabWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3198,7 +3198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3217,7 +3217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3236,7 +3236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3255,7 +3255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3274,7 +3274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3293,7 +3293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3323,7 +3323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3342,7 +3342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3361,7 +3361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3380,7 +3380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3399,7 +3399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3418,7 +3418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3448,7 +3448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3478,7 +3478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3497,7 +3497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3527,7 +3527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3546,7 +3546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3576,7 +3576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::heightForWidth(int width0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3606,7 +3606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3625,7 +3625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3644,7 +3644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3663,7 +3663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTabWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3693,7 +3693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3712,7 +3712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3731,7 +3731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3750,7 +3750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3780,7 +3780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3799,7 +3799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3837,7 +3837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3856,7 +3856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3875,7 +3875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTabWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3935,7 +3935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3954,7 +3954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTabWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3984,7 +3984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4003,7 +4003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTabWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4033,7 +4033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4052,7 +4052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4071,7 +4071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4090,7 +4090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4109,7 +4109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4128,7 +4128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4427,7 +4427,7 @@ PythonQtShell_QTableView::~PythonQtShell_QTableView() { void PythonQtShell_QTableView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4446,7 +4446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4465,7 +4465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4484,7 +4484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -4503,7 +4503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4522,7 +4522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4541,7 +4541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4560,7 +4560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -4579,7 +4579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4598,7 +4598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4617,7 +4617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4647,7 +4647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4666,7 +4666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4685,7 +4685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4704,7 +4704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4723,7 +4723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4742,7 +4742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4772,7 +4772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4791,7 +4791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4810,7 +4810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4840,7 +4840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4870,7 +4870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4889,7 +4889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4919,7 +4919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4938,7 +4938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4968,7 +4968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4998,7 +4998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5017,7 +5017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5047,7 +5047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5066,7 +5066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5085,7 +5085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTableView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -5115,7 +5115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5134,7 +5134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5153,7 +5153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5183,7 +5183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5213,7 +5213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5232,7 +5232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5251,7 +5251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5270,7 +5270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5289,7 +5289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5319,7 +5319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5338,7 +5338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5357,7 +5357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5376,7 +5376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTableView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5474,7 +5474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5493,7 +5493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTableView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5523,7 +5523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5542,7 +5542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5561,7 +5561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5580,7 +5580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5599,7 +5599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5618,7 +5618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5637,7 +5637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5656,7 +5656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTableView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5686,7 +5686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5705,7 +5705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTableView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5735,7 +5735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5754,7 +5754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5773,7 +5773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5792,7 +5792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5811,7 +5811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5830,7 +5830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTableView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5860,7 +5860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5879,7 +5879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5909,7 +5909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5939,7 +5939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -5958,7 +5958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5977,7 +5977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5996,7 +5996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6015,7 +6015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6034,7 +6034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6053,7 +6053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6083,7 +6083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6102,7 +6102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6121,7 +6121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTableView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -6151,7 +6151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6181,7 +6181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTableView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6211,7 +6211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTableView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -6241,7 +6241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTableView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6271,7 +6271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6575,7 +6575,7 @@ PythonQtShell_QTableWidget::~PythonQtShell_QTableWidget() { void PythonQtShell_QTableWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6594,7 +6594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6613,7 +6613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6632,7 +6632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -6651,7 +6651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6670,7 +6670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6689,7 +6689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6708,7 +6708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6727,7 +6727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6746,7 +6746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -6765,7 +6765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6795,7 +6795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6814,7 +6814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6833,7 +6833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6852,7 +6852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6871,7 +6871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6890,7 +6890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::dropMimeData(int row0, int column1, const QMimeData* data2, Qt::DropAction action3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -6920,7 +6920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -6950,7 +6950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -6969,7 +6969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6988,7 +6988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7018,7 +7018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7048,7 +7048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7067,7 +7067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7097,7 +7097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7116,7 +7116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7146,7 +7146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7176,7 +7176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7195,7 +7195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7225,7 +7225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7244,7 +7244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7263,7 +7263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTableWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -7293,7 +7293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7312,7 +7312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7331,7 +7331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7361,7 +7361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7391,7 +7391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7410,7 +7410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7429,7 +7429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7448,7 +7448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7467,7 +7467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7497,7 +7497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTableWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -7527,7 +7527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QTableWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7557,7 +7557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7576,7 +7576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7595,7 +7595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7614,7 +7614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7633,7 +7633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7652,7 +7652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7682,7 +7682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTableWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7712,7 +7712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7731,7 +7731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTableWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7761,7 +7761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7780,7 +7780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7799,7 +7799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7818,7 +7818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7837,7 +7837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7856,7 +7856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -7875,7 +7875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7894,7 +7894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTableWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7924,7 +7924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -7943,7 +7943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTableWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -7973,7 +7973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7992,7 +7992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -8011,7 +8011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -8030,7 +8030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8049,7 +8049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTableWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8079,7 +8079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8098,7 +8098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8128,7 +8128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8158,7 +8158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -8177,7 +8177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QTableWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8207,7 +8207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8226,7 +8226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8245,7 +8245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8264,7 +8264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8283,7 +8283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8302,7 +8302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8332,7 +8332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8351,7 +8351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8370,7 +8370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTableWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -8400,7 +8400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8430,7 +8430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTableWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8460,7 +8460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTableWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -8490,7 +8490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTableWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -8520,7 +8520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8803,7 +8803,7 @@ PythonQtShell_QTableWidgetItem::~PythonQtShell_QTableWidgetItem() { QTableWidgetItem* PythonQtShell_QTableWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTableWidgetItem*"}; @@ -8833,7 +8833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableWidgetItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -8863,7 +8863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidgetItem::__lt__(const QTableWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QTableWidgetItem&"}; @@ -8893,7 +8893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -8912,7 +8912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::setData(int role0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -8931,7 +8931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9292,7 +9292,7 @@ PythonQtShell_QTapAndHoldGesture::~PythonQtShell_QTapAndHoldGesture() { void PythonQtShell_QTapAndHoldGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9311,7 +9311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapAndHoldGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9330,7 +9330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapAndHoldGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9360,7 +9360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapAndHoldGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9390,7 +9390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapAndHoldGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9439,7 +9439,7 @@ PythonQtShell_QTapGesture::~PythonQtShell_QTapGesture() { void PythonQtShell_QTapGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9458,7 +9458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9477,7 +9477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9507,7 +9507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9537,7 +9537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9895,7 +9895,7 @@ PythonQtShell_QTextBlockGroup::~PythonQtShell_QTextBlockGroup() { void PythonQtShell_QTextBlockGroup::blockFormatChanged(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -9914,7 +9914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::blockInserted(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -9933,7 +9933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::blockRemoved(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -9952,7 +9952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9971,7 +9971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9990,7 +9990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBlockGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10020,7 +10020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBlockGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10050,7 +10050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp b/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp index 59d39a40a..8ae274b6a 100644 --- a/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +++ b/generated_cpp_50/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp @@ -52,7 +52,7 @@ PythonQtShell_QBitmap::~PythonQtShell_QBitmap() { int PythonQtShell_QBitmap::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -82,7 +82,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBitmap::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -112,7 +112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QBitmap::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1393,7 +1393,7 @@ PythonQtShell_QImage::~PythonQtShell_QImage() { int PythonQtShell_QImage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1423,7 +1423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1442,7 +1442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImage::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1472,7 +1472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QImage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1502,7 +1502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QImage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1532,7 +1532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QImage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2676,7 +2676,7 @@ PythonQtShell_QPixmap::~PythonQtShell_QPixmap() { int PythonQtShell_QPixmap::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2706,7 +2706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPixmap::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2725,7 +2725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPixmap::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2755,7 +2755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPixmap::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2785,7 +2785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPixmap::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2815,7 +2815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPixmap::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp b/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp index b4e76e7ea..10b03a00e 100644 --- a/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +++ b/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp @@ -78,7 +78,7 @@ PythonQtShell_QAbstractVideoBuffer::~PythonQtShell_QAbstractVideoBuffer() { QVariant PythonQtShell_QAbstractVideoBuffer::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -108,7 +108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { uchar* PythonQtShell_QAbstractVideoBuffer::map(QAbstractVideoBuffer::MapMode mode0, int* numBytes1, int* bytesPerLine2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("map"); + static PyObject* name = PyUnicode_FromString("map"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"uchar*" , "QAbstractVideoBuffer::MapMode" , "int*" , "int*"}; @@ -138,7 +138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractVideoBuffer::MapMode PythonQtShell_QAbstractVideoBuffer::mapMode() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapMode"); + static PyObject* name = PyUnicode_FromString("mapMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoBuffer::MapMode"}; @@ -168,7 +168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoBuffer::release() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -187,7 +187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoBuffer::unmap() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unmap"); + static PyObject* name = PyUnicode_FromString("unmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -246,7 +246,7 @@ PythonQtShell_QAbstractVideoSurface::~PythonQtShell_QAbstractVideoSurface() { void PythonQtShell_QAbstractVideoSurface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -265,7 +265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -284,7 +284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -314,7 +314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -344,7 +344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::isFormatSupported(const QVideoSurfaceFormat& format0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVideoSurfaceFormat PythonQtShell_QAbstractVideoSurface::nearestFormat(const QVideoSurfaceFormat& format0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nearestFormat"); + static PyObject* name = PyUnicode_FromString("nearestFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoSurfaceFormat" , "const QVideoSurfaceFormat&"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::present(const QVideoFrame& frame0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("present"); + static PyObject* name = PyUnicode_FromString("present"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoFrame&"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::start(const QVideoSurfaceFormat& format0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::stop() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractVideoSurface::supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedPixelFormats"); + static PyObject* name = PyUnicode_FromString("supportedPixelFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAbstractVideoBuffer::HandleType"}; @@ -513,7 +513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -677,7 +677,7 @@ PythonQtShell_QAudioDecoder::~PythonQtShell_QAudioDecoder() { QMultimedia::AvailabilityStatus PythonQtShell_QAudioDecoder::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -707,7 +707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -737,7 +737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -756,7 +756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QAudioDecoder::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -1360,7 +1360,7 @@ PythonQtShell_QAudioInput::~PythonQtShell_QAudioInput() { void PythonQtShell_QAudioInput::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1379,7 +1379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioInput::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1398,7 +1398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioInput::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioInput::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioInput::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1586,7 +1586,7 @@ PythonQtShell_QAudioOutput::~PythonQtShell_QAudioOutput() { void PythonQtShell_QAudioOutput::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1605,7 +1605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioOutput::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1624,7 +1624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioOutput::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1654,7 +1654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioOutput::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1684,7 +1684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioOutput::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1822,7 +1822,7 @@ PythonQtShell_QAudioProbe::~PythonQtShell_QAudioProbe() { void PythonQtShell_QAudioProbe::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1841,7 +1841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioProbe::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioProbe::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1890,7 +1890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioProbe::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1920,7 +1920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioProbe::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1964,7 +1964,7 @@ PythonQtShell_QAudioRecorder::~PythonQtShell_QAudioRecorder() { void PythonQtShell_QAudioRecorder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1983,7 +1983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioRecorder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2002,7 +2002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2032,7 +2032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2062,7 +2062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QAudioRecorder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2092,7 +2092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioRecorder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2171,7 +2171,7 @@ PythonQtShell_QCamera::~PythonQtShell_QCamera() { QMultimedia::AvailabilityStatus PythonQtShell_QCamera::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -2201,7 +2201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -2231,7 +2231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2250,7 +2250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2299,7 +2299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2329,7 +2329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2359,7 +2359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QCamera::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -2389,7 +2389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2408,7 +2408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -2764,7 +2764,7 @@ PythonQtShell_QCameraImageCapture::~PythonQtShell_QCameraImageCapture() { void PythonQtShell_QCameraImageCapture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2783,7 +2783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraImageCapture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2802,7 +2802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2832,7 +2832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2862,7 +2862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QCameraImageCapture::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2892,7 +2892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::setMediaObject(QMediaObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2922,7 +2922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraImageCapture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3113,7 +3113,7 @@ PythonQtShell_QCameraViewfinder::~PythonQtShell_QCameraViewfinder() { void PythonQtShell_QCameraViewfinder::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3132,7 +3132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3151,7 +3151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3170,7 +3170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3189,7 +3189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3208,7 +3208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3227,7 +3227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3257,7 +3257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3276,7 +3276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3295,7 +3295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3314,7 +3314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3333,7 +3333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3352,7 +3352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3382,7 +3382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3412,7 +3412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3431,7 +3431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3461,7 +3461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3480,7 +3480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3510,7 +3510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3540,7 +3540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3559,7 +3559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3578,7 +3578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3597,7 +3597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCameraViewfinder::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3627,7 +3627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3646,7 +3646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3665,7 +3665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3684,7 +3684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QCameraViewfinder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -3714,7 +3714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3744,7 +3744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCameraViewfinder::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3774,7 +3774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3793,7 +3793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3812,7 +3812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3831,7 +3831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3850,7 +3850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::moveEvent(QMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3869,7 +3869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3899,7 +3899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCameraViewfinder::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3929,7 +3929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3948,7 +3948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCameraViewfinder::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3978,7 +3978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3997,7 +3997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4027,7 +4027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCameraViewfinder::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4057,7 +4057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4076,7 +4076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4095,7 +4095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4114,7 +4114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4153,7 +4153,7 @@ PythonQtShell_QGraphicsVideoItem::~PythonQtShell_QGraphicsVideoItem() { void PythonQtShell_QGraphicsVideoItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4172,7 +4172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsVideoItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4191,7 +4191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4221,7 +4221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4251,7 +4251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QGraphicsVideoItem::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4281,7 +4281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4311,7 +4311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsVideoItem::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4490,7 +4490,7 @@ PythonQtShell_QMediaBindableInterface::~PythonQtShell_QMediaBindableInterface() QMediaObject* PythonQtShell_QMediaBindableInterface::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4520,7 +4520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaBindableInterface::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4645,7 +4645,7 @@ PythonQtShell_QMediaControl::~PythonQtShell_QMediaControl() { void PythonQtShell_QMediaControl::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4664,7 +4664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaControl::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4683,7 +4683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaControl::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4713,7 +4713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaControl::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4743,7 +4743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaControl::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4772,7 +4772,7 @@ PythonQtShell_QMediaObject::~PythonQtShell_QMediaObject() { QMultimedia::AvailabilityStatus PythonQtShell_QMediaObject::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -4802,7 +4802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -4832,7 +4832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4851,7 +4851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4870,7 +4870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4900,7 +4900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4930,7 +4930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4960,7 +4960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QMediaObject::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -4990,7 +4990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5009,7 +5009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5098,7 +5098,7 @@ PythonQtShell_QMediaPlayer::~PythonQtShell_QMediaPlayer() { QMultimedia::AvailabilityStatus PythonQtShell_QMediaPlayer::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -5128,7 +5128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -5158,7 +5158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5177,7 +5177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5196,7 +5196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5226,7 +5226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5256,7 +5256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5286,7 +5286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QMediaPlayer::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -5316,7 +5316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5335,7 +5335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5494,7 +5494,7 @@ PythonQtShell_QMediaPlaylist::~PythonQtShell_QMediaPlaylist() { void PythonQtShell_QMediaPlaylist::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5513,7 +5513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlaylist::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5532,7 +5532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5562,7 +5562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QMediaPlaylist::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5622,7 +5622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5652,7 +5652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlaylist::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5811,7 +5811,7 @@ PythonQtShell_QMediaRecorder::~PythonQtShell_QMediaRecorder() { void PythonQtShell_QMediaRecorder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5830,7 +5830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaRecorder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5849,7 +5849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5879,7 +5879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5909,7 +5909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QMediaRecorder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5939,7 +5939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5969,7 +5969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaRecorder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6321,7 +6321,7 @@ PythonQtShell_QMediaService::~PythonQtShell_QMediaService() { void PythonQtShell_QMediaService::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6340,7 +6340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6359,7 +6359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaService::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6389,7 +6389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaService::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6419,7 +6419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::releaseControl(QMediaControl* control0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("releaseControl"); + static PyObject* name = PyUnicode_FromString("releaseControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaControl*"}; @@ -6438,7 +6438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaControl* PythonQtShell_QMediaService::requestControl(const char* name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("requestControl"); + static PyObject* name = PyUnicode_FromString("requestControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaControl*" , "const char*"}; @@ -6468,7 +6468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp b/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp index ce4eaeb69..2a161198c 100644 --- a/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +++ b/generated_cpp_50/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp @@ -243,7 +243,7 @@ PythonQtShell_QRadioData::~PythonQtShell_QRadioData() { void PythonQtShell_QRadioData::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -262,7 +262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioData::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -281,7 +281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -311,7 +311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -341,7 +341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QRadioData::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -371,7 +371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::setMediaObject(QMediaObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -401,7 +401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioData::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -485,7 +485,7 @@ PythonQtShell_QRadioTuner::~PythonQtShell_QRadioTuner() { QMultimedia::AvailabilityStatus PythonQtShell_QRadioTuner::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -515,7 +515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -545,7 +545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -564,7 +564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -583,7 +583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -613,7 +613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -643,7 +643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -673,7 +673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QRadioTuner::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -703,7 +703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -722,7 +722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -841,7 +841,7 @@ PythonQtShell_QSoundEffect::~PythonQtShell_QSoundEffect() { void PythonQtShell_QSoundEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -860,7 +860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSoundEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -879,7 +879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSoundEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -909,7 +909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSoundEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSoundEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1332,7 +1332,7 @@ PythonQtShell_QVideoProbe::~PythonQtShell_QVideoProbe() { void PythonQtShell_QVideoProbe::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1351,7 +1351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoProbe::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1370,7 +1370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoProbe::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1400,7 +1400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoProbe::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1430,7 +1430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoProbe::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1625,7 +1625,7 @@ PythonQtShell_QVideoWidget::~PythonQtShell_QVideoWidget() { void PythonQtShell_QVideoWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1644,7 +1644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1663,7 +1663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1682,7 +1682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1701,7 +1701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1720,7 +1720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1739,7 +1739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1769,7 +1769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1788,7 +1788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1807,7 +1807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1826,7 +1826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1845,7 +1845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1864,7 +1864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1894,7 +1894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1924,7 +1924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1943,7 +1943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1973,7 +1973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1992,7 +1992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2022,7 +2022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2052,7 +2052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2071,7 +2071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2090,7 +2090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2109,7 +2109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QVideoWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2139,7 +2139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2158,7 +2158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2177,7 +2177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2196,7 +2196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QVideoWidget::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2226,7 +2226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2256,7 +2256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVideoWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2286,7 +2286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2305,7 +2305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2324,7 +2324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2343,7 +2343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2362,7 +2362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::moveEvent(QMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2381,7 +2381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2411,7 +2411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QVideoWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2441,7 +2441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2460,7 +2460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QVideoWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2490,7 +2490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2509,7 +2509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2539,7 +2539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QVideoWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2569,7 +2569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2588,7 +2588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2607,7 +2607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2626,7 +2626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network0.cpp b/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network0.cpp index 43180d083..dd5a584e7 100644 --- a/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +++ b/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network0.cpp @@ -47,7 +47,7 @@ PythonQtShell_QAbstractNetworkCache::~PythonQtShell_QAbstractNetworkCache() { qint64 PythonQtShell_QAbstractNetworkCache::cacheSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -77,7 +77,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -96,7 +96,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -115,7 +115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -134,7 +134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QAbstractNetworkCache::data(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -164,7 +164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -194,7 +194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -224,7 +224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::insert(QIODevice* device0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -243,7 +243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkCacheMetaData PythonQtShell_QAbstractNetworkCache::metaData(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -273,7 +273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QAbstractNetworkCache::prepare(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -303,7 +303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::remove(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -333,7 +333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -352,7 +352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -421,7 +421,7 @@ PythonQtShell_QAbstractSocket::~PythonQtShell_QAbstractSocket() { bool PythonQtShell_QAbstractSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -451,7 +451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -511,7 +511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -541,7 +541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -655,7 +655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -685,7 +685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -715,7 +715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -745,7 +745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -944,7 +944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -963,7 +963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -982,7 +982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1042,7 +1042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1091,7 +1091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1121,7 +1121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1151,7 +1151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1181,7 +1181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1728,7 +1728,7 @@ PythonQtShell_QHttpMultiPart::~PythonQtShell_QHttpMultiPart() { void PythonQtShell_QHttpMultiPart::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1747,7 +1747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHttpMultiPart::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1766,7 +1766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHttpMultiPart::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1796,7 +1796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHttpMultiPart::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1826,7 +1826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHttpMultiPart::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1939,7 +1939,7 @@ PythonQtShell_QLocalServer::~PythonQtShell_QLocalServer() { void PythonQtShell_QLocalServer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1958,7 +1958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1977,7 +1977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2007,7 +2007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2037,7 +2037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::hasPendingConnections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2067,7 +2067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::incomingConnection(quintptr socketDescriptor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "quintptr"}; @@ -2086,7 +2086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLocalSocket* PythonQtShell_QLocalServer::nextPendingConnection() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLocalSocket*"}; @@ -2116,7 +2116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2225,7 +2225,7 @@ PythonQtShell_QLocalSocket::~PythonQtShell_QLocalSocket() { bool PythonQtShell_QLocalSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2255,7 +2255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2285,7 +2285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2315,7 +2315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2345,7 +2345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2364,7 +2364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2383,7 +2383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2402,7 +2402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2432,7 +2432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2462,7 +2462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2492,7 +2492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2522,7 +2522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2552,7 +2552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::readData(char* arg__1, qint64 arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2582,7 +2582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2612,7 +2612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2642,7 +2642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2672,7 +2672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2702,7 +2702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2721,7 +2721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2751,7 +2751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2781,7 +2781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::writeData(const char* arg__1, qint64 arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2931,7 +2931,7 @@ PythonQtShell_QNetworkAccessManager::~PythonQtShell_QNetworkAccessManager() { void PythonQtShell_QNetworkAccessManager::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkReply* PythonQtShell_QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation op0, const QNetworkRequest& request1, QIODevice* outgoingData2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createRequest"); + static PyObject* name = PyUnicode_FromString("createRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkReply*" , "QNetworkAccessManager::Operation" , "const QNetworkRequest&" , "QIODevice*"}; @@ -2980,7 +2980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkAccessManager::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2999,7 +2999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkAccessManager::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3029,7 +3029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkAccessManager::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3059,7 +3059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkAccessManager::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3458,7 +3458,7 @@ PythonQtShell_QNetworkConfigurationManager::~PythonQtShell_QNetworkConfiguration void PythonQtShell_QNetworkConfigurationManager::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3477,7 +3477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkConfigurationManager::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3496,7 +3496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkConfigurationManager::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3526,7 +3526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkConfigurationManager::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3556,7 +3556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkConfigurationManager::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3737,7 +3737,7 @@ PythonQtShell_QNetworkCookieJar::~PythonQtShell_QNetworkCookieJar() { void PythonQtShell_QNetworkCookieJar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3756,7 +3756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QNetworkCookieJar::cookiesForUrl(const QUrl& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cookiesForUrl"); + static PyObject* name = PyUnicode_FromString("cookiesForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QUrl&"}; @@ -3786,7 +3786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkCookieJar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3805,7 +3805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::deleteCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteCookie"); + static PyObject* name = PyUnicode_FromString("deleteCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -3835,7 +3835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3865,7 +3865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3895,7 +3895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::insertCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertCookie"); + static PyObject* name = PyUnicode_FromString("insertCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -3925,7 +3925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::setCookiesFromUrl(const QList& cookieList0, const QUrl& url1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCookiesFromUrl"); + static PyObject* name = PyUnicode_FromString("setCookiesFromUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QList&" , "const QUrl&"}; @@ -3955,7 +3955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkCookieJar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3974,7 +3974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::updateCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCookie"); + static PyObject* name = PyUnicode_FromString("updateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4004,7 +4004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::validateCookie(const QNetworkCookie& cookie0, const QUrl& url1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validateCookie"); + static PyObject* name = PyUnicode_FromString("validateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&" , "const QUrl&"}; @@ -4084,7 +4084,7 @@ PythonQtShell_QNetworkDiskCache::~PythonQtShell_QNetworkDiskCache() { qint64 PythonQtShell_QNetworkDiskCache::cacheSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4114,7 +4114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4133,7 +4133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4152,7 +4152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4171,7 +4171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QNetworkDiskCache::data(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -4201,7 +4201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4231,7 +4231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4261,7 +4261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkDiskCache::expire() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expire"); + static PyObject* name = PyUnicode_FromString("expire"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4291,7 +4291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::insert(QIODevice* device0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -4310,7 +4310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkCacheMetaData PythonQtShell_QNetworkDiskCache::metaData(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -4340,7 +4340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QNetworkDiskCache::prepare(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -4370,7 +4370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::remove(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -4400,7 +4400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4419,7 +4419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -4741,7 +4741,7 @@ PythonQtShell_QNetworkProxyFactory::~PythonQtShell_QNetworkProxyFactory() { QList PythonQtShell_QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryProxy"); + static PyObject* name = PyUnicode_FromString("queryProxy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QNetworkProxyQuery&"}; @@ -4925,7 +4925,7 @@ PythonQtShell_QNetworkReply::~PythonQtShell_QNetworkReply() { void PythonQtShell_QNetworkReply::abort() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4944,7 +4944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4974,7 +4974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5004,7 +5004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5034,7 +5034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5064,7 +5064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5083,7 +5083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5102,7 +5102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5121,7 +5121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5151,7 +5151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5181,7 +5181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::ignoreSslErrors() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignoreSslErrors"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrors"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5200,7 +5200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::ignoreSslErrorsImplementation(const QList& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignoreSslErrorsImplementation"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrorsImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -5219,7 +5219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5249,7 +5249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5279,7 +5279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5309,7 +5309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5339,7 +5339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5369,7 +5369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5399,7 +5399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5429,7 +5429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -5448,7 +5448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::setSslConfigurationImplementation(const QSslConfiguration& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("setSslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSslConfiguration&"}; @@ -5467,7 +5467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5497,7 +5497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::sslConfigurationImplementation(QSslConfiguration& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("sslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSslConfiguration&"}; @@ -5516,7 +5516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5535,7 +5535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5565,7 +5565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5595,7 +5595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5885,7 +5885,7 @@ PythonQtShell_QNetworkSession::~PythonQtShell_QNetworkSession() { void PythonQtShell_QNetworkSession::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5904,7 +5904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::connectNotify(const QMetaMethod& signal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -5923,7 +5923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5942,7 +5942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::disconnectNotify(const QMetaMethod& signal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -5961,7 +5961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkSession::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5991,7 +5991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkSession::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6021,7 +6021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network1.cpp b/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network1.cpp index f67a83964..365907dd2 100644 --- a/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +++ b/generated_cpp_50/com_trolltech_qt_network/com_trolltech_qt_network1.cpp @@ -122,7 +122,7 @@ PythonQtShell_QSslSocket::~PythonQtShell_QSslSocket() { bool PythonQtShell_QSslSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -152,7 +152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -261,7 +261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -280,7 +280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode openMode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -318,7 +318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -337,7 +337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -367,7 +367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -397,7 +397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -427,7 +427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -457,7 +457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -487,7 +487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -517,7 +517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -547,7 +547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -577,7 +577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -596,7 +596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -626,7 +626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -645,7 +645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -664,7 +664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -694,7 +694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSslSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -724,7 +724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -743,7 +743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -803,7 +803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -863,7 +863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1239,7 +1239,7 @@ PythonQtShell_QTcpServer::~PythonQtShell_QTcpServer() { void PythonQtShell_QTcpServer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1258,7 +1258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpServer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1277,7 +1277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1307,7 +1307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1337,7 +1337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::hasPendingConnections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1367,7 +1367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QTcpSocket* PythonQtShell_QTcpServer::nextPendingConnection() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTcpSocket*"}; @@ -1397,7 +1397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpServer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1511,7 +1511,7 @@ PythonQtShell_QTcpSocket::~PythonQtShell_QTcpSocket() { bool PythonQtShell_QTcpSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1541,7 +1541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1571,7 +1571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1601,7 +1601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1631,7 +1631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1650,7 +1650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1669,7 +1669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -1688,7 +1688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -1707,7 +1707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1726,7 +1726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1745,7 +1745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1775,7 +1775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1805,7 +1805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1835,7 +1835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1865,7 +1865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1895,7 +1895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1925,7 +1925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1955,7 +1955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1985,7 +1985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2004,7 +2004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2034,7 +2034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2053,7 +2053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2072,7 +2072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2102,7 +2102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTcpSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2132,7 +2132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2151,7 +2151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2181,7 +2181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2211,7 +2211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2241,7 +2241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2271,7 +2271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2311,7 +2311,7 @@ PythonQtShell_QUdpSocket::~PythonQtShell_QUdpSocket() { bool PythonQtShell_QUdpSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2341,7 +2341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2371,7 +2371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2401,7 +2401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2431,7 +2431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2450,7 +2450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2469,7 +2469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -2488,7 +2488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -2507,7 +2507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2526,7 +2526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2545,7 +2545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2575,7 +2575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2605,7 +2605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2635,7 +2635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2665,7 +2665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2695,7 +2695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2725,7 +2725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2755,7 +2755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2785,7 +2785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2804,7 +2804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2834,7 +2834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2853,7 +2853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2872,7 +2872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2902,7 +2902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QUdpSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2932,7 +2932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2951,7 +2951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2981,7 +2981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3011,7 +3011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3041,7 +3041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3071,7 +3071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_50/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp b/generated_cpp_50/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp index 92192afaa..485e2f155 100644 --- a/generated_cpp_50/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +++ b/generated_cpp_50/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp @@ -228,7 +228,7 @@ PythonQtShell_QGLContext::~PythonQtShell_QGLContext() { bool PythonQtShell_QGLContext::chooseContext(const QGLContext* shareContext0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("chooseContext"); + static PyObject* name = PyUnicode_FromString("chooseContext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -258,7 +258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLContext::create(const QGLContext* shareContext0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -288,7 +288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::doneCurrent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doneCurrent"); + static PyObject* name = PyUnicode_FromString("doneCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -307,7 +307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::makeCurrent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("makeCurrent"); + static PyObject* name = PyUnicode_FromString("makeCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -326,7 +326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::swapBuffers() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("swapBuffers"); + static PyObject* name = PyUnicode_FromString("swapBuffers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -845,7 +845,7 @@ PythonQtShell_QGLFramebufferObject::~PythonQtShell_QGLFramebufferObject() { int PythonQtShell_QGLFramebufferObject::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -875,7 +875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLFramebufferObject::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -894,7 +894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLFramebufferObject::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -924,7 +924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLFramebufferObject::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -954,7 +954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLFramebufferObject::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -984,7 +984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLFramebufferObject::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1714,7 +1714,7 @@ PythonQtShell_QGLPixelBuffer::~PythonQtShell_QGLPixelBuffer() { int PythonQtShell_QGLPixelBuffer::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1744,7 +1744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLPixelBuffer::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1763,7 +1763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLPixelBuffer::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLPixelBuffer::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1823,7 +1823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLPixelBuffer::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1853,7 +1853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLPixelBuffer::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2007,7 +2007,7 @@ PythonQtShell_QGLShader::~PythonQtShell_QGLShader() { void PythonQtShell_QGLShader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2026,7 +2026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2045,7 +2045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2075,7 +2075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2105,7 +2105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2188,7 +2188,7 @@ PythonQtShell_QGLShaderProgram::~PythonQtShell_QGLShaderProgram() { void PythonQtShell_QGLShaderProgram::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2207,7 +2207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShaderProgram::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2226,7 +2226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2256,7 +2256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2286,7 +2286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::link() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2316,7 +2316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShaderProgram::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2889,7 +2889,7 @@ PythonQtShell_QGLWidget::~PythonQtShell_QGLWidget() { void PythonQtShell_QGLWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2908,7 +2908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2927,7 +2927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2946,7 +2946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3071,7 +3071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3090,7 +3090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3109,7 +3109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3128,7 +3128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3188,7 +3188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3237,7 +3237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::glDraw() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("glDraw"); + static PyObject* name = PyUnicode_FromString("glDraw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3275,7 +3275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::glInit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("glInit"); + static PyObject* name = PyUnicode_FromString("glInit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3294,7 +3294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3324,7 +3324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3354,7 +3354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3373,7 +3373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3392,7 +3392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initializeGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3411,7 +3411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initializeOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializeOverlayGL"); + static PyObject* name = PyUnicode_FromString("initializeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3430,7 +3430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3449,7 +3449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGLWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3479,7 +3479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3498,7 +3498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3517,7 +3517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGLWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3596,7 +3596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3615,7 +3615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3634,7 +3634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3653,7 +3653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3672,7 +3672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3691,7 +3691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3721,7 +3721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3751,7 +3751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3770,7 +3770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3789,7 +3789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintOverlayGL"); + static PyObject* name = PyUnicode_FromString("paintOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3808,7 +3808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3838,7 +3838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3857,7 +3857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeGL(int w0, int h1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3876,7 +3876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeOverlayGL(int w0, int h1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeOverlayGL"); + static PyObject* name = PyUnicode_FromString("resizeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3895,7 +3895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3925,7 +3925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3944,7 +3944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGLWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3974,7 +3974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3993,7 +3993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4012,7 +4012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::updateGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGL"); + static PyObject* name = PyUnicode_FromString("updateGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4031,7 +4031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::updateOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateOverlayGL"); + static PyObject* name = PyUnicode_FromString("updateOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4050,7 +4050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp b/generated_cpp_50/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp index 671b9602d..7a8579bac 100644 --- a/generated_cpp_50/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +++ b/generated_cpp_50/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp @@ -276,7 +276,7 @@ PythonQtShell_QSqlDriver::~PythonQtShell_QSqlDriver() { bool PythonQtShell_QSqlDriver::beginTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginTransaction"); + static PyObject* name = PyUnicode_FromString("beginTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -306,7 +306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::cancelQuery() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cancelQuery"); + static PyObject* name = PyUnicode_FromString("cancelQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -336,7 +336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -355,7 +355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::commitTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitTransaction"); + static PyObject* name = PyUnicode_FromString("commitTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlResult* PythonQtShell_QSqlDriver::createResult() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createResult"); + static PyObject* name = PyUnicode_FromString("createResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlResult*"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -453,7 +453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::escapeIdentifier(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("escapeIdentifier"); + static PyObject* name = PyUnicode_FromString("escapeIdentifier"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -513,7 +513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -543,7 +543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::formatValue(const QSqlField& field0, bool trimStrings1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("formatValue"); + static PyObject* name = PyUnicode_FromString("formatValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QSqlField&" , "bool"}; @@ -573,7 +573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlDriver::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -603,7 +603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::hasFeature(QSqlDriver::DriverFeature f0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QSqlDriver::DriverFeature"}; @@ -633,7 +633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::isIdentifierEscaped(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIdentifierEscaped"); + static PyObject* name = PyUnicode_FromString("isIdentifierEscaped"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::isOpen() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isOpen"); + static PyObject* name = PyUnicode_FromString("isOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -693,7 +693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::open(const QString& db0, const QString& user1, const QString& password2, const QString& host3, int port4, const QString& connOpts5) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "int" , "const QString&"}; @@ -723,7 +723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlIndex PythonQtShell_QSqlDriver::primaryIndex(const QString& tableName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("primaryIndex"); + static PyObject* name = PyUnicode_FromString("primaryIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlIndex" , "const QString&"}; @@ -753,7 +753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlRecord PythonQtShell_QSqlDriver::record(const QString& tableName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord" , "const QString&"}; @@ -783,7 +783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::rollbackTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rollbackTransaction"); + static PyObject* name = PyUnicode_FromString("rollbackTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -813,7 +813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setLastError(const QSqlError& e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -832,7 +832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setOpen(bool o0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOpen"); + static PyObject* name = PyUnicode_FromString("setOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -851,7 +851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setOpenError(bool e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOpenError"); + static PyObject* name = PyUnicode_FromString("setOpenError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -870,7 +870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::sqlStatement(QSqlDriver::StatementType type0, const QString& tableName1, const QSqlRecord& rec2, bool preparedStatement3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sqlStatement"); + static PyObject* name = PyUnicode_FromString("sqlStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QSqlDriver::StatementType" , "const QString&" , "const QSqlRecord&" , "bool"}; @@ -900,7 +900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::stripDelimiters(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stripDelimiters"); + static PyObject* name = PyUnicode_FromString("stripDelimiters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -930,7 +930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::subscribeToNotification(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subscribeToNotification"); + static PyObject* name = PyUnicode_FromString("subscribeToNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -960,7 +960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlDriver::subscribedToNotifications() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subscribedToNotifications"); + static PyObject* name = PyUnicode_FromString("subscribedToNotifications"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -990,7 +990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlDriver::tables(QSql::TableType tableType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tables"); + static PyObject* name = PyUnicode_FromString("tables"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QSql::TableType"}; @@ -1020,7 +1020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1039,7 +1039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::unsubscribeFromNotification(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unsubscribeFromNotification"); + static PyObject* name = PyUnicode_FromString("unsubscribeFromNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1219,7 +1219,7 @@ PythonQtShell_QSqlDriverCreatorBase::~PythonQtShell_QSqlDriverCreatorBase() { QSqlDriver* PythonQtShell_QSqlDriverCreatorBase::createObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlDriver*"}; @@ -1756,7 +1756,7 @@ PythonQtShell_QSqlQueryModel::~PythonQtShell_QSqlQueryModel() { QModelIndex PythonQtShell_QSqlQueryModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1786,7 +1786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1816,7 +1816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1846,7 +1846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1865,7 +1865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1884,7 +1884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlQueryModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1914,7 +1914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1933,7 +1933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlQueryModel::data(const QModelIndex& item0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1963,7 +1963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1993,7 +1993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2023,7 +2023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2053,7 +2053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2072,7 +2072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlQueryModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2102,7 +2102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlQueryModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2132,7 +2132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2162,7 +2162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2192,7 +2192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2222,7 +2222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2252,7 +2252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlQueryModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2282,7 +2282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlQueryModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2312,7 +2312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlQueryModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2342,7 +2342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlQueryModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2372,7 +2372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2402,7 +2402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2432,7 +2432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2451,7 +2451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2481,7 +2481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2511,7 +2511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2530,7 +2530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlQueryModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2560,7 +2560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlQueryModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2590,7 +2590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2620,7 +2620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2650,7 +2650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2680,7 +2680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2710,7 +2710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2729,7 +2729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlQueryModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2759,7 +2759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2789,7 +2789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2819,7 +2819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2849,7 +2849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3205,7 +3205,7 @@ PythonQtShell_QSqlRelationalTableModel::~PythonQtShell_QSqlRelationalTableModel( QModelIndex PythonQtShell_QSqlRelationalTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3235,7 +3235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3265,7 +3265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3295,7 +3295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3314,7 +3314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3333,7 +3333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlRelationalTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3363,7 +3363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3382,7 +3382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlRelationalTableModel::data(const QModelIndex& item0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3412,7 +3412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::deleteRowFromTable(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3442,7 +3442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3472,7 +3472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3502,7 +3502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3532,7 +3532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3551,7 +3551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlRelationalTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3581,7 +3581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlRelationalTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3611,7 +3611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3641,7 +3641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3671,7 +3671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3701,7 +3701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertRowIntoTable(const QSqlRecord& values0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -3731,7 +3731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3761,7 +3761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlRelationalTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3791,7 +3791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlRelationalTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3821,7 +3821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlRelationalTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3851,7 +3851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlRelationalTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3881,7 +3881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3911,7 +3911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3941,7 +3941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlRelationalTableModel::orderByClause() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3971,7 +3971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3990,7 +3990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlTableModel* PythonQtShell_QSqlRelationalTableModel::relationModel(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("relationModel"); + static PyObject* name = PyUnicode_FromString("relationModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlTableModel*" , "int"}; @@ -4020,7 +4020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4050,7 +4050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4080,7 +4080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4099,7 +4099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::revertRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4118,7 +4118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlRelationalTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4148,7 +4148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlRelationalTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4178,7 +4178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::select() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4208,7 +4208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::selectRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4238,7 +4238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlRelationalTableModel::selectStatement() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4268,7 +4268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setData(const QModelIndex& item0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4298,7 +4298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -4317,7 +4317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setFilter(const QString& filter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4336,7 +4336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4366,7 +4366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4396,7 +4396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setRelation(int column0, const QSqlRelation& relation1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRelation"); + static PyObject* name = PyUnicode_FromString("setRelation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QSqlRelation&"}; @@ -4415,7 +4415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setSort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4434,7 +4434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setTable(const QString& tableName0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4453,7 +4453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4483,7 +4483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4502,7 +4502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlRelationalTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4532,7 +4532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4562,7 +4562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4592,7 +4592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4622,7 +4622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4641,7 +4641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::updateRowInTable(int row0, const QSqlRecord& values1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; @@ -4756,7 +4756,7 @@ PythonQtShell_QSqlResult::~PythonQtShell_QSqlResult() { void PythonQtShell_QSqlResult::bindValue(const QString& placeholder0, const QVariant& val1, QSql::ParamType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&" , "QSql::ParamType"}; @@ -4775,7 +4775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::bindValue(int pos0, const QVariant& val1, QSql::ParamType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&" , "QSql::ParamType"}; @@ -4794,7 +4794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::data(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::detachFromResultSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("detachFromResultSet"); + static PyObject* name = PyUnicode_FromString("detachFromResultSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4873,7 +4873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::execBatch(bool arrayBind0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("execBatch"); + static PyObject* name = PyUnicode_FromString("execBatch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4903,7 +4903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetch(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetch"); + static PyObject* name = PyUnicode_FromString("fetch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4933,7 +4933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchFirst() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchFirst"); + static PyObject* name = PyUnicode_FromString("fetchFirst"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4963,7 +4963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchLast() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchLast"); + static PyObject* name = PyUnicode_FromString("fetchLast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4993,7 +4993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchNext() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchNext"); + static PyObject* name = PyUnicode_FromString("fetchNext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5023,7 +5023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchPrevious() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchPrevious"); + static PyObject* name = PyUnicode_FromString("fetchPrevious"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5053,7 +5053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5083,7 +5083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::isNull(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isNull"); + static PyObject* name = PyUnicode_FromString("isNull"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5113,7 +5113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::lastInsertId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lastInsertId"); + static PyObject* name = PyUnicode_FromString("lastInsertId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5143,7 +5143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::nextResult() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextResult"); + static PyObject* name = PyUnicode_FromString("nextResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5173,7 +5173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlResult::numRowsAffected() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("numRowsAffected"); + static PyObject* name = PyUnicode_FromString("numRowsAffected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5203,7 +5203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::prepare(const QString& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5233,7 +5233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlRecord PythonQtShell_QSqlResult::record() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord"}; @@ -5263,7 +5263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::reset(const QString& sqlquery0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5293,7 +5293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::savePrepare(const QString& sqlquery0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("savePrepare"); + static PyObject* name = PyUnicode_FromString("savePrepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5323,7 +5323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setActive(bool a0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5342,7 +5342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setAt(int at0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setAt"); + static PyObject* name = PyUnicode_FromString("setAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5361,7 +5361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setForwardOnly(bool forward0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setForwardOnly"); + static PyObject* name = PyUnicode_FromString("setForwardOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5380,7 +5380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setLastError(const QSqlError& e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -5399,7 +5399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setNumericalPrecisionPolicy(QSql::NumericalPrecisionPolicy policy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setNumericalPrecisionPolicy"); + static PyObject* name = PyUnicode_FromString("setNumericalPrecisionPolicy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSql::NumericalPrecisionPolicy"}; @@ -5418,7 +5418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setQuery(const QString& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setQuery"); + static PyObject* name = PyUnicode_FromString("setQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5437,7 +5437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setSelect(bool s0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelect"); + static PyObject* name = PyUnicode_FromString("setSelect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5456,7 +5456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlResult::size() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5486,7 +5486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::virtual_hook(int id0, void* data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -5765,7 +5765,7 @@ PythonQtShell_QSqlTableModel::~PythonQtShell_QSqlTableModel() { QModelIndex PythonQtShell_QSqlTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5795,7 +5795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5825,7 +5825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5855,7 +5855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5874,7 +5874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5893,7 +5893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5923,7 +5923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5942,7 +5942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlTableModel::data(const QModelIndex& idx0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5972,7 +5972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::deleteRowFromTable(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6002,7 +6002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6032,7 +6032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6062,7 +6062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6092,7 +6092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6111,7 +6111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6141,7 +6141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6171,7 +6171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6201,7 +6201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6231,7 +6231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6261,7 +6261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertRowIntoTable(const QSqlRecord& values0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -6291,7 +6291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6321,7 +6321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6351,7 +6351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6381,7 +6381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6411,7 +6411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6441,7 +6441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6471,7 +6471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6501,7 +6501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlTableModel::orderByClause() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6531,7 +6531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6550,7 +6550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6580,7 +6580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6610,7 +6610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6629,7 +6629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::revertRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6648,7 +6648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -6678,7 +6678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6708,7 +6708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::select() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6738,7 +6738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::selectRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6768,7 +6768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlTableModel::selectStatement() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6798,7 +6798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -6828,7 +6828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -6847,7 +6847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setFilter(const QString& filter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6866,7 +6866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -6896,7 +6896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -6926,7 +6926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setSort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -6945,7 +6945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setTable(const QString& tableName0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6964,7 +6964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6994,7 +6994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7013,7 +7013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7043,7 +7043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7073,7 +7073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7103,7 +7103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7133,7 +7133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7152,7 +7152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::updateRowInTable(int row0, const QSqlRecord& values1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; diff --git a/generated_cpp_50/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp b/generated_cpp_50/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp index c1d75b588..6206c1605 100644 --- a/generated_cpp_50/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +++ b/generated_cpp_50/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp @@ -56,7 +56,7 @@ PythonQtShell_QGraphicsSvgItem::~PythonQtShell_QGraphicsSvgItem() { QRectF PythonQtShell_QGraphicsSvgItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -86,7 +86,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -124,7 +124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsSvgItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -154,7 +154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsSvgItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -184,7 +184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -203,7 +203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -222,7 +222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsSvgItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -321,7 +321,7 @@ PythonQtShell_QSvgGenerator::~PythonQtShell_QSvgGenerator() { int PythonQtShell_QSvgGenerator::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -351,7 +351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgGenerator::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -370,7 +370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgGenerator::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -400,7 +400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSvgGenerator::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -430,7 +430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSvgGenerator::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -460,7 +460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSvgGenerator::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -590,7 +590,7 @@ PythonQtShell_QSvgRenderer::~PythonQtShell_QSvgRenderer() { void PythonQtShell_QSvgRenderer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -609,7 +609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgRenderer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -628,7 +628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgRenderer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -658,7 +658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgRenderer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgRenderer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -804,7 +804,7 @@ PythonQtShell_QSvgWidget::~PythonQtShell_QSvgWidget() { void PythonQtShell_QSvgWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -823,7 +823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -861,7 +861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -880,7 +880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -899,7 +899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -948,7 +948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1005,7 +1005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1024,7 +1024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1043,7 +1043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1073,7 +1073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1103,7 +1103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1122,7 +1122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1152,7 +1152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1171,7 +1171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1201,7 +1201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1231,7 +1231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1250,7 +1250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1269,7 +1269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1288,7 +1288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSvgWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1318,7 +1318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1337,7 +1337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1356,7 +1356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1375,7 +1375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1405,7 +1405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSvgWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1435,7 +1435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1454,7 +1454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1473,7 +1473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1492,7 +1492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1511,7 +1511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1530,7 +1530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1560,7 +1560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSvgWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1590,7 +1590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1609,7 +1609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSvgWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1639,7 +1639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1658,7 +1658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSvgWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1688,7 +1688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1707,7 +1707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1726,7 +1726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1745,7 +1745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp b/generated_cpp_50/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp index dc615eb2a..72e8861ae 100644 --- a/generated_cpp_50/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +++ b/generated_cpp_50/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp @@ -24,7 +24,7 @@ PythonQtShell_QUiLoader::~PythonQtShell_QUiLoader() { void PythonQtShell_QUiLoader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -43,7 +43,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAction* PythonQtShell_QUiLoader::createAction(QObject* parent0, const QString& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createAction"); + static PyObject* name = PyUnicode_FromString("createAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAction*" , "QObject*" , "const QString&"}; @@ -73,7 +73,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QActionGroup* PythonQtShell_QUiLoader::createActionGroup(QObject* parent0, const QString& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createActionGroup"); + static PyObject* name = PyUnicode_FromString("createActionGroup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QActionGroup*" , "QObject*" , "const QString&"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QUiLoader::createLayout(const QString& className0, QObject* parent1, const QString& name2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createLayout"); + static PyObject* name = PyUnicode_FromString("createLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*" , "const QString&" , "QObject*" , "const QString&"}; @@ -133,7 +133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QUiLoader::createWidget(const QString& className0, QWidget* parent1, const QString& name2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "const QString&" , "QWidget*" , "const QString&"}; @@ -163,7 +163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUiLoader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUiLoader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUiLoader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUiLoader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp b/generated_cpp_50/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp index e38132d32..7a98059aa 100644 --- a/generated_cpp_50/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +++ b/generated_cpp_50/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp @@ -69,7 +69,7 @@ PythonQtShell_QGraphicsWebView::~PythonQtShell_QGraphicsWebView() { void PythonQtShell_QGraphicsWebView::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -88,7 +88,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -107,7 +107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -126,7 +126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -145,7 +145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -164,7 +164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -183,7 +183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -202,7 +202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -221,7 +221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -240,7 +240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -270,7 +270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -300,7 +300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -319,7 +319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -349,7 +349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -368,7 +368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -387,7 +387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -406,7 +406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -425,7 +425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -444,7 +444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -463,7 +463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -482,7 +482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -501,7 +501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -520,7 +520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -583,7 +583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -602,7 +602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -621,7 +621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -640,7 +640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -659,7 +659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -678,7 +678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -697,7 +697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -716,7 +716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::paint(QPainter* arg__1, const QStyleOptionGraphicsItem* options1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -754,7 +754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -803,7 +803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -822,7 +822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::sceneEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -852,7 +852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -871,7 +871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsWebView::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -958,7 +958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -977,7 +977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -996,7 +996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1015,7 +1015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1045,7 +1045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsWebView::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2109,7 +2109,7 @@ PythonQtShell_QWebHistoryInterface::~PythonQtShell_QWebHistoryInterface() { void PythonQtShell_QWebHistoryInterface::addHistoryEntry(const QString& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addHistoryEntry"); + static PyObject* name = PyUnicode_FromString("addHistoryEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2128,7 +2128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2147,7 +2147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2166,7 +2166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2196,7 +2196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2226,7 +2226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::historyContains(const QString& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("historyContains"); + static PyObject* name = PyUnicode_FromString("historyContains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2256,7 +2256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2446,7 +2446,7 @@ PythonQtShell_QWebInspector::~PythonQtShell_QWebInspector() { void PythonQtShell_QWebInspector::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2465,7 +2465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2484,7 +2484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2503,7 +2503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2522,7 +2522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2541,7 +2541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2560,7 +2560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2590,7 +2590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2609,7 +2609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2628,7 +2628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2647,7 +2647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2666,7 +2666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2685,7 +2685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2715,7 +2715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2745,7 +2745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2764,7 +2764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2794,7 +2794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2813,7 +2813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2843,7 +2843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2873,7 +2873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2892,7 +2892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2911,7 +2911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2930,7 +2930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWebInspector::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2960,7 +2960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2979,7 +2979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2998,7 +2998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3017,7 +3017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3047,7 +3047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWebInspector::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3077,7 +3077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3096,7 +3096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3115,7 +3115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3134,7 +3134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3153,7 +3153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3172,7 +3172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3202,7 +3202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWebInspector::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3232,7 +3232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3251,7 +3251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWebInspector::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3281,7 +3281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3300,7 +3300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWebInspector::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3330,7 +3330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3349,7 +3349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3368,7 +3368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3387,7 +3387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3456,7 +3456,7 @@ PythonQtShell_QWebPage::~PythonQtShell_QWebPage() { bool PythonQtShell_QWebPage::acceptNavigationRequest(QWebFrame* frame0, const QNetworkRequest& request1, QWebPage::NavigationType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("acceptNavigationRequest"); + static PyObject* name = PyUnicode_FromString("acceptNavigationRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QNetworkRequest&" , "QWebPage::NavigationType"}; @@ -3486,7 +3486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3505,7 +3505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QWebPage::chooseFile(QWebFrame* originatingFrame0, const QString& oldFile1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("chooseFile"); + static PyObject* name = PyUnicode_FromString("chooseFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QWebFrame*" , "const QString&"}; @@ -3535,7 +3535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWebPage::createPlugin(const QString& classid0, const QUrl& url1, const QStringList& paramNames2, const QStringList& paramValues3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createPlugin"); + static PyObject* name = PyUnicode_FromString("createPlugin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -3565,7 +3565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWebPage* PythonQtShell_QWebPage::createWindow(QWebPage::WebWindowType type0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebPage*" , "QWebPage::WebWindowType"}; @@ -3595,7 +3595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3614,7 +3614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3644,7 +3644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3674,7 +3674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::extension(QWebPage::Extension extension0, const QWebPage::ExtensionOption* option1, QWebPage::ExtensionReturn* output2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension" , "const QWebPage::ExtensionOption*" , "QWebPage::ExtensionReturn*"}; @@ -3704,7 +3704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::javaScriptAlert(QWebFrame* originatingFrame0, const QString& msg1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptAlert"); + static PyObject* name = PyUnicode_FromString("javaScriptAlert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebFrame*" , "const QString&"}; @@ -3723,7 +3723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::javaScriptConfirm(QWebFrame* originatingFrame0, const QString& msg1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptConfirm"); + static PyObject* name = PyUnicode_FromString("javaScriptConfirm"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&"}; @@ -3753,7 +3753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::javaScriptConsoleMessage(const QString& message0, int lineNumber1, const QString& sourceID2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptConsoleMessage"); + static PyObject* name = PyUnicode_FromString("javaScriptConsoleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "int" , "const QString&"}; @@ -3772,7 +3772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::javaScriptPrompt(QWebFrame* originatingFrame0, const QString& msg1, const QString& defaultValue2, QString* result3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptPrompt"); + static PyObject* name = PyUnicode_FromString("javaScriptPrompt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&" , "const QString&" , "QString*"}; @@ -3802,7 +3802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::shouldInterruptJavaScript() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shouldInterruptJavaScript"); + static PyObject* name = PyUnicode_FromString("shouldInterruptJavaScript"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3832,7 +3832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::supportsExtension(QWebPage::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension"}; @@ -3862,7 +3862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3881,7 +3881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::triggerAction(QWebPage::WebAction action0, bool checked1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("triggerAction"); + static PyObject* name = PyUnicode_FromString("triggerAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebPage::WebAction" , "bool"}; @@ -3900,7 +3900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QWebPage::userAgentForUrl(const QUrl& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("userAgentForUrl"); + static PyObject* name = PyUnicode_FromString("userAgentForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QUrl&"}; @@ -4275,7 +4275,7 @@ PythonQtShell_QWebPluginFactory::~PythonQtShell_QWebPluginFactory() { void PythonQtShell_QWebPluginFactory::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4294,7 +4294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWebPluginFactory::create(const QString& mimeType0, const QUrl& arg__2, const QStringList& argumentNames2, const QStringList& argumentValues3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -4324,7 +4324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4343,7 +4343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4373,7 +4373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4403,7 +4403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::extension(QWebPluginFactory::Extension extension0, const QWebPluginFactory::ExtensionOption* option1, QWebPluginFactory::ExtensionReturn* output2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension" , "const QWebPluginFactory::ExtensionOption*" , "QWebPluginFactory::ExtensionReturn*"}; @@ -4433,7 +4433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QWebPluginFactory::plugins() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("plugins"); + static PyObject* name = PyUnicode_FromString("plugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4463,7 +4463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::refreshPlugins() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("refreshPlugins"); + static PyObject* name = PyUnicode_FromString("refreshPlugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4482,7 +4482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::supportsExtension(QWebPluginFactory::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension"}; @@ -4512,7 +4512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4874,7 +4874,7 @@ PythonQtShell_QWebView::~PythonQtShell_QWebView() { void PythonQtShell_QWebView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4893,7 +4893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4912,7 +4912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4931,7 +4931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4950,7 +4950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4969,7 +4969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWebView* PythonQtShell_QWebView::createWindow(QWebPage::WebWindowType type0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebView*" , "QWebPage::WebWindowType"}; @@ -4999,7 +4999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5018,7 +5018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5048,7 +5048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5067,7 +5067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5086,7 +5086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5105,7 +5105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5124,7 +5124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5143,7 +5143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5173,7 +5173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5203,7 +5203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5222,7 +5222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5252,7 +5252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5271,7 +5271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5301,7 +5301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5331,7 +5331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5350,7 +5350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5369,7 +5369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5388,7 +5388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWebView::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5418,7 +5418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5437,7 +5437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5456,7 +5456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5475,7 +5475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5505,7 +5505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWebView::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5535,7 +5535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5554,7 +5554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5573,7 +5573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5630,7 +5630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5660,7 +5660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWebView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5690,7 +5690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5709,7 +5709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWebView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5739,7 +5739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5758,7 +5758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWebView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5788,7 +5788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5807,7 +5807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5826,7 +5826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5845,7 +5845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_50/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp b/generated_cpp_50/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp index 35c6945c1..5c2346b77 100644 --- a/generated_cpp_50/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +++ b/generated_cpp_50/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp @@ -1155,7 +1155,7 @@ PythonQtShell_QXmlContentHandler::~PythonQtShell_QXmlContentHandler() { bool PythonQtShell_QXmlContentHandler::characters(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1185,7 +1185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1215,7 +1215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1245,7 +1245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1275,7 +1275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlContentHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1305,7 +1305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1335,7 +1335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& target0, const QString& data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1365,7 +1365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -1384,7 +1384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1414,7 +1414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1444,7 +1444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2, const QXmlAttributes& atts3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -1474,7 +1474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefix0, const QString& uri1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1574,7 +1574,7 @@ PythonQtShell_QXmlDTDHandler::~PythonQtShell_QXmlDTDHandler() { QString PythonQtShell_QXmlDTDHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1634,7 +1634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2, const QString& notationName3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1689,7 +1689,7 @@ PythonQtShell_QXmlDeclHandler::~PythonQtShell_QXmlDeclHandler() { bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName0, const QString& aName1, const QString& type2, const QString& valueDefault3, const QString& value4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1719,7 +1719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlDeclHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1749,7 +1749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1779,7 +1779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1839,7 +1839,7 @@ PythonQtShell_QXmlDefaultHandler::~PythonQtShell_QXmlDefaultHandler() { bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName0, const QString& aName1, const QString& type2, const QString& valueDefault3, const QString& value4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1899,7 +1899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1929,7 +1929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1959,7 +1959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endDTD() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1989,7 +1989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2019,7 +2019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2049,7 +2049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2079,7 +2079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2109,7 +2109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2139,7 +2139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlDefaultHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2169,7 +2169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2199,7 +2199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2229,7 +2229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2259,7 +2259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2289,7 +2289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2319,7 +2319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& target0, const QString& data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2349,7 +2349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId0, const QString& systemId1, QXmlInputSource*& ret2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2379,7 +2379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -2398,7 +2398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2428,7 +2428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2458,7 +2458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2488,7 +2488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2518,7 +2518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2, const QXmlAttributes& atts3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -2548,7 +2548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2578,7 +2578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefix0, const QString& uri1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2608,7 +2608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2, const QString& notationName3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -2638,7 +2638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2818,7 +2818,7 @@ PythonQtShell_QXmlEntityResolver::~PythonQtShell_QXmlEntityResolver() { QString PythonQtShell_QXmlEntityResolver::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2848,7 +2848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId0, const QString& systemId1, QXmlInputSource*& ret2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2898,7 +2898,7 @@ PythonQtShell_QXmlErrorHandler::~PythonQtShell_QXmlErrorHandler() { bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2928,7 +2928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlErrorHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2958,7 +2958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2988,7 +2988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3048,7 +3048,7 @@ PythonQtShell_QXmlInputSource::~PythonQtShell_QXmlInputSource() { QString PythonQtShell_QXmlInputSource::data() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3078,7 +3078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::fetchData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchData"); + static PyObject* name = PyUnicode_FromString("fetchData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3097,7 +3097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data0, bool beginning1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fromRawData"); + static PyObject* name = PyUnicode_FromString("fromRawData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"}; @@ -3127,7 +3127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QChar PythonQtShell_QXmlInputSource::next() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("next"); + static PyObject* name = PyUnicode_FromString("next"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QChar"}; @@ -3157,7 +3157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3176,7 +3176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QByteArray&"}; @@ -3195,7 +3195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::setData(const QString& dat0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3263,7 +3263,7 @@ PythonQtShell_QXmlLexicalHandler::~PythonQtShell_QXmlLexicalHandler() { bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3293,7 +3293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3323,7 +3323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endDTD() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3353,7 +3353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlLexicalHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3413,7 +3413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3443,7 +3443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -3473,7 +3473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3553,7 +3553,7 @@ PythonQtShell_QXmlLocator::~PythonQtShell_QXmlLocator() { int PythonQtShell_QXmlLocator::columnNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnNumber"); + static PyObject* name = PyUnicode_FromString("columnNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3583,7 +3583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QXmlLocator::lineNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lineNumber"); + static PyObject* name = PyUnicode_FromString("lineNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3668,7 +3668,7 @@ PythonQtShell_QXmlReader::~PythonQtShell_QXmlReader() { QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -3698,7 +3698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -3728,7 +3728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -3758,7 +3758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -3788,7 +3788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::feature(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -3848,7 +3848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::hasFeature(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3878,7 +3878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::hasProperty(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3908,7 +3908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -3938,7 +3938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -3968,7 +3968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -3998,7 +3998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void* PythonQtShell_QXmlReader::property(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4028,7 +4028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4047,7 +4047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4066,7 +4066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4085,7 +4085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4104,7 +4104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4123,7 +4123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setFeature(const QString& name0, bool value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4142,7 +4142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4161,7 +4161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setProperty(const QString& name0, void* value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; @@ -4290,7 +4290,7 @@ PythonQtShell_QXmlSimpleReader::~PythonQtShell_QXmlSimpleReader() { QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -4320,7 +4320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -4350,7 +4350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -4380,7 +4380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -4410,7 +4410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -4440,7 +4440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::feature(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -4470,7 +4470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4500,7 +4500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4530,7 +4530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4560,7 +4560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4590,7 +4590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4620,7 +4620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0, bool incremental1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"}; @@ -4650,7 +4650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parseContinue() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parseContinue"); + static PyObject* name = PyUnicode_FromString("parseContinue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void* PythonQtShell_QXmlSimpleReader::property(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4710,7 +4710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4729,7 +4729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4748,7 +4748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4767,7 +4767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4786,7 +4786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4805,7 +4805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name0, bool value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name0, void* value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; diff --git a/generated_cpp_50/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp b/generated_cpp_50/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp index 213033aa9..382c2e94c 100644 --- a/generated_cpp_50/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +++ b/generated_cpp_50/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp @@ -32,7 +32,7 @@ PythonQtShell_QAbstractMessageHandler::~PythonQtShell_QAbstractMessageHandler() void PythonQtShell_QAbstractMessageHandler::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -51,7 +51,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -70,7 +70,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractMessageHandler::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -100,7 +100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractMessageHandler::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -130,7 +130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::handleMessage(QtMsgType type0, const QString& description1, const QUrl& identifier2, const QSourceLocation& sourceLocation3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handleMessage"); + static PyObject* name = PyUnicode_FromString("handleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QtMsgType" , "const QString&" , "const QUrl&" , "const QSourceLocation&"}; @@ -149,7 +149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -188,7 +188,7 @@ PythonQtShell_QAbstractUriResolver::~PythonQtShell_QAbstractUriResolver() { void PythonQtShell_QAbstractUriResolver::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -207,7 +207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractUriResolver::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -226,7 +226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractUriResolver::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -256,7 +256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractUriResolver::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -286,7 +286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractUriResolver::resolve(const QUrl& relative0, const QUrl& baseURI1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolve"); + static PyObject* name = PyUnicode_FromString("resolve"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "const QUrl&"}; @@ -316,7 +316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractUriResolver::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -350,7 +350,7 @@ PythonQtShell_QAbstractXmlNodeModel::~PythonQtShell_QAbstractXmlNodeModel() { QVector PythonQtShell_QAbstractXmlNodeModel::attributes(const QXmlNodeModelIndex& element0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -380,7 +380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractXmlNodeModel::baseUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -410,7 +410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::DocumentOrder PythonQtShell_QAbstractXmlNodeModel::compareOrder(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -440,7 +440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractXmlNodeModel::documentUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -470,7 +470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::elementById(const QXmlName& NCName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -500,7 +500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -530,7 +530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::NodeKind PythonQtShell_QAbstractXmlNodeModel::kind(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlName PythonQtShell_QAbstractXmlNodeModel::name(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -590,7 +590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -620,7 +620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { short PythonQtShell_QAbstractXmlNodeModel::namespaceForPrefix(const QXmlNodeModelIndex& ni0, const short prefix1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -650,7 +650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::nextFromSimpleAxis(QAbstractXmlNodeModel::SimpleAxis axis0, const QXmlNodeModelIndex& origin1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -680,7 +680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractXmlNodeModel::nodesByIdref(const QXmlName& NCName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -710,7 +710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::root(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -740,7 +740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QAbstractXmlNodeModel::stringValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractXmlNodeModel::typedValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -895,7 +895,7 @@ PythonQtShell_QAbstractXmlReceiver::~PythonQtShell_QAbstractXmlReceiver() { void PythonQtShell_QAbstractXmlReceiver::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -933,7 +933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -952,7 +952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -971,7 +971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -990,7 +990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1009,7 +1009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1028,7 +1028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::namespaceBinding(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::processingInstruction(const QXmlName& target0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1066,7 +1066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1085,7 +1085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1104,7 +1104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1123,7 +1123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1221,7 +1221,7 @@ PythonQtShell_QSimpleXmlNodeModel::~PythonQtShell_QSimpleXmlNodeModel() { QVector PythonQtShell_QSimpleXmlNodeModel::attributes(const QXmlNodeModelIndex& element0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1251,7 +1251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex& node0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1281,7 +1281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::DocumentOrder PythonQtShell_QSimpleXmlNodeModel::compareOrder(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1311,7 +1311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QSimpleXmlNodeModel::documentUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1341,7 +1341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::elementById(const QXmlName& id0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -1371,7 +1371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::NodeKind PythonQtShell_QSimpleXmlNodeModel::kind(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -1401,7 +1401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlName PythonQtShell_QSimpleXmlNodeModel::name(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -1431,7 +1431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1461,7 +1461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::nextFromSimpleAxis(QAbstractXmlNodeModel::SimpleAxis axis0, const QXmlNodeModelIndex& origin1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -1491,7 +1491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QSimpleXmlNodeModel::nodesByIdref(const QXmlName& idref0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -1521,7 +1521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::root(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -1551,7 +1551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex& node0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -1581,7 +1581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSimpleXmlNodeModel::typedValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1717,7 +1717,7 @@ PythonQtShell_QXmlFormatter::~PythonQtShell_QXmlFormatter() { void PythonQtShell_QXmlFormatter::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1736,7 +1736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1755,7 +1755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1774,7 +1774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1812,7 +1812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::namespaceBinding(const QXmlName& nb0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::processingInstruction(const QXmlName& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1926,7 +1926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1945,7 +1945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2510,7 +2510,7 @@ PythonQtShell_QXmlSerializer::~PythonQtShell_QXmlSerializer() { void PythonQtShell_QXmlSerializer::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2529,7 +2529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -2548,7 +2548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2567,7 +2567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2586,7 +2586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2605,7 +2605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2624,7 +2624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2643,7 +2643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::namespaceBinding(const QXmlName& nb0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2662,7 +2662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::processingInstruction(const QXmlName& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2681,7 +2681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2700,7 +2700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2719,7 +2719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2738,7 +2738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; diff --git a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core0.cpp b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core0.cpp index 1a388d383..d6df765f9 100644 --- a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +++ b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core0.cpp @@ -50,7 +50,7 @@ void PythonQtShell_QAbstractAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -72,7 +72,7 @@ void PythonQtShell_QAbstractAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -94,7 +94,7 @@ int PythonQtShell_QAbstractAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -127,7 +127,7 @@ bool PythonQtShell_QAbstractAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -160,7 +160,7 @@ bool PythonQtShell_QAbstractAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -193,7 +193,7 @@ void PythonQtShell_QAbstractAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -215,7 +215,7 @@ void PythonQtShell_QAbstractAnimation::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -237,7 +237,7 @@ void PythonQtShell_QAbstractAnimation::updateDirection(QAbstractAnimation::Direc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -259,7 +259,7 @@ void PythonQtShell_QAbstractAnimation::updateState(QAbstractAnimation::State ne if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -374,7 +374,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -407,7 +407,7 @@ bool PythonQtShell_QAbstractItemModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -440,7 +440,7 @@ bool PythonQtShell_QAbstractItemModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -473,7 +473,7 @@ void PythonQtShell_QAbstractItemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -495,7 +495,7 @@ int PythonQtShell_QAbstractItemModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -528,7 +528,7 @@ void PythonQtShell_QAbstractItemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -550,7 +550,7 @@ QVariant PythonQtShell_QAbstractItemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -583,7 +583,7 @@ bool PythonQtShell_QAbstractItemModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -616,7 +616,7 @@ bool PythonQtShell_QAbstractItemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -649,7 +649,7 @@ bool PythonQtShell_QAbstractItemModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -682,7 +682,7 @@ void PythonQtShell_QAbstractItemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -704,7 +704,7 @@ Qt::ItemFlags PythonQtShell_QAbstractItemModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -737,7 +737,7 @@ bool PythonQtShell_QAbstractItemModel::hasChildren(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -770,7 +770,7 @@ QVariant PythonQtShell_QAbstractItemModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -803,7 +803,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -836,7 +836,7 @@ bool PythonQtShell_QAbstractItemModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -869,7 +869,7 @@ bool PythonQtShell_QAbstractItemModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -902,7 +902,7 @@ QMap PythonQtShell_QAbstractItemModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -935,7 +935,7 @@ QList PythonQtShell_QAbstractItemModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -968,7 +968,7 @@ QMimeData* PythonQtShell_QAbstractItemModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -1001,7 +1001,7 @@ QStringList PythonQtShell_QAbstractItemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1034,7 +1034,7 @@ bool PythonQtShell_QAbstractItemModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -1067,7 +1067,7 @@ bool PythonQtShell_QAbstractItemModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -1100,7 +1100,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::parent(const QModelIndex& child0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1133,7 +1133,7 @@ bool PythonQtShell_QAbstractItemModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1166,7 +1166,7 @@ bool PythonQtShell_QAbstractItemModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1199,7 +1199,7 @@ void PythonQtShell_QAbstractItemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1221,7 +1221,7 @@ QHash PythonQtShell_QAbstractItemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -1254,7 +1254,7 @@ int PythonQtShell_QAbstractItemModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1287,7 +1287,7 @@ bool PythonQtShell_QAbstractItemModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1320,7 +1320,7 @@ bool PythonQtShell_QAbstractItemModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1353,7 +1353,7 @@ bool PythonQtShell_QAbstractItemModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1386,7 +1386,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1419,7 +1419,7 @@ void PythonQtShell_QAbstractItemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1441,7 +1441,7 @@ QSize PythonQtShell_QAbstractItemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1474,7 +1474,7 @@ bool PythonQtShell_QAbstractItemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1507,7 +1507,7 @@ Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1540,7 +1540,7 @@ Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1573,7 +1573,7 @@ void PythonQtShell_QAbstractItemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1918,7 +1918,7 @@ QModelIndex PythonQtShell_QAbstractListModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1951,7 +1951,7 @@ bool PythonQtShell_QAbstractListModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1984,7 +1984,7 @@ bool PythonQtShell_QAbstractListModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2017,7 +2017,7 @@ void PythonQtShell_QAbstractListModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2039,7 +2039,7 @@ void PythonQtShell_QAbstractListModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2061,7 +2061,7 @@ QVariant PythonQtShell_QAbstractListModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2094,7 +2094,7 @@ bool PythonQtShell_QAbstractListModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2127,7 +2127,7 @@ bool PythonQtShell_QAbstractListModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2160,7 +2160,7 @@ bool PythonQtShell_QAbstractListModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2193,7 +2193,7 @@ void PythonQtShell_QAbstractListModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2215,7 +2215,7 @@ Qt::ItemFlags PythonQtShell_QAbstractListModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2248,7 +2248,7 @@ QVariant PythonQtShell_QAbstractListModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2281,7 +2281,7 @@ QModelIndex PythonQtShell_QAbstractListModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2314,7 +2314,7 @@ bool PythonQtShell_QAbstractListModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2347,7 +2347,7 @@ bool PythonQtShell_QAbstractListModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2380,7 +2380,7 @@ QMap PythonQtShell_QAbstractListModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2413,7 +2413,7 @@ QList PythonQtShell_QAbstractListModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2446,7 +2446,7 @@ QMimeData* PythonQtShell_QAbstractListModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2479,7 +2479,7 @@ QStringList PythonQtShell_QAbstractListModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2512,7 +2512,7 @@ bool PythonQtShell_QAbstractListModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2545,7 +2545,7 @@ bool PythonQtShell_QAbstractListModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2578,7 +2578,7 @@ bool PythonQtShell_QAbstractListModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2611,7 +2611,7 @@ bool PythonQtShell_QAbstractListModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2644,7 +2644,7 @@ void PythonQtShell_QAbstractListModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2666,7 +2666,7 @@ QHash PythonQtShell_QAbstractListModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2699,7 +2699,7 @@ int PythonQtShell_QAbstractListModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2732,7 +2732,7 @@ bool PythonQtShell_QAbstractListModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2765,7 +2765,7 @@ bool PythonQtShell_QAbstractListModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2798,7 +2798,7 @@ bool PythonQtShell_QAbstractListModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2831,7 +2831,7 @@ QModelIndex PythonQtShell_QAbstractListModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2864,7 +2864,7 @@ void PythonQtShell_QAbstractListModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2886,7 +2886,7 @@ QSize PythonQtShell_QAbstractListModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2919,7 +2919,7 @@ bool PythonQtShell_QAbstractListModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2952,7 +2952,7 @@ Qt::DropActions PythonQtShell_QAbstractListModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2985,7 +2985,7 @@ Qt::DropActions PythonQtShell_QAbstractListModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3018,7 +3018,7 @@ void PythonQtShell_QAbstractListModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3063,7 +3063,7 @@ void PythonQtShell_QAbstractState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3085,7 +3085,7 @@ void PythonQtShell_QAbstractState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3107,7 +3107,7 @@ bool PythonQtShell_QAbstractState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3140,7 +3140,7 @@ bool PythonQtShell_QAbstractState::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3173,7 +3173,7 @@ void PythonQtShell_QAbstractState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3195,7 +3195,7 @@ void PythonQtShell_QAbstractState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QAbstractState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3287,7 +3287,7 @@ void PythonQtShell_QAbstractTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3309,7 +3309,7 @@ void PythonQtShell_QAbstractTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3331,7 +3331,7 @@ bool PythonQtShell_QAbstractTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3364,7 +3364,7 @@ bool PythonQtShell_QAbstractTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3397,7 +3397,7 @@ bool PythonQtShell_QAbstractTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3430,7 +3430,7 @@ void PythonQtShell_QAbstractTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3452,7 +3452,7 @@ void PythonQtShell_QAbstractTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3562,7 +3562,7 @@ void PythonQtShell_QAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3584,7 +3584,7 @@ void PythonQtShell_QAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3606,7 +3606,7 @@ int PythonQtShell_QAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3639,7 +3639,7 @@ bool PythonQtShell_QAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3672,7 +3672,7 @@ bool PythonQtShell_QAnimationGroup::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3705,7 +3705,7 @@ void PythonQtShell_QAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3727,7 +3727,7 @@ void PythonQtShell_QAnimationGroup::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3749,7 +3749,7 @@ void PythonQtShell_QAnimationGroup::updateDirection(QAbstractAnimation::Directio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3771,7 +3771,7 @@ void PythonQtShell_QAnimationGroup::updateState(QAbstractAnimation::State newSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3938,7 +3938,7 @@ bool PythonQtShell_QBuffer::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3971,7 +3971,7 @@ qint64 PythonQtShell_QBuffer::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4004,7 +4004,7 @@ qint64 PythonQtShell_QBuffer::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4037,7 +4037,7 @@ bool PythonQtShell_QBuffer::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4070,7 +4070,7 @@ void PythonQtShell_QBuffer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4092,7 +4092,7 @@ void PythonQtShell_QBuffer::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4114,7 +4114,7 @@ void PythonQtShell_QBuffer::connectNotify(const QMetaMethod& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -4136,7 +4136,7 @@ void PythonQtShell_QBuffer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4158,7 +4158,7 @@ void PythonQtShell_QBuffer::disconnectNotify(const QMetaMethod& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -4180,7 +4180,7 @@ bool PythonQtShell_QBuffer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4213,7 +4213,7 @@ bool PythonQtShell_QBuffer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4246,7 +4246,7 @@ bool PythonQtShell_QBuffer::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4279,7 +4279,7 @@ bool PythonQtShell_QBuffer::open(QIODevice::OpenMode openMode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4312,7 +4312,7 @@ qint64 PythonQtShell_QBuffer::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4345,7 +4345,7 @@ qint64 PythonQtShell_QBuffer::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4378,7 +4378,7 @@ qint64 PythonQtShell_QBuffer::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4411,7 +4411,7 @@ bool PythonQtShell_QBuffer::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4444,7 +4444,7 @@ bool PythonQtShell_QBuffer::seek(qint64 off0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4477,7 +4477,7 @@ qint64 PythonQtShell_QBuffer::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4510,7 +4510,7 @@ void PythonQtShell_QBuffer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4532,7 +4532,7 @@ bool PythonQtShell_QBuffer::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4565,7 +4565,7 @@ bool PythonQtShell_QBuffer::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4598,7 +4598,7 @@ qint64 PythonQtShell_QBuffer::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -6195,7 +6195,7 @@ void PythonQtShell_QEventLoop::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6217,7 +6217,7 @@ void PythonQtShell_QEventLoop::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6239,7 +6239,7 @@ bool PythonQtShell_QEventLoop::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6272,7 +6272,7 @@ bool PythonQtShell_QEventLoop::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6305,7 +6305,7 @@ void PythonQtShell_QEventLoop::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6380,7 +6380,7 @@ void PythonQtShell_QEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6402,7 +6402,7 @@ void PythonQtShell_QEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6424,7 +6424,7 @@ bool PythonQtShell_QEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6457,7 +6457,7 @@ bool PythonQtShell_QEventTransition::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6490,7 +6490,7 @@ bool PythonQtShell_QEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6523,7 +6523,7 @@ void PythonQtShell_QEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6545,7 +6545,7 @@ void PythonQtShell_QEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6614,7 +6614,7 @@ QStringList PythonQtShell_QFactoryInterface::keys() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keys"); + static PyObject* name = PyUnicode_FromString("keys"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; diff --git a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core1.cpp b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core1.cpp index a2a8257b0..c94bf9677 100644 --- a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +++ b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core1.cpp @@ -56,7 +56,7 @@ bool PythonQtShell_QFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -89,7 +89,7 @@ qint64 PythonQtShell_QFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -122,7 +122,7 @@ qint64 PythonQtShell_QFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -155,7 +155,7 @@ bool PythonQtShell_QFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -188,7 +188,7 @@ void PythonQtShell_QFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -210,7 +210,7 @@ void PythonQtShell_QFile::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -232,7 +232,7 @@ void PythonQtShell_QFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -254,7 +254,7 @@ bool PythonQtShell_QFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -287,7 +287,7 @@ bool PythonQtShell_QFile::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -320,7 +320,7 @@ QString PythonQtShell_QFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -353,7 +353,7 @@ bool PythonQtShell_QFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -386,7 +386,7 @@ bool PythonQtShell_QFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -419,7 +419,7 @@ QFileDevice::Permissions PythonQtShell_QFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -452,7 +452,7 @@ qint64 PythonQtShell_QFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -485,7 +485,7 @@ qint64 PythonQtShell_QFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -518,7 +518,7 @@ qint64 PythonQtShell_QFile::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -551,7 +551,7 @@ bool PythonQtShell_QFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -584,7 +584,7 @@ bool PythonQtShell_QFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -617,7 +617,7 @@ bool PythonQtShell_QFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -650,7 +650,7 @@ bool PythonQtShell_QFile::setPermissions(QFileDevice::Permissions permissionSp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -683,7 +683,7 @@ qint64 PythonQtShell_QFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -716,7 +716,7 @@ void PythonQtShell_QFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -738,7 +738,7 @@ bool PythonQtShell_QFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -771,7 +771,7 @@ bool PythonQtShell_QFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -804,7 +804,7 @@ qint64 PythonQtShell_QFile::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -967,7 +967,7 @@ bool PythonQtShell_QFileDevice::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1000,7 +1000,7 @@ qint64 PythonQtShell_QFileDevice::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1033,7 +1033,7 @@ qint64 PythonQtShell_QFileDevice::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1066,7 +1066,7 @@ bool PythonQtShell_QFileDevice::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1099,7 +1099,7 @@ void PythonQtShell_QFileDevice::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1121,7 +1121,7 @@ void PythonQtShell_QFileDevice::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1143,7 +1143,7 @@ void PythonQtShell_QFileDevice::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1165,7 +1165,7 @@ bool PythonQtShell_QFileDevice::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1198,7 +1198,7 @@ bool PythonQtShell_QFileDevice::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1231,7 +1231,7 @@ QString PythonQtShell_QFileDevice::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1264,7 +1264,7 @@ bool PythonQtShell_QFileDevice::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1297,7 +1297,7 @@ bool PythonQtShell_QFileDevice::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1330,7 +1330,7 @@ QFileDevice::Permissions PythonQtShell_QFileDevice::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -1363,7 +1363,7 @@ qint64 PythonQtShell_QFileDevice::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1396,7 +1396,7 @@ qint64 PythonQtShell_QFileDevice::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1429,7 +1429,7 @@ qint64 PythonQtShell_QFileDevice::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1462,7 +1462,7 @@ bool PythonQtShell_QFileDevice::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1495,7 +1495,7 @@ bool PythonQtShell_QFileDevice::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1528,7 +1528,7 @@ bool PythonQtShell_QFileDevice::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1561,7 +1561,7 @@ bool PythonQtShell_QFileDevice::setPermissions(QFileDevice::Permissions permis if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -1594,7 +1594,7 @@ qint64 PythonQtShell_QFileDevice::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1627,7 +1627,7 @@ void PythonQtShell_QFileDevice::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1649,7 +1649,7 @@ bool PythonQtShell_QFileDevice::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1682,7 +1682,7 @@ bool PythonQtShell_QFileDevice::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1715,7 +1715,7 @@ qint64 PythonQtShell_QFileDevice::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2109,7 +2109,7 @@ void PythonQtShell_QFileSelector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2131,7 +2131,7 @@ void PythonQtShell_QFileSelector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2153,7 +2153,7 @@ bool PythonQtShell_QFileSelector::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2186,7 +2186,7 @@ bool PythonQtShell_QFileSelector::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2219,7 +2219,7 @@ void PythonQtShell_QFileSelector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2289,7 +2289,7 @@ void PythonQtShell_QFileSystemWatcher::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2311,7 +2311,7 @@ void PythonQtShell_QFileSystemWatcher::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2333,7 +2333,7 @@ bool PythonQtShell_QFileSystemWatcher::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2366,7 +2366,7 @@ bool PythonQtShell_QFileSystemWatcher::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2399,7 +2399,7 @@ void PythonQtShell_QFileSystemWatcher::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2478,7 +2478,7 @@ void PythonQtShell_QFinalState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2500,7 +2500,7 @@ void PythonQtShell_QFinalState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2522,7 +2522,7 @@ bool PythonQtShell_QFinalState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2555,7 +2555,7 @@ bool PythonQtShell_QFinalState::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2588,7 +2588,7 @@ void PythonQtShell_QFinalState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2610,7 +2610,7 @@ void PythonQtShell_QFinalState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2632,7 +2632,7 @@ void PythonQtShell_QFinalState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2677,7 +2677,7 @@ void PythonQtShell_QHistoryState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2699,7 +2699,7 @@ void PythonQtShell_QHistoryState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2721,7 +2721,7 @@ bool PythonQtShell_QHistoryState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2754,7 +2754,7 @@ bool PythonQtShell_QHistoryState::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2787,7 +2787,7 @@ void PythonQtShell_QHistoryState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2809,7 +2809,7 @@ void PythonQtShell_QHistoryState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2831,7 +2831,7 @@ void PythonQtShell_QHistoryState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2910,7 +2910,7 @@ bool PythonQtShell_QIODevice::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2943,7 +2943,7 @@ qint64 PythonQtShell_QIODevice::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2976,7 +2976,7 @@ qint64 PythonQtShell_QIODevice::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3009,7 +3009,7 @@ bool PythonQtShell_QIODevice::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3042,7 +3042,7 @@ void PythonQtShell_QIODevice::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3064,7 +3064,7 @@ void PythonQtShell_QIODevice::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3086,7 +3086,7 @@ void PythonQtShell_QIODevice::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3108,7 +3108,7 @@ bool PythonQtShell_QIODevice::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3141,7 +3141,7 @@ bool PythonQtShell_QIODevice::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3174,7 +3174,7 @@ bool PythonQtShell_QIODevice::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3207,7 +3207,7 @@ bool PythonQtShell_QIODevice::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3240,7 +3240,7 @@ qint64 PythonQtShell_QIODevice::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3273,7 +3273,7 @@ qint64 PythonQtShell_QIODevice::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3306,7 +3306,7 @@ qint64 PythonQtShell_QIODevice::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3339,7 +3339,7 @@ bool PythonQtShell_QIODevice::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3372,7 +3372,7 @@ bool PythonQtShell_QIODevice::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3405,7 +3405,7 @@ qint64 PythonQtShell_QIODevice::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3438,7 +3438,7 @@ void PythonQtShell_QIODevice::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3460,7 +3460,7 @@ bool PythonQtShell_QIODevice::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3493,7 +3493,7 @@ bool PythonQtShell_QIODevice::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3526,7 +3526,7 @@ qint64 PythonQtShell_QIODevice::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3811,7 +3811,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3844,7 +3844,7 @@ bool PythonQtShell_QIdentityProxyModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3877,7 +3877,7 @@ bool PythonQtShell_QIdentityProxyModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3910,7 +3910,7 @@ void PythonQtShell_QIdentityProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3932,7 +3932,7 @@ int PythonQtShell_QIdentityProxyModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3965,7 +3965,7 @@ void PythonQtShell_QIdentityProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3987,7 +3987,7 @@ QVariant PythonQtShell_QIdentityProxyModel::data(const QModelIndex& proxyIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -4020,7 +4020,7 @@ bool PythonQtShell_QIdentityProxyModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -4053,7 +4053,7 @@ bool PythonQtShell_QIdentityProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4086,7 +4086,7 @@ bool PythonQtShell_QIdentityProxyModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4119,7 +4119,7 @@ void PythonQtShell_QIdentityProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4141,7 +4141,7 @@ Qt::ItemFlags PythonQtShell_QIdentityProxyModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -4174,7 +4174,7 @@ bool PythonQtShell_QIdentityProxyModel::hasChildren(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -4207,7 +4207,7 @@ QVariant PythonQtShell_QIdentityProxyModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -4240,7 +4240,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4273,7 +4273,7 @@ bool PythonQtShell_QIdentityProxyModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4306,7 +4306,7 @@ bool PythonQtShell_QIdentityProxyModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4339,7 +4339,7 @@ QMap PythonQtShell_QIdentityProxyModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -4372,7 +4372,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::mapFromSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -4405,7 +4405,7 @@ QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -4438,7 +4438,7 @@ QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionToSource(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -4471,7 +4471,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -4504,7 +4504,7 @@ QList PythonQtShell_QIdentityProxyModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -4537,7 +4537,7 @@ QMimeData* PythonQtShell_QIdentityProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -4570,7 +4570,7 @@ QStringList PythonQtShell_QIdentityProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4603,7 +4603,7 @@ bool PythonQtShell_QIdentityProxyModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4636,7 +4636,7 @@ bool PythonQtShell_QIdentityProxyModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4669,7 +4669,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::parent(const QModelIndex& child if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -4702,7 +4702,7 @@ bool PythonQtShell_QIdentityProxyModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4735,7 +4735,7 @@ bool PythonQtShell_QIdentityProxyModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4768,7 +4768,7 @@ void PythonQtShell_QIdentityProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4790,7 +4790,7 @@ QHash PythonQtShell_QIdentityProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4823,7 +4823,7 @@ int PythonQtShell_QIdentityProxyModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4856,7 +4856,7 @@ bool PythonQtShell_QIdentityProxyModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4889,7 +4889,7 @@ bool PythonQtShell_QIdentityProxyModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4922,7 +4922,7 @@ bool PythonQtShell_QIdentityProxyModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4955,7 +4955,7 @@ void PythonQtShell_QIdentityProxyModel::setSourceModel(QAbstractItemModel* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -4977,7 +4977,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -5010,7 +5010,7 @@ void PythonQtShell_QIdentityProxyModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -5032,7 +5032,7 @@ QSize PythonQtShell_QIdentityProxyModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -5065,7 +5065,7 @@ bool PythonQtShell_QIdentityProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5098,7 +5098,7 @@ Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -5131,7 +5131,7 @@ Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -5164,7 +5164,7 @@ void PythonQtShell_QIdentityProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5849,7 +5849,7 @@ void PythonQtShell_QLibrary::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5871,7 +5871,7 @@ void PythonQtShell_QLibrary::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5893,7 +5893,7 @@ bool PythonQtShell_QLibrary::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5926,7 +5926,7 @@ bool PythonQtShell_QLibrary::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5959,7 +5959,7 @@ void PythonQtShell_QLibrary::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6889,7 +6889,7 @@ void PythonQtShell_QMimeData::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6911,7 +6911,7 @@ void PythonQtShell_QMimeData::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6933,7 +6933,7 @@ bool PythonQtShell_QMimeData::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6966,7 +6966,7 @@ bool PythonQtShell_QMimeData::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6999,7 +6999,7 @@ QStringList PythonQtShell_QMimeData::formats() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("formats"); + static PyObject* name = PyUnicode_FromString("formats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7032,7 +7032,7 @@ bool PythonQtShell_QMimeData::hasFormat(const QString& mimetype0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFormat"); + static PyObject* name = PyUnicode_FromString("hasFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -7065,7 +7065,7 @@ QVariant PythonQtShell_QMimeData::retrieveData(const QString& mimetype0, QVari if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("retrieveData"); + static PyObject* name = PyUnicode_FromString("retrieveData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "QVariant::Type"}; @@ -7098,7 +7098,7 @@ void PythonQtShell_QMimeData::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core2.cpp b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core2.cpp index 5ab1781b7..6935a4294 100644 --- a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +++ b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core2.cpp @@ -84,7 +84,7 @@ void PythonQtShell_QObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -106,7 +106,7 @@ void PythonQtShell_QObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -128,7 +128,7 @@ bool PythonQtShell_QObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -161,7 +161,7 @@ bool PythonQtShell_QObject::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -194,7 +194,7 @@ void PythonQtShell_QObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -426,7 +426,7 @@ void PythonQtShell_QParallelAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -448,7 +448,7 @@ void PythonQtShell_QParallelAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -470,7 +470,7 @@ int PythonQtShell_QParallelAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -503,7 +503,7 @@ bool PythonQtShell_QParallelAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -536,7 +536,7 @@ bool PythonQtShell_QParallelAnimationGroup::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -569,7 +569,7 @@ void PythonQtShell_QParallelAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -591,7 +591,7 @@ void PythonQtShell_QParallelAnimationGroup::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -613,7 +613,7 @@ void PythonQtShell_QParallelAnimationGroup::updateDirection(QAbstractAnimation:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -635,7 +635,7 @@ void PythonQtShell_QParallelAnimationGroup::updateState(QAbstractAnimation::Stat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -680,7 +680,7 @@ void PythonQtShell_QPauseAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -702,7 +702,7 @@ void PythonQtShell_QPauseAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -724,7 +724,7 @@ int PythonQtShell_QPauseAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -757,7 +757,7 @@ bool PythonQtShell_QPauseAnimation::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -790,7 +790,7 @@ bool PythonQtShell_QPauseAnimation::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -823,7 +823,7 @@ void PythonQtShell_QPauseAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -845,7 +845,7 @@ void PythonQtShell_QPauseAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -867,7 +867,7 @@ void PythonQtShell_QPauseAnimation::updateDirection(QAbstractAnimation::Directio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -889,7 +889,7 @@ void PythonQtShell_QPauseAnimation::updateState(QAbstractAnimation::State newSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -1049,7 +1049,7 @@ bool PythonQtShell_QProcess::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1082,7 +1082,7 @@ qint64 PythonQtShell_QProcess::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1115,7 +1115,7 @@ qint64 PythonQtShell_QProcess::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1148,7 +1148,7 @@ bool PythonQtShell_QProcess::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1181,7 +1181,7 @@ void PythonQtShell_QProcess::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1203,7 +1203,7 @@ void PythonQtShell_QProcess::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1225,7 +1225,7 @@ void PythonQtShell_QProcess::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1247,7 +1247,7 @@ bool PythonQtShell_QProcess::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1280,7 +1280,7 @@ bool PythonQtShell_QProcess::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1313,7 +1313,7 @@ bool PythonQtShell_QProcess::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1346,7 +1346,7 @@ bool PythonQtShell_QProcess::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1379,7 +1379,7 @@ qint64 PythonQtShell_QProcess::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1412,7 +1412,7 @@ qint64 PythonQtShell_QProcess::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1445,7 +1445,7 @@ qint64 PythonQtShell_QProcess::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1478,7 +1478,7 @@ bool PythonQtShell_QProcess::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1511,7 +1511,7 @@ bool PythonQtShell_QProcess::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1544,7 +1544,7 @@ void PythonQtShell_QProcess::setupChildProcess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupChildProcess"); + static PyObject* name = PyUnicode_FromString("setupChildProcess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1566,7 +1566,7 @@ qint64 PythonQtShell_QProcess::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1599,7 +1599,7 @@ void PythonQtShell_QProcess::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1621,7 +1621,7 @@ bool PythonQtShell_QProcess::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1654,7 +1654,7 @@ bool PythonQtShell_QProcess::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1687,7 +1687,7 @@ qint64 PythonQtShell_QProcess::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2043,7 +2043,7 @@ void PythonQtShell_QPropertyAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2065,7 +2065,7 @@ void PythonQtShell_QPropertyAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2087,7 +2087,7 @@ int PythonQtShell_QPropertyAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2120,7 +2120,7 @@ bool PythonQtShell_QPropertyAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2153,7 +2153,7 @@ bool PythonQtShell_QPropertyAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2186,7 +2186,7 @@ QVariant PythonQtShell_QPropertyAnimation::interpolated(const QVariant& from0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -2219,7 +2219,7 @@ void PythonQtShell_QPropertyAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2241,7 +2241,7 @@ void PythonQtShell_QPropertyAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2263,7 +2263,7 @@ void PythonQtShell_QPropertyAnimation::updateCurrentValue(const QVariant& value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2285,7 +2285,7 @@ void PythonQtShell_QPropertyAnimation::updateDirection(QAbstractAnimation::Direc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -2307,7 +2307,7 @@ void PythonQtShell_QPropertyAnimation::updateState(QAbstractAnimation::State ne if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2978,7 +2978,7 @@ void PythonQtShell_QRunnable::run() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3025,7 +3025,7 @@ bool PythonQtShell_QSaveFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3058,7 +3058,7 @@ qint64 PythonQtShell_QSaveFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3091,7 +3091,7 @@ qint64 PythonQtShell_QSaveFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3124,7 +3124,7 @@ bool PythonQtShell_QSaveFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3157,7 +3157,7 @@ void PythonQtShell_QSaveFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3179,7 +3179,7 @@ void PythonQtShell_QSaveFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3201,7 +3201,7 @@ bool PythonQtShell_QSaveFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3234,7 +3234,7 @@ bool PythonQtShell_QSaveFile::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3267,7 +3267,7 @@ QString PythonQtShell_QSaveFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3300,7 +3300,7 @@ bool PythonQtShell_QSaveFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3333,7 +3333,7 @@ bool PythonQtShell_QSaveFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3366,7 +3366,7 @@ QFileDevice::Permissions PythonQtShell_QSaveFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -3399,7 +3399,7 @@ qint64 PythonQtShell_QSaveFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3432,7 +3432,7 @@ qint64 PythonQtShell_QSaveFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3465,7 +3465,7 @@ qint64 PythonQtShell_QSaveFile::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3498,7 +3498,7 @@ bool PythonQtShell_QSaveFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3531,7 +3531,7 @@ bool PythonQtShell_QSaveFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3564,7 +3564,7 @@ bool PythonQtShell_QSaveFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3597,7 +3597,7 @@ bool PythonQtShell_QSaveFile::setPermissions(QFileDevice::Permissions permissi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -3630,7 +3630,7 @@ qint64 PythonQtShell_QSaveFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3663,7 +3663,7 @@ void PythonQtShell_QSaveFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3685,7 +3685,7 @@ bool PythonQtShell_QSaveFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3718,7 +3718,7 @@ bool PythonQtShell_QSaveFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3751,7 +3751,7 @@ qint64 PythonQtShell_QSaveFile::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3871,7 +3871,7 @@ void PythonQtShell_QSequentialAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3893,7 +3893,7 @@ void PythonQtShell_QSequentialAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3915,7 +3915,7 @@ int PythonQtShell_QSequentialAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3948,7 +3948,7 @@ bool PythonQtShell_QSequentialAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3981,7 +3981,7 @@ bool PythonQtShell_QSequentialAnimationGroup::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4014,7 +4014,7 @@ void PythonQtShell_QSequentialAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4036,7 +4036,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4058,7 +4058,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateDirection(QAbstractAnimation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -4080,7 +4080,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateState(QAbstractAnimation::St if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -4140,7 +4140,7 @@ void PythonQtShell_QSettings::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4162,7 +4162,7 @@ void PythonQtShell_QSettings::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4184,7 +4184,7 @@ bool PythonQtShell_QSettings::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4217,7 +4217,7 @@ bool PythonQtShell_QSettings::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4250,7 +4250,7 @@ void PythonQtShell_QSettings::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4476,7 +4476,7 @@ void PythonQtShell_QSharedMemory::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4498,7 +4498,7 @@ void PythonQtShell_QSharedMemory::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4520,7 +4520,7 @@ bool PythonQtShell_QSharedMemory::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4553,7 +4553,7 @@ bool PythonQtShell_QSharedMemory::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4586,7 +4586,7 @@ void PythonQtShell_QSharedMemory::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4730,7 +4730,7 @@ void PythonQtShell_QSignalMapper::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4752,7 +4752,7 @@ void PythonQtShell_QSignalMapper::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4774,7 +4774,7 @@ bool PythonQtShell_QSignalMapper::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4807,7 +4807,7 @@ bool PythonQtShell_QSignalMapper::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4840,7 +4840,7 @@ void PythonQtShell_QSignalMapper::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4930,7 +4930,7 @@ void PythonQtShell_QSignalTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4952,7 +4952,7 @@ void PythonQtShell_QSignalTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4974,7 +4974,7 @@ bool PythonQtShell_QSignalTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5007,7 +5007,7 @@ bool PythonQtShell_QSignalTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5040,7 +5040,7 @@ bool PythonQtShell_QSignalTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5073,7 +5073,7 @@ void PythonQtShell_QSignalTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5095,7 +5095,7 @@ void PythonQtShell_QSignalTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5164,7 +5164,7 @@ void PythonQtShell_QSocketNotifier::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5186,7 +5186,7 @@ void PythonQtShell_QSocketNotifier::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5208,7 +5208,7 @@ bool PythonQtShell_QSocketNotifier::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5241,7 +5241,7 @@ bool PythonQtShell_QSocketNotifier::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5274,7 +5274,7 @@ void PythonQtShell_QSocketNotifier::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5381,7 +5381,7 @@ void PythonQtShell_QState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5403,7 +5403,7 @@ void PythonQtShell_QState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5425,7 +5425,7 @@ bool PythonQtShell_QState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5458,7 +5458,7 @@ bool PythonQtShell_QState::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5491,7 +5491,7 @@ void PythonQtShell_QState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5513,7 +5513,7 @@ void PythonQtShell_QState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5535,7 +5535,7 @@ void PythonQtShell_QState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5644,7 +5644,7 @@ void PythonQtShell_QStateMachine::beginMicrostep(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginMicrostep"); + static PyObject* name = PyUnicode_FromString("beginMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5666,7 +5666,7 @@ void PythonQtShell_QStateMachine::beginSelectTransitions(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginSelectTransitions"); + static PyObject* name = PyUnicode_FromString("beginSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5688,7 +5688,7 @@ void PythonQtShell_QStateMachine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5710,7 +5710,7 @@ void PythonQtShell_QStateMachine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5732,7 +5732,7 @@ void PythonQtShell_QStateMachine::endMicrostep(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endMicrostep"); + static PyObject* name = PyUnicode_FromString("endMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5754,7 +5754,7 @@ void PythonQtShell_QStateMachine::endSelectTransitions(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endSelectTransitions"); + static PyObject* name = PyUnicode_FromString("endSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5776,7 +5776,7 @@ bool PythonQtShell_QStateMachine::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5809,7 +5809,7 @@ bool PythonQtShell_QStateMachine::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5842,7 +5842,7 @@ void PythonQtShell_QStateMachine::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5864,7 +5864,7 @@ void PythonQtShell_QStateMachine::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5886,7 +5886,7 @@ void PythonQtShell_QStateMachine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core3.cpp b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core3.cpp index 1edd9ea10..2e4b871f2 100644 --- a/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +++ b/generated_cpp_511/com_trolltech_qt_core/com_trolltech_qt_core3.cpp @@ -382,7 +382,7 @@ bool PythonQtShell_QTemporaryFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -415,7 +415,7 @@ qint64 PythonQtShell_QTemporaryFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -448,7 +448,7 @@ qint64 PythonQtShell_QTemporaryFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -481,7 +481,7 @@ bool PythonQtShell_QTemporaryFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -514,7 +514,7 @@ void PythonQtShell_QTemporaryFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -536,7 +536,7 @@ void PythonQtShell_QTemporaryFile::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -558,7 +558,7 @@ void PythonQtShell_QTemporaryFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -580,7 +580,7 @@ bool PythonQtShell_QTemporaryFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -613,7 +613,7 @@ bool PythonQtShell_QTemporaryFile::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -646,7 +646,7 @@ QString PythonQtShell_QTemporaryFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("uniqueFilename"); + static PyObject* name = PyUnicode_FromString("uniqueFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -679,7 +679,7 @@ bool PythonQtShell_QTemporaryFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -712,7 +712,7 @@ bool PythonQtShell_QTemporaryFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -745,7 +745,7 @@ QFileDevice::Permissions PythonQtShell_QTemporaryFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -778,7 +778,7 @@ qint64 PythonQtShell_QTemporaryFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -811,7 +811,7 @@ qint64 PythonQtShell_QTemporaryFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -844,7 +844,7 @@ qint64 PythonQtShell_QTemporaryFile::readLineData(char* data0, qint64 maxlen1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -877,7 +877,7 @@ bool PythonQtShell_QTemporaryFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -910,7 +910,7 @@ bool PythonQtShell_QTemporaryFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -943,7 +943,7 @@ bool PythonQtShell_QTemporaryFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -976,7 +976,7 @@ bool PythonQtShell_QTemporaryFile::setPermissions(QFileDevice::Permissions per if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -1009,7 +1009,7 @@ qint64 PythonQtShell_QTemporaryFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1042,7 +1042,7 @@ void PythonQtShell_QTemporaryFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1064,7 +1064,7 @@ bool PythonQtShell_QTemporaryFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1097,7 +1097,7 @@ bool PythonQtShell_QTemporaryFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1130,7 +1130,7 @@ qint64 PythonQtShell_QTemporaryFile::writeData(const char* data0, qint64 len1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1322,7 +1322,7 @@ QList PythonQtShell_QTextCodec::aliases() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aliases"); + static PyObject* name = PyUnicode_FromString("aliases"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1355,7 +1355,7 @@ QByteArray PythonQtShell_QTextCodec::convertFromUnicode(const QChar* in0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("convertFromUnicode"); + static PyObject* name = PyUnicode_FromString("convertFromUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QChar*" , "int" , "QTextCodec::ConverterState*"}; @@ -1388,7 +1388,7 @@ QString PythonQtShell_QTextCodec::convertToUnicode(const char* in0, int lengt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("convertToUnicode"); + static PyObject* name = PyUnicode_FromString("convertToUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "int" , "QTextCodec::ConverterState*"}; @@ -1421,7 +1421,7 @@ int PythonQtShell_QTextCodec::mibEnum() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mibEnum"); + static PyObject* name = PyUnicode_FromString("mibEnum"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1454,7 +1454,7 @@ QByteArray PythonQtShell_QTextCodec::name() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -1925,7 +1925,7 @@ void PythonQtShell_QThreadPool::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1947,7 +1947,7 @@ void PythonQtShell_QThreadPool::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1969,7 +1969,7 @@ bool PythonQtShell_QThreadPool::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2002,7 +2002,7 @@ bool PythonQtShell_QThreadPool::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2035,7 +2035,7 @@ void PythonQtShell_QThreadPool::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2160,7 +2160,7 @@ void PythonQtShell_QTimeLine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2182,7 +2182,7 @@ void PythonQtShell_QTimeLine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2204,7 +2204,7 @@ bool PythonQtShell_QTimeLine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2237,7 +2237,7 @@ bool PythonQtShell_QTimeLine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2270,7 +2270,7 @@ void PythonQtShell_QTimeLine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2292,7 +2292,7 @@ qreal PythonQtShell_QTimeLine::valueForTime(int msec0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueForTime"); + static PyObject* name = PyUnicode_FromString("valueForTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal" , "int"}; @@ -2647,7 +2647,7 @@ void PythonQtShell_QTimer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2669,7 +2669,7 @@ void PythonQtShell_QTimer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2691,7 +2691,7 @@ bool PythonQtShell_QTimer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2724,7 +2724,7 @@ bool PythonQtShell_QTimer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2757,7 +2757,7 @@ void PythonQtShell_QTimer::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2872,7 +2872,7 @@ void PythonQtShell_QTranslator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2894,7 +2894,7 @@ void PythonQtShell_QTranslator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2916,7 +2916,7 @@ bool PythonQtShell_QTranslator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2949,7 +2949,7 @@ bool PythonQtShell_QTranslator::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2982,7 +2982,7 @@ bool PythonQtShell_QTranslator::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3015,7 +3015,7 @@ void PythonQtShell_QTranslator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3037,7 +3037,7 @@ QString PythonQtShell_QTranslator::translate(const char* context0, const char* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("translate"); + static PyObject* name = PyUnicode_FromString("translate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "const char*" , "const char*" , "int"}; @@ -3385,7 +3385,7 @@ void PythonQtShell_QVariantAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3407,7 +3407,7 @@ void PythonQtShell_QVariantAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3429,7 +3429,7 @@ int PythonQtShell_QVariantAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3462,7 +3462,7 @@ bool PythonQtShell_QVariantAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3495,7 +3495,7 @@ bool PythonQtShell_QVariantAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3528,7 +3528,7 @@ QVariant PythonQtShell_QVariantAnimation::interpolated(const QVariant& from0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -3561,7 +3561,7 @@ void PythonQtShell_QVariantAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3583,7 +3583,7 @@ void PythonQtShell_QVariantAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3605,7 +3605,7 @@ void PythonQtShell_QVariantAnimation::updateCurrentValue(const QVariant& value0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -3627,7 +3627,7 @@ void PythonQtShell_QVariantAnimation::updateDirection(QAbstractAnimation::Direct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3649,7 +3649,7 @@ void PythonQtShell_QVariantAnimation::updateState(QAbstractAnimation::State new if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3800,7 +3800,7 @@ QString PythonQtShell_QXmlStreamEntityResolver::resolveEntity(const QString& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "const QString&"}; @@ -3833,7 +3833,7 @@ QString PythonQtShell_QXmlStreamEntityResolver::resolveUndeclaredEntity(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveUndeclaredEntity"); + static PyObject* name = PyUnicode_FromString("resolveUndeclaredEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp index 0c5370945..c67b93e9c 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp @@ -118,7 +118,7 @@ void PythonQtShell_QAbstractButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -140,7 +140,7 @@ void PythonQtShell_QAbstractButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -162,7 +162,7 @@ void PythonQtShell_QAbstractButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -184,7 +184,7 @@ void PythonQtShell_QAbstractButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -206,7 +206,7 @@ void PythonQtShell_QAbstractButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -228,7 +228,7 @@ void PythonQtShell_QAbstractButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -250,7 +250,7 @@ void PythonQtShell_QAbstractButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -272,7 +272,7 @@ int PythonQtShell_QAbstractButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -305,7 +305,7 @@ void PythonQtShell_QAbstractButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -327,7 +327,7 @@ void PythonQtShell_QAbstractButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -349,7 +349,7 @@ void PythonQtShell_QAbstractButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -371,7 +371,7 @@ void PythonQtShell_QAbstractButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -393,7 +393,7 @@ void PythonQtShell_QAbstractButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -415,7 +415,7 @@ bool PythonQtShell_QAbstractButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -448,7 +448,7 @@ bool PythonQtShell_QAbstractButton::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -481,7 +481,7 @@ void PythonQtShell_QAbstractButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -503,7 +503,7 @@ bool PythonQtShell_QAbstractButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -536,7 +536,7 @@ void PythonQtShell_QAbstractButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -558,7 +558,7 @@ bool PythonQtShell_QAbstractButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -591,7 +591,7 @@ int PythonQtShell_QAbstractButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -624,7 +624,7 @@ void PythonQtShell_QAbstractButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -646,7 +646,7 @@ bool PythonQtShell_QAbstractButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -679,7 +679,7 @@ void PythonQtShell_QAbstractButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -701,7 +701,7 @@ void PythonQtShell_QAbstractButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -723,7 +723,7 @@ QVariant PythonQtShell_QAbstractButton::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -756,7 +756,7 @@ void PythonQtShell_QAbstractButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -778,7 +778,7 @@ void PythonQtShell_QAbstractButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -800,7 +800,7 @@ void PythonQtShell_QAbstractButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -822,7 +822,7 @@ int PythonQtShell_QAbstractButton::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -855,7 +855,7 @@ QSize PythonQtShell_QAbstractButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -888,7 +888,7 @@ void PythonQtShell_QAbstractButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -910,7 +910,7 @@ void PythonQtShell_QAbstractButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -932,7 +932,7 @@ void PythonQtShell_QAbstractButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -954,7 +954,7 @@ void PythonQtShell_QAbstractButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -976,7 +976,7 @@ void PythonQtShell_QAbstractButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -998,7 +998,7 @@ bool PythonQtShell_QAbstractButton::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1031,7 +1031,7 @@ void PythonQtShell_QAbstractButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1053,7 +1053,7 @@ QPaintEngine* PythonQtShell_QAbstractButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1086,7 +1086,7 @@ void PythonQtShell_QAbstractButton::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1108,7 +1108,7 @@ QPaintDevice* PythonQtShell_QAbstractButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1141,7 +1141,7 @@ void PythonQtShell_QAbstractButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1163,7 +1163,7 @@ void PythonQtShell_QAbstractButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1185,7 +1185,7 @@ QPainter* PythonQtShell_QAbstractButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1218,7 +1218,7 @@ void PythonQtShell_QAbstractButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1240,7 +1240,7 @@ QSize PythonQtShell_QAbstractButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1273,7 +1273,7 @@ void PythonQtShell_QAbstractButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1295,7 +1295,7 @@ void PythonQtShell_QAbstractButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1317,7 +1317,7 @@ void PythonQtShell_QAbstractButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1482,7 +1482,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1504,7 +1504,7 @@ QRectF PythonQtShell_QAbstractGraphicsShapeItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1537,7 +1537,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithItem(const QGraphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1570,7 +1570,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithPath(const QPainterP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1603,7 +1603,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::contains(const QPointF& point0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1636,7 +1636,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::contextMenuEvent(QGraphicsSceneCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1658,7 +1658,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragEnterEvent(QGraphicsSceneDrag if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1680,7 +1680,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragLeaveEvent(QGraphicsSceneDrag if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1702,7 +1702,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragMoveEvent(QGraphicsSceneDragD if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1724,7 +1724,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dropEvent(QGraphicsSceneDragDropE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1746,7 +1746,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::extension(const QVariant& v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1779,7 +1779,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::focusInEvent(QFocusEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1801,7 +1801,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::focusOutEvent(QFocusEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1823,7 +1823,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverEnterEvent(QGraphicsSceneHov if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1845,7 +1845,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverLeaveEvent(QGraphicsSceneHov if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1867,7 +1867,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverMoveEvent(QGraphicsSceneHove if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1889,7 +1889,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::inputMethodEvent(QInputMethodEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1911,7 +1911,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::inputMethodQuery(Qt::InputMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1944,7 +1944,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1977,7 +1977,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::itemChange(QGraphicsItem::Gr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -2013,7 +2013,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2035,7 +2035,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::keyReleaseEvent(QKeyEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2057,7 +2057,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseDoubleClickEvent(QGraphicsSc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2079,7 +2079,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseMoveEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2101,7 +2101,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mousePressEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2123,7 +2123,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseReleaseEvent(QGraphicsSceneM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2145,7 +2145,7 @@ QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2178,7 +2178,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::paint(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2200,7 +2200,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2233,7 +2233,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEventFilter(QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2266,7 +2266,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::setExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2288,7 +2288,7 @@ QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2321,7 +2321,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::supportsExtension(QGraphicsItem: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2354,7 +2354,7 @@ int PythonQtShell_QAbstractGraphicsShapeItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2387,7 +2387,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::wheelEvent(QGraphicsSceneWheelEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2439,7 +2439,7 @@ void PythonQtShell_QAbstractItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2461,7 +2461,7 @@ QWidget* PythonQtShell_QAbstractItemDelegate::createEditor(QWidget* parent0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2494,7 +2494,7 @@ void PythonQtShell_QAbstractItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2516,7 +2516,7 @@ void PythonQtShell_QAbstractItemDelegate::destroyEditor(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2538,7 +2538,7 @@ bool PythonQtShell_QAbstractItemDelegate::editorEvent(QEvent* event0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2571,7 +2571,7 @@ bool PythonQtShell_QAbstractItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2604,7 +2604,7 @@ bool PythonQtShell_QAbstractItemDelegate::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2637,7 +2637,7 @@ bool PythonQtShell_QAbstractItemDelegate::helpEvent(QHelpEvent* event0, QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2670,7 +2670,7 @@ void PythonQtShell_QAbstractItemDelegate::paint(QPainter* painter0, const QStyl if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2692,7 +2692,7 @@ QVector PythonQtShell_QAbstractItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -2725,7 +2725,7 @@ void PythonQtShell_QAbstractItemDelegate::setEditorData(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2747,7 +2747,7 @@ void PythonQtShell_QAbstractItemDelegate::setModelData(QWidget* editor0, QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -2769,7 +2769,7 @@ QSize PythonQtShell_QAbstractItemDelegate::sizeHint(const QStyleOptionViewItem& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2802,7 +2802,7 @@ void PythonQtShell_QAbstractItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2824,7 +2824,7 @@ void PythonQtShell_QAbstractItemDelegate::updateEditorGeometry(QWidget* editor0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2919,7 +2919,7 @@ void PythonQtShell_QAbstractItemView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2941,7 +2941,7 @@ void PythonQtShell_QAbstractItemView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2963,7 +2963,7 @@ void PythonQtShell_QAbstractItemView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2985,7 +2985,7 @@ void PythonQtShell_QAbstractItemView::closeEditor(QWidget* editor0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -3007,7 +3007,7 @@ void PythonQtShell_QAbstractItemView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3029,7 +3029,7 @@ void PythonQtShell_QAbstractItemView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3051,7 +3051,7 @@ void PythonQtShell_QAbstractItemView::contextMenuEvent(QContextMenuEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3073,7 +3073,7 @@ void PythonQtShell_QAbstractItemView::currentChanged(const QModelIndex& current if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3095,7 +3095,7 @@ void PythonQtShell_QAbstractItemView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3117,7 +3117,7 @@ void PythonQtShell_QAbstractItemView::dataChanged(const QModelIndex& topLeft0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -3139,7 +3139,7 @@ int PythonQtShell_QAbstractItemView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3172,7 +3172,7 @@ void PythonQtShell_QAbstractItemView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3194,7 +3194,7 @@ void PythonQtShell_QAbstractItemView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3216,7 +3216,7 @@ void PythonQtShell_QAbstractItemView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3238,7 +3238,7 @@ void PythonQtShell_QAbstractItemView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3260,7 +3260,7 @@ void PythonQtShell_QAbstractItemView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3282,7 +3282,7 @@ bool PythonQtShell_QAbstractItemView::edit(const QModelIndex& index0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -3315,7 +3315,7 @@ void PythonQtShell_QAbstractItemView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3337,7 +3337,7 @@ void PythonQtShell_QAbstractItemView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3359,7 +3359,7 @@ bool PythonQtShell_QAbstractItemView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3392,7 +3392,7 @@ bool PythonQtShell_QAbstractItemView::eventFilter(QObject* object0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3425,7 +3425,7 @@ void PythonQtShell_QAbstractItemView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3447,7 +3447,7 @@ bool PythonQtShell_QAbstractItemView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3480,7 +3480,7 @@ void PythonQtShell_QAbstractItemView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3502,7 +3502,7 @@ bool PythonQtShell_QAbstractItemView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3535,7 +3535,7 @@ int PythonQtShell_QAbstractItemView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3568,7 +3568,7 @@ void PythonQtShell_QAbstractItemView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3590,7 +3590,7 @@ int PythonQtShell_QAbstractItemView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3623,7 +3623,7 @@ void PythonQtShell_QAbstractItemView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3645,7 +3645,7 @@ void PythonQtShell_QAbstractItemView::horizontalScrollbarValueChanged(int value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3667,7 +3667,7 @@ QModelIndex PythonQtShell_QAbstractItemView::indexAt(const QPoint& point0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3700,7 +3700,7 @@ void PythonQtShell_QAbstractItemView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3722,7 +3722,7 @@ void PythonQtShell_QAbstractItemView::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3744,7 +3744,7 @@ QVariant PythonQtShell_QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3777,7 +3777,7 @@ bool PythonQtShell_QAbstractItemView::isIndexHidden(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3810,7 +3810,7 @@ void PythonQtShell_QAbstractItemView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3832,7 +3832,7 @@ void PythonQtShell_QAbstractItemView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3854,7 +3854,7 @@ void PythonQtShell_QAbstractItemView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3876,7 +3876,7 @@ void PythonQtShell_QAbstractItemView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3898,7 +3898,7 @@ int PythonQtShell_QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3931,7 +3931,7 @@ QSize PythonQtShell_QAbstractItemView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3964,7 +3964,7 @@ void PythonQtShell_QAbstractItemView::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3986,7 +3986,7 @@ void PythonQtShell_QAbstractItemView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4008,7 +4008,7 @@ void PythonQtShell_QAbstractItemView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4030,7 +4030,7 @@ void PythonQtShell_QAbstractItemView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4052,7 +4052,7 @@ QModelIndex PythonQtShell_QAbstractItemView::moveCursor(QAbstractItemView::Curs if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -4085,7 +4085,7 @@ void PythonQtShell_QAbstractItemView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4107,7 +4107,7 @@ bool PythonQtShell_QAbstractItemView::nativeEvent(const QByteArray& eventType0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4140,7 +4140,7 @@ QPaintEngine* PythonQtShell_QAbstractItemView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4173,7 +4173,7 @@ void PythonQtShell_QAbstractItemView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4195,7 +4195,7 @@ QPaintDevice* PythonQtShell_QAbstractItemView::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4228,7 +4228,7 @@ void PythonQtShell_QAbstractItemView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4250,7 +4250,7 @@ void PythonQtShell_QAbstractItemView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4272,7 +4272,7 @@ void PythonQtShell_QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4294,7 +4294,7 @@ void PythonQtShell_QAbstractItemView::rowsInserted(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4316,7 +4316,7 @@ void PythonQtShell_QAbstractItemView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4338,7 +4338,7 @@ void PythonQtShell_QAbstractItemView::scrollTo(const QModelIndex& index0, QAbst if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -4360,7 +4360,7 @@ void PythonQtShell_QAbstractItemView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4382,7 +4382,7 @@ QList PythonQtShell_QAbstractItemView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4415,7 +4415,7 @@ void PythonQtShell_QAbstractItemView::selectionChanged(const QItemSelection& se if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -4437,7 +4437,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QAbstractItemView::selectionC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -4470,7 +4470,7 @@ void PythonQtShell_QAbstractItemView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -4492,7 +4492,7 @@ void PythonQtShell_QAbstractItemView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4514,7 +4514,7 @@ void PythonQtShell_QAbstractItemView::setSelection(const QRect& rect0, QItemSel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4536,7 +4536,7 @@ void PythonQtShell_QAbstractItemView::setSelectionModel(QItemSelectionModel* se if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4558,7 +4558,7 @@ void PythonQtShell_QAbstractItemView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4580,7 +4580,7 @@ void PythonQtShell_QAbstractItemView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4602,7 +4602,7 @@ QPainter* PythonQtShell_QAbstractItemView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4635,7 +4635,7 @@ void PythonQtShell_QAbstractItemView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4657,7 +4657,7 @@ QSize PythonQtShell_QAbstractItemView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4690,7 +4690,7 @@ int PythonQtShell_QAbstractItemView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4723,7 +4723,7 @@ int PythonQtShell_QAbstractItemView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4756,7 +4756,7 @@ void PythonQtShell_QAbstractItemView::startDrag(Qt::DropActions supportedAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4778,7 +4778,7 @@ void PythonQtShell_QAbstractItemView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4800,7 +4800,7 @@ void PythonQtShell_QAbstractItemView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4822,7 +4822,7 @@ void PythonQtShell_QAbstractItemView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4844,7 +4844,7 @@ void PythonQtShell_QAbstractItemView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4866,7 +4866,7 @@ void PythonQtShell_QAbstractItemView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4888,7 +4888,7 @@ int PythonQtShell_QAbstractItemView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4921,7 +4921,7 @@ void PythonQtShell_QAbstractItemView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4943,7 +4943,7 @@ void PythonQtShell_QAbstractItemView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4965,7 +4965,7 @@ QStyleOptionViewItem PythonQtShell_QAbstractItemView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4998,7 +4998,7 @@ bool PythonQtShell_QAbstractItemView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5031,7 +5031,7 @@ QSize PythonQtShell_QAbstractItemView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5064,7 +5064,7 @@ QRect PythonQtShell_QAbstractItemView::visualRect(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -5097,7 +5097,7 @@ QRegion PythonQtShell_QAbstractItemView::visualRegionForSelection(const QItemSe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -5130,7 +5130,7 @@ void PythonQtShell_QAbstractItemView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5580,7 +5580,7 @@ void PythonQtShell_QAbstractPrintDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5602,7 +5602,7 @@ void PythonQtShell_QAbstractPrintDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5624,7 +5624,7 @@ void PythonQtShell_QAbstractPrintDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5646,7 +5646,7 @@ void PythonQtShell_QAbstractPrintDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5668,7 +5668,7 @@ void PythonQtShell_QAbstractPrintDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5690,7 +5690,7 @@ void PythonQtShell_QAbstractPrintDialog::contextMenuEvent(QContextMenuEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5712,7 +5712,7 @@ void PythonQtShell_QAbstractPrintDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5734,7 +5734,7 @@ int PythonQtShell_QAbstractPrintDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5767,7 +5767,7 @@ void PythonQtShell_QAbstractPrintDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5789,7 +5789,7 @@ void PythonQtShell_QAbstractPrintDialog::dragEnterEvent(QDragEnterEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5811,7 +5811,7 @@ void PythonQtShell_QAbstractPrintDialog::dragLeaveEvent(QDragLeaveEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5833,7 +5833,7 @@ void PythonQtShell_QAbstractPrintDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5855,7 +5855,7 @@ void PythonQtShell_QAbstractPrintDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5877,7 +5877,7 @@ void PythonQtShell_QAbstractPrintDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5899,7 +5899,7 @@ bool PythonQtShell_QAbstractPrintDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5932,7 +5932,7 @@ bool PythonQtShell_QAbstractPrintDialog::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5965,7 +5965,7 @@ int PythonQtShell_QAbstractPrintDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5998,7 +5998,7 @@ void PythonQtShell_QAbstractPrintDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6020,7 +6020,7 @@ bool PythonQtShell_QAbstractPrintDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6053,7 +6053,7 @@ void PythonQtShell_QAbstractPrintDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6075,7 +6075,7 @@ bool PythonQtShell_QAbstractPrintDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6108,7 +6108,7 @@ int PythonQtShell_QAbstractPrintDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6141,7 +6141,7 @@ void PythonQtShell_QAbstractPrintDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6163,7 +6163,7 @@ void PythonQtShell_QAbstractPrintDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6185,7 +6185,7 @@ void PythonQtShell_QAbstractPrintDialog::inputMethodEvent(QInputMethodEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6207,7 +6207,7 @@ QVariant PythonQtShell_QAbstractPrintDialog::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6240,7 +6240,7 @@ void PythonQtShell_QAbstractPrintDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6262,7 +6262,7 @@ void PythonQtShell_QAbstractPrintDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6284,7 +6284,7 @@ void PythonQtShell_QAbstractPrintDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6306,7 +6306,7 @@ int PythonQtShell_QAbstractPrintDialog::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6339,7 +6339,7 @@ QSize PythonQtShell_QAbstractPrintDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6372,7 +6372,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseDoubleClickEvent(QMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6394,7 +6394,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6416,7 +6416,7 @@ void PythonQtShell_QAbstractPrintDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6438,7 +6438,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6460,7 +6460,7 @@ void PythonQtShell_QAbstractPrintDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6482,7 +6482,7 @@ bool PythonQtShell_QAbstractPrintDialog::nativeEvent(const QByteArray& eventTy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6515,7 +6515,7 @@ void PythonQtShell_QAbstractPrintDialog::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6537,7 +6537,7 @@ QPaintEngine* PythonQtShell_QAbstractPrintDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6570,7 +6570,7 @@ void PythonQtShell_QAbstractPrintDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6592,7 +6592,7 @@ QPaintDevice* PythonQtShell_QAbstractPrintDialog::redirected(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6625,7 +6625,7 @@ void PythonQtShell_QAbstractPrintDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6647,7 +6647,7 @@ void PythonQtShell_QAbstractPrintDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6669,7 +6669,7 @@ void PythonQtShell_QAbstractPrintDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6691,7 +6691,7 @@ QPainter* PythonQtShell_QAbstractPrintDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6724,7 +6724,7 @@ void PythonQtShell_QAbstractPrintDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6746,7 +6746,7 @@ QSize PythonQtShell_QAbstractPrintDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6779,7 +6779,7 @@ void PythonQtShell_QAbstractPrintDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6801,7 +6801,7 @@ void PythonQtShell_QAbstractPrintDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6823,7 +6823,7 @@ void PythonQtShell_QAbstractPrintDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6938,7 +6938,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6971,7 +6971,7 @@ bool PythonQtShell_QAbstractProxyModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7004,7 +7004,7 @@ bool PythonQtShell_QAbstractProxyModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7037,7 +7037,7 @@ void PythonQtShell_QAbstractProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7059,7 +7059,7 @@ int PythonQtShell_QAbstractProxyModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7092,7 +7092,7 @@ void PythonQtShell_QAbstractProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7114,7 +7114,7 @@ QVariant PythonQtShell_QAbstractProxyModel::data(const QModelIndex& proxyIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -7147,7 +7147,7 @@ bool PythonQtShell_QAbstractProxyModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7180,7 +7180,7 @@ bool PythonQtShell_QAbstractProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7213,7 +7213,7 @@ bool PythonQtShell_QAbstractProxyModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7246,7 +7246,7 @@ void PythonQtShell_QAbstractProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7268,7 +7268,7 @@ Qt::ItemFlags PythonQtShell_QAbstractProxyModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -7301,7 +7301,7 @@ bool PythonQtShell_QAbstractProxyModel::hasChildren(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7334,7 +7334,7 @@ QVariant PythonQtShell_QAbstractProxyModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -7367,7 +7367,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7400,7 +7400,7 @@ bool PythonQtShell_QAbstractProxyModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7433,7 +7433,7 @@ bool PythonQtShell_QAbstractProxyModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7466,7 +7466,7 @@ QMap PythonQtShell_QAbstractProxyModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -7499,7 +7499,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::mapFromSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7532,7 +7532,7 @@ QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -7565,7 +7565,7 @@ QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionToSource(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -7598,7 +7598,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7631,7 +7631,7 @@ QList PythonQtShell_QAbstractProxyModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -7664,7 +7664,7 @@ QMimeData* PythonQtShell_QAbstractProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -7697,7 +7697,7 @@ QStringList PythonQtShell_QAbstractProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7730,7 +7730,7 @@ bool PythonQtShell_QAbstractProxyModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7763,7 +7763,7 @@ bool PythonQtShell_QAbstractProxyModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7796,7 +7796,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::parent(const QModelIndex& child if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7829,7 +7829,7 @@ bool PythonQtShell_QAbstractProxyModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7862,7 +7862,7 @@ bool PythonQtShell_QAbstractProxyModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7895,7 +7895,7 @@ void PythonQtShell_QAbstractProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7917,7 +7917,7 @@ QHash PythonQtShell_QAbstractProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7950,7 +7950,7 @@ int PythonQtShell_QAbstractProxyModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7983,7 +7983,7 @@ bool PythonQtShell_QAbstractProxyModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -8016,7 +8016,7 @@ bool PythonQtShell_QAbstractProxyModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -8049,7 +8049,7 @@ bool PythonQtShell_QAbstractProxyModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -8082,7 +8082,7 @@ void PythonQtShell_QAbstractProxyModel::setSourceModel(QAbstractItemModel* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -8104,7 +8104,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8137,7 +8137,7 @@ void PythonQtShell_QAbstractProxyModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -8159,7 +8159,7 @@ QSize PythonQtShell_QAbstractProxyModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -8192,7 +8192,7 @@ bool PythonQtShell_QAbstractProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8225,7 +8225,7 @@ Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8258,7 +8258,7 @@ Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8291,7 +8291,7 @@ void PythonQtShell_QAbstractProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8366,7 +8366,7 @@ void PythonQtShell_QAbstractScrollArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8388,7 +8388,7 @@ void PythonQtShell_QAbstractScrollArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8410,7 +8410,7 @@ void PythonQtShell_QAbstractScrollArea::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8432,7 +8432,7 @@ void PythonQtShell_QAbstractScrollArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8454,7 +8454,7 @@ void PythonQtShell_QAbstractScrollArea::contextMenuEvent(QContextMenuEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8476,7 +8476,7 @@ void PythonQtShell_QAbstractScrollArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8498,7 +8498,7 @@ int PythonQtShell_QAbstractScrollArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8531,7 +8531,7 @@ void PythonQtShell_QAbstractScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8553,7 +8553,7 @@ void PythonQtShell_QAbstractScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8575,7 +8575,7 @@ void PythonQtShell_QAbstractScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8597,7 +8597,7 @@ void PythonQtShell_QAbstractScrollArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8619,7 +8619,7 @@ void PythonQtShell_QAbstractScrollArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8641,7 +8641,7 @@ bool PythonQtShell_QAbstractScrollArea::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8674,7 +8674,7 @@ bool PythonQtShell_QAbstractScrollArea::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8707,7 +8707,7 @@ void PythonQtShell_QAbstractScrollArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8729,7 +8729,7 @@ bool PythonQtShell_QAbstractScrollArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8762,7 +8762,7 @@ void PythonQtShell_QAbstractScrollArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8784,7 +8784,7 @@ bool PythonQtShell_QAbstractScrollArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8817,7 +8817,7 @@ int PythonQtShell_QAbstractScrollArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8850,7 +8850,7 @@ void PythonQtShell_QAbstractScrollArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8872,7 +8872,7 @@ void PythonQtShell_QAbstractScrollArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8894,7 +8894,7 @@ void PythonQtShell_QAbstractScrollArea::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8916,7 +8916,7 @@ QVariant PythonQtShell_QAbstractScrollArea::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8949,7 +8949,7 @@ void PythonQtShell_QAbstractScrollArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8971,7 +8971,7 @@ void PythonQtShell_QAbstractScrollArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8993,7 +8993,7 @@ void PythonQtShell_QAbstractScrollArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9015,7 +9015,7 @@ int PythonQtShell_QAbstractScrollArea::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9048,7 +9048,7 @@ QSize PythonQtShell_QAbstractScrollArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9081,7 +9081,7 @@ void PythonQtShell_QAbstractScrollArea::mouseDoubleClickEvent(QMouseEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9103,7 +9103,7 @@ void PythonQtShell_QAbstractScrollArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9125,7 +9125,7 @@ void PythonQtShell_QAbstractScrollArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9147,7 +9147,7 @@ void PythonQtShell_QAbstractScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9169,7 +9169,7 @@ void PythonQtShell_QAbstractScrollArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9191,7 +9191,7 @@ bool PythonQtShell_QAbstractScrollArea::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9224,7 +9224,7 @@ QPaintEngine* PythonQtShell_QAbstractScrollArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9257,7 +9257,7 @@ void PythonQtShell_QAbstractScrollArea::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9279,7 +9279,7 @@ QPaintDevice* PythonQtShell_QAbstractScrollArea::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9312,7 +9312,7 @@ void PythonQtShell_QAbstractScrollArea::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9334,7 +9334,7 @@ void PythonQtShell_QAbstractScrollArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9356,7 +9356,7 @@ void PythonQtShell_QAbstractScrollArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9378,7 +9378,7 @@ void PythonQtShell_QAbstractScrollArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9400,7 +9400,7 @@ QPainter* PythonQtShell_QAbstractScrollArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9433,7 +9433,7 @@ void PythonQtShell_QAbstractScrollArea::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9455,7 +9455,7 @@ QSize PythonQtShell_QAbstractScrollArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9488,7 +9488,7 @@ void PythonQtShell_QAbstractScrollArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9510,7 +9510,7 @@ void PythonQtShell_QAbstractScrollArea::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9532,7 +9532,7 @@ bool PythonQtShell_QAbstractScrollArea::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9565,7 +9565,7 @@ QSize PythonQtShell_QAbstractScrollArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9598,7 +9598,7 @@ void PythonQtShell_QAbstractScrollArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9768,7 +9768,7 @@ void PythonQtShell_QAbstractSlider::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9790,7 +9790,7 @@ void PythonQtShell_QAbstractSlider::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9812,7 +9812,7 @@ void PythonQtShell_QAbstractSlider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9834,7 +9834,7 @@ void PythonQtShell_QAbstractSlider::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9856,7 +9856,7 @@ void PythonQtShell_QAbstractSlider::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9878,7 +9878,7 @@ void PythonQtShell_QAbstractSlider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9900,7 +9900,7 @@ int PythonQtShell_QAbstractSlider::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9933,7 +9933,7 @@ void PythonQtShell_QAbstractSlider::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9955,7 +9955,7 @@ void PythonQtShell_QAbstractSlider::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9977,7 +9977,7 @@ void PythonQtShell_QAbstractSlider::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9999,7 +9999,7 @@ void PythonQtShell_QAbstractSlider::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10021,7 +10021,7 @@ void PythonQtShell_QAbstractSlider::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10043,7 +10043,7 @@ bool PythonQtShell_QAbstractSlider::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10076,7 +10076,7 @@ bool PythonQtShell_QAbstractSlider::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10109,7 +10109,7 @@ void PythonQtShell_QAbstractSlider::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10131,7 +10131,7 @@ bool PythonQtShell_QAbstractSlider::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10164,7 +10164,7 @@ void PythonQtShell_QAbstractSlider::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10186,7 +10186,7 @@ bool PythonQtShell_QAbstractSlider::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10219,7 +10219,7 @@ int PythonQtShell_QAbstractSlider::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10252,7 +10252,7 @@ void PythonQtShell_QAbstractSlider::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10274,7 +10274,7 @@ void PythonQtShell_QAbstractSlider::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10296,7 +10296,7 @@ void PythonQtShell_QAbstractSlider::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10318,7 +10318,7 @@ QVariant PythonQtShell_QAbstractSlider::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10351,7 +10351,7 @@ void PythonQtShell_QAbstractSlider::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10373,7 +10373,7 @@ void PythonQtShell_QAbstractSlider::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10395,7 +10395,7 @@ void PythonQtShell_QAbstractSlider::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10417,7 +10417,7 @@ int PythonQtShell_QAbstractSlider::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10450,7 +10450,7 @@ QSize PythonQtShell_QAbstractSlider::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10483,7 +10483,7 @@ void PythonQtShell_QAbstractSlider::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10505,7 +10505,7 @@ void PythonQtShell_QAbstractSlider::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10527,7 +10527,7 @@ void PythonQtShell_QAbstractSlider::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10549,7 +10549,7 @@ void PythonQtShell_QAbstractSlider::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10571,7 +10571,7 @@ void PythonQtShell_QAbstractSlider::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10593,7 +10593,7 @@ bool PythonQtShell_QAbstractSlider::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10626,7 +10626,7 @@ QPaintEngine* PythonQtShell_QAbstractSlider::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10659,7 +10659,7 @@ void PythonQtShell_QAbstractSlider::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10681,7 +10681,7 @@ QPaintDevice* PythonQtShell_QAbstractSlider::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10714,7 +10714,7 @@ void PythonQtShell_QAbstractSlider::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10736,7 +10736,7 @@ void PythonQtShell_QAbstractSlider::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10758,7 +10758,7 @@ QPainter* PythonQtShell_QAbstractSlider::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10791,7 +10791,7 @@ void PythonQtShell_QAbstractSlider::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10813,7 +10813,7 @@ QSize PythonQtShell_QAbstractSlider::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10846,7 +10846,7 @@ void PythonQtShell_QAbstractSlider::sliderChange(QAbstractSlider::SliderChange if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -10868,7 +10868,7 @@ void PythonQtShell_QAbstractSlider::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10890,7 +10890,7 @@ void PythonQtShell_QAbstractSlider::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10912,7 +10912,7 @@ void PythonQtShell_QAbstractSlider::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11077,7 +11077,7 @@ void PythonQtShell_QAbstractSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11099,7 +11099,7 @@ void PythonQtShell_QAbstractSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11121,7 +11121,7 @@ void PythonQtShell_QAbstractSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11143,7 +11143,7 @@ void PythonQtShell_QAbstractSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11165,7 +11165,7 @@ void PythonQtShell_QAbstractSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11187,7 +11187,7 @@ void PythonQtShell_QAbstractSpinBox::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11209,7 +11209,7 @@ void PythonQtShell_QAbstractSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11231,7 +11231,7 @@ int PythonQtShell_QAbstractSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11264,7 +11264,7 @@ void PythonQtShell_QAbstractSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11286,7 +11286,7 @@ void PythonQtShell_QAbstractSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11308,7 +11308,7 @@ void PythonQtShell_QAbstractSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11330,7 +11330,7 @@ void PythonQtShell_QAbstractSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11352,7 +11352,7 @@ void PythonQtShell_QAbstractSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11374,7 +11374,7 @@ bool PythonQtShell_QAbstractSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11407,7 +11407,7 @@ bool PythonQtShell_QAbstractSpinBox::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11440,7 +11440,7 @@ void PythonQtShell_QAbstractSpinBox::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11462,7 +11462,7 @@ void PythonQtShell_QAbstractSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11484,7 +11484,7 @@ bool PythonQtShell_QAbstractSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11517,7 +11517,7 @@ void PythonQtShell_QAbstractSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11539,7 +11539,7 @@ bool PythonQtShell_QAbstractSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11572,7 +11572,7 @@ int PythonQtShell_QAbstractSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11605,7 +11605,7 @@ void PythonQtShell_QAbstractSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11627,7 +11627,7 @@ void PythonQtShell_QAbstractSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11649,7 +11649,7 @@ void PythonQtShell_QAbstractSpinBox::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11671,7 +11671,7 @@ QVariant PythonQtShell_QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11704,7 +11704,7 @@ void PythonQtShell_QAbstractSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11726,7 +11726,7 @@ void PythonQtShell_QAbstractSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11748,7 +11748,7 @@ void PythonQtShell_QAbstractSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11770,7 +11770,7 @@ int PythonQtShell_QAbstractSpinBox::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11803,7 +11803,7 @@ QSize PythonQtShell_QAbstractSpinBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11836,7 +11836,7 @@ void PythonQtShell_QAbstractSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11858,7 +11858,7 @@ void PythonQtShell_QAbstractSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11880,7 +11880,7 @@ void PythonQtShell_QAbstractSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11902,7 +11902,7 @@ void PythonQtShell_QAbstractSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11924,7 +11924,7 @@ void PythonQtShell_QAbstractSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11946,7 +11946,7 @@ bool PythonQtShell_QAbstractSpinBox::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11979,7 +11979,7 @@ QPaintEngine* PythonQtShell_QAbstractSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12012,7 +12012,7 @@ void PythonQtShell_QAbstractSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12034,7 +12034,7 @@ QPaintDevice* PythonQtShell_QAbstractSpinBox::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12067,7 +12067,7 @@ void PythonQtShell_QAbstractSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12089,7 +12089,7 @@ void PythonQtShell_QAbstractSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12111,7 +12111,7 @@ QPainter* PythonQtShell_QAbstractSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12144,7 +12144,7 @@ void PythonQtShell_QAbstractSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12166,7 +12166,7 @@ QSize PythonQtShell_QAbstractSpinBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12199,7 +12199,7 @@ void PythonQtShell_QAbstractSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12221,7 +12221,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QAbstractSpinBox::stepEnabled() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -12254,7 +12254,7 @@ void PythonQtShell_QAbstractSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12276,7 +12276,7 @@ void PythonQtShell_QAbstractSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12298,7 +12298,7 @@ QValidator::State PythonQtShell_QAbstractSpinBox::validate(QString& input0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12331,7 +12331,7 @@ void PythonQtShell_QAbstractSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12536,7 +12536,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12569,7 +12569,7 @@ bool PythonQtShell_QAbstractTableModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12602,7 +12602,7 @@ bool PythonQtShell_QAbstractTableModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12635,7 +12635,7 @@ void PythonQtShell_QAbstractTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12657,7 +12657,7 @@ int PythonQtShell_QAbstractTableModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12690,7 +12690,7 @@ void PythonQtShell_QAbstractTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12712,7 +12712,7 @@ QVariant PythonQtShell_QAbstractTableModel::data(const QModelIndex& index0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -12745,7 +12745,7 @@ bool PythonQtShell_QAbstractTableModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12778,7 +12778,7 @@ bool PythonQtShell_QAbstractTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12811,7 +12811,7 @@ bool PythonQtShell_QAbstractTableModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12844,7 +12844,7 @@ void PythonQtShell_QAbstractTableModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12866,7 +12866,7 @@ Qt::ItemFlags PythonQtShell_QAbstractTableModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -12899,7 +12899,7 @@ QVariant PythonQtShell_QAbstractTableModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -12932,7 +12932,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12965,7 +12965,7 @@ bool PythonQtShell_QAbstractTableModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12998,7 +12998,7 @@ bool PythonQtShell_QAbstractTableModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13031,7 +13031,7 @@ QMap PythonQtShell_QAbstractTableModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -13064,7 +13064,7 @@ QList PythonQtShell_QAbstractTableModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -13097,7 +13097,7 @@ QMimeData* PythonQtShell_QAbstractTableModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -13130,7 +13130,7 @@ QStringList PythonQtShell_QAbstractTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13163,7 +13163,7 @@ bool PythonQtShell_QAbstractTableModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13196,7 +13196,7 @@ bool PythonQtShell_QAbstractTableModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13229,7 +13229,7 @@ bool PythonQtShell_QAbstractTableModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13262,7 +13262,7 @@ bool PythonQtShell_QAbstractTableModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13295,7 +13295,7 @@ void PythonQtShell_QAbstractTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13317,7 +13317,7 @@ QHash PythonQtShell_QAbstractTableModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -13350,7 +13350,7 @@ int PythonQtShell_QAbstractTableModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13383,7 +13383,7 @@ bool PythonQtShell_QAbstractTableModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -13416,7 +13416,7 @@ bool PythonQtShell_QAbstractTableModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -13449,7 +13449,7 @@ bool PythonQtShell_QAbstractTableModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -13482,7 +13482,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13515,7 +13515,7 @@ void PythonQtShell_QAbstractTableModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -13537,7 +13537,7 @@ QSize PythonQtShell_QAbstractTableModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -13570,7 +13570,7 @@ bool PythonQtShell_QAbstractTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13603,7 +13603,7 @@ Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13636,7 +13636,7 @@ Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13669,7 +13669,7 @@ void PythonQtShell_QAbstractTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13714,7 +13714,7 @@ QRectF PythonQtShell_QAbstractTextDocumentLayout::blockBoundingRect(const QText if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -13747,7 +13747,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13769,7 +13769,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13791,7 +13791,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::documentChanged(int from0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -13813,7 +13813,7 @@ QSizeF PythonQtShell_QAbstractTextDocumentLayout::documentSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -13846,7 +13846,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::draw(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -13868,7 +13868,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::drawInlineObject(QPainter* pain if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -13890,7 +13890,7 @@ bool PythonQtShell_QAbstractTextDocumentLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13923,7 +13923,7 @@ bool PythonQtShell_QAbstractTextDocumentLayout::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13956,7 +13956,7 @@ QRectF PythonQtShell_QAbstractTextDocumentLayout::frameBoundingRect(QTextFrame* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -13989,7 +13989,7 @@ int PythonQtShell_QAbstractTextDocumentLayout::hitTest(const QPointF& point0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -14022,7 +14022,7 @@ int PythonQtShell_QAbstractTextDocumentLayout::pageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14055,7 +14055,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::positionInlineObject(QTextInline if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -14077,7 +14077,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::resizeInlineObject(QTextInlineOb if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -14099,7 +14099,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14301,7 +14301,7 @@ void PythonQtShell_QAction::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14323,7 +14323,7 @@ void PythonQtShell_QAction::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14345,7 +14345,7 @@ bool PythonQtShell_QAction::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14378,7 +14378,7 @@ bool PythonQtShell_QAction::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14411,7 +14411,7 @@ void PythonQtShell_QAction::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14732,7 +14732,7 @@ void PythonQtShell_QActionGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14754,7 +14754,7 @@ void PythonQtShell_QActionGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14776,7 +14776,7 @@ bool PythonQtShell_QActionGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14809,7 +14809,7 @@ bool PythonQtShell_QActionGroup::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14842,7 +14842,7 @@ void PythonQtShell_QActionGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15220,7 +15220,7 @@ void PythonQtShell_QBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -15242,7 +15242,7 @@ void PythonQtShell_QBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15264,7 +15264,7 @@ QSizePolicy::ControlTypes PythonQtShell_QBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -15297,7 +15297,7 @@ int PythonQtShell_QBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15330,7 +15330,7 @@ void PythonQtShell_QBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15352,7 +15352,7 @@ bool PythonQtShell_QBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15385,7 +15385,7 @@ bool PythonQtShell_QBoxLayout::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15418,7 +15418,7 @@ Qt::Orientations PythonQtShell_QBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -15451,7 +15451,7 @@ QRect PythonQtShell_QBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -15484,7 +15484,7 @@ bool PythonQtShell_QBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15517,7 +15517,7 @@ int PythonQtShell_QBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15550,7 +15550,7 @@ int PythonQtShell_QBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -15583,7 +15583,7 @@ void PythonQtShell_QBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15605,7 +15605,7 @@ bool PythonQtShell_QBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15638,7 +15638,7 @@ QLayoutItem* PythonQtShell_QBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15671,7 +15671,7 @@ QLayout* PythonQtShell_QBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -15704,7 +15704,7 @@ QSize PythonQtShell_QBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15737,7 +15737,7 @@ int PythonQtShell_QBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15770,7 +15770,7 @@ QSize PythonQtShell_QBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15803,7 +15803,7 @@ void PythonQtShell_QBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -15825,7 +15825,7 @@ QSize PythonQtShell_QBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15858,7 +15858,7 @@ QLayoutItem* PythonQtShell_QBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15891,7 +15891,7 @@ void PythonQtShell_QBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16056,7 +16056,7 @@ void PythonQtShell_QButtonGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16078,7 +16078,7 @@ void PythonQtShell_QButtonGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16100,7 +16100,7 @@ bool PythonQtShell_QButtonGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16133,7 +16133,7 @@ bool PythonQtShell_QButtonGroup::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16166,7 +16166,7 @@ void PythonQtShell_QButtonGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16261,7 +16261,7 @@ void PythonQtShell_QCalendarWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16283,7 +16283,7 @@ void PythonQtShell_QCalendarWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16305,7 +16305,7 @@ void PythonQtShell_QCalendarWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16327,7 +16327,7 @@ void PythonQtShell_QCalendarWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16349,7 +16349,7 @@ void PythonQtShell_QCalendarWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16371,7 +16371,7 @@ void PythonQtShell_QCalendarWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16393,7 +16393,7 @@ int PythonQtShell_QCalendarWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16426,7 +16426,7 @@ void PythonQtShell_QCalendarWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16448,7 +16448,7 @@ void PythonQtShell_QCalendarWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16470,7 +16470,7 @@ void PythonQtShell_QCalendarWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16492,7 +16492,7 @@ void PythonQtShell_QCalendarWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16514,7 +16514,7 @@ void PythonQtShell_QCalendarWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16536,7 +16536,7 @@ bool PythonQtShell_QCalendarWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16569,7 +16569,7 @@ bool PythonQtShell_QCalendarWidget::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16602,7 +16602,7 @@ void PythonQtShell_QCalendarWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16624,7 +16624,7 @@ bool PythonQtShell_QCalendarWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16657,7 +16657,7 @@ void PythonQtShell_QCalendarWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16679,7 +16679,7 @@ bool PythonQtShell_QCalendarWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16712,7 +16712,7 @@ int PythonQtShell_QCalendarWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16745,7 +16745,7 @@ void PythonQtShell_QCalendarWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16767,7 +16767,7 @@ void PythonQtShell_QCalendarWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16789,7 +16789,7 @@ void PythonQtShell_QCalendarWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16811,7 +16811,7 @@ QVariant PythonQtShell_QCalendarWidget::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16844,7 +16844,7 @@ void PythonQtShell_QCalendarWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16866,7 +16866,7 @@ void PythonQtShell_QCalendarWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16888,7 +16888,7 @@ void PythonQtShell_QCalendarWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16910,7 +16910,7 @@ int PythonQtShell_QCalendarWidget::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16943,7 +16943,7 @@ QSize PythonQtShell_QCalendarWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16976,7 +16976,7 @@ void PythonQtShell_QCalendarWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16998,7 +16998,7 @@ void PythonQtShell_QCalendarWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17020,7 +17020,7 @@ void PythonQtShell_QCalendarWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17042,7 +17042,7 @@ void PythonQtShell_QCalendarWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17064,7 +17064,7 @@ void PythonQtShell_QCalendarWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17086,7 +17086,7 @@ bool PythonQtShell_QCalendarWidget::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17119,7 +17119,7 @@ void PythonQtShell_QCalendarWidget::paintCell(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintCell"); + static PyObject* name = PyUnicode_FromString("paintCell"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QDate&"}; @@ -17141,7 +17141,7 @@ QPaintEngine* PythonQtShell_QCalendarWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17174,7 +17174,7 @@ void PythonQtShell_QCalendarWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17196,7 +17196,7 @@ QPaintDevice* PythonQtShell_QCalendarWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17229,7 +17229,7 @@ void PythonQtShell_QCalendarWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17251,7 +17251,7 @@ void PythonQtShell_QCalendarWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -17273,7 +17273,7 @@ QPainter* PythonQtShell_QCalendarWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17306,7 +17306,7 @@ void PythonQtShell_QCalendarWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17328,7 +17328,7 @@ QSize PythonQtShell_QCalendarWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17361,7 +17361,7 @@ void PythonQtShell_QCalendarWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17383,7 +17383,7 @@ void PythonQtShell_QCalendarWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17405,7 +17405,7 @@ void PythonQtShell_QCalendarWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17605,7 +17605,7 @@ void PythonQtShell_QCheckBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17627,7 +17627,7 @@ void PythonQtShell_QCheckBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17649,7 +17649,7 @@ void PythonQtShell_QCheckBox::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17671,7 +17671,7 @@ void PythonQtShell_QCheckBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17693,7 +17693,7 @@ void PythonQtShell_QCheckBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17715,7 +17715,7 @@ void PythonQtShell_QCheckBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17737,7 +17737,7 @@ void PythonQtShell_QCheckBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17759,7 +17759,7 @@ int PythonQtShell_QCheckBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17792,7 +17792,7 @@ void PythonQtShell_QCheckBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17814,7 +17814,7 @@ void PythonQtShell_QCheckBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17836,7 +17836,7 @@ void PythonQtShell_QCheckBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17858,7 +17858,7 @@ void PythonQtShell_QCheckBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17880,7 +17880,7 @@ void PythonQtShell_QCheckBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17902,7 +17902,7 @@ bool PythonQtShell_QCheckBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17935,7 +17935,7 @@ bool PythonQtShell_QCheckBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17968,7 +17968,7 @@ void PythonQtShell_QCheckBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17990,7 +17990,7 @@ bool PythonQtShell_QCheckBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18023,7 +18023,7 @@ void PythonQtShell_QCheckBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18045,7 +18045,7 @@ bool PythonQtShell_QCheckBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18078,7 +18078,7 @@ int PythonQtShell_QCheckBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18111,7 +18111,7 @@ void PythonQtShell_QCheckBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18133,7 +18133,7 @@ bool PythonQtShell_QCheckBox::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -18166,7 +18166,7 @@ void PythonQtShell_QCheckBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18188,7 +18188,7 @@ void PythonQtShell_QCheckBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18210,7 +18210,7 @@ QVariant PythonQtShell_QCheckBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18243,7 +18243,7 @@ void PythonQtShell_QCheckBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18265,7 +18265,7 @@ void PythonQtShell_QCheckBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18287,7 +18287,7 @@ void PythonQtShell_QCheckBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18309,7 +18309,7 @@ int PythonQtShell_QCheckBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18342,7 +18342,7 @@ QSize PythonQtShell_QCheckBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18375,7 +18375,7 @@ void PythonQtShell_QCheckBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18397,7 +18397,7 @@ void PythonQtShell_QCheckBox::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18419,7 +18419,7 @@ void PythonQtShell_QCheckBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18441,7 +18441,7 @@ void PythonQtShell_QCheckBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18463,7 +18463,7 @@ void PythonQtShell_QCheckBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18485,7 +18485,7 @@ bool PythonQtShell_QCheckBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18518,7 +18518,7 @@ void PythonQtShell_QCheckBox::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18540,7 +18540,7 @@ QPaintEngine* PythonQtShell_QCheckBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18573,7 +18573,7 @@ void PythonQtShell_QCheckBox::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18595,7 +18595,7 @@ QPaintDevice* PythonQtShell_QCheckBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18628,7 +18628,7 @@ void PythonQtShell_QCheckBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18650,7 +18650,7 @@ void PythonQtShell_QCheckBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -18672,7 +18672,7 @@ QPainter* PythonQtShell_QCheckBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18705,7 +18705,7 @@ void PythonQtShell_QCheckBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18727,7 +18727,7 @@ QSize PythonQtShell_QCheckBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18760,7 +18760,7 @@ void PythonQtShell_QCheckBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18782,7 +18782,7 @@ void PythonQtShell_QCheckBox::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18804,7 +18804,7 @@ void PythonQtShell_QCheckBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -18971,7 +18971,7 @@ void PythonQtShell_QColorDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18993,7 +18993,7 @@ void PythonQtShell_QColorDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -19015,7 +19015,7 @@ void PythonQtShell_QColorDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19037,7 +19037,7 @@ void PythonQtShell_QColorDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -19059,7 +19059,7 @@ void PythonQtShell_QColorDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -19081,7 +19081,7 @@ void PythonQtShell_QColorDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -19103,7 +19103,7 @@ void PythonQtShell_QColorDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19125,7 +19125,7 @@ int PythonQtShell_QColorDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19158,7 +19158,7 @@ void PythonQtShell_QColorDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19180,7 +19180,7 @@ void PythonQtShell_QColorDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -19202,7 +19202,7 @@ void PythonQtShell_QColorDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -19224,7 +19224,7 @@ void PythonQtShell_QColorDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -19246,7 +19246,7 @@ void PythonQtShell_QColorDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -19268,7 +19268,7 @@ void PythonQtShell_QColorDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19290,7 +19290,7 @@ bool PythonQtShell_QColorDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19323,7 +19323,7 @@ bool PythonQtShell_QColorDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -19356,7 +19356,7 @@ int PythonQtShell_QColorDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19389,7 +19389,7 @@ void PythonQtShell_QColorDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19411,7 +19411,7 @@ bool PythonQtShell_QColorDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19444,7 +19444,7 @@ void PythonQtShell_QColorDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19466,7 +19466,7 @@ bool PythonQtShell_QColorDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19499,7 +19499,7 @@ int PythonQtShell_QColorDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19532,7 +19532,7 @@ void PythonQtShell_QColorDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19554,7 +19554,7 @@ void PythonQtShell_QColorDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19576,7 +19576,7 @@ void PythonQtShell_QColorDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19598,7 +19598,7 @@ QVariant PythonQtShell_QColorDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19631,7 +19631,7 @@ void PythonQtShell_QColorDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19653,7 +19653,7 @@ void PythonQtShell_QColorDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19675,7 +19675,7 @@ void PythonQtShell_QColorDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19697,7 +19697,7 @@ int PythonQtShell_QColorDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19730,7 +19730,7 @@ QSize PythonQtShell_QColorDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19763,7 +19763,7 @@ void PythonQtShell_QColorDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19785,7 +19785,7 @@ void PythonQtShell_QColorDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19807,7 +19807,7 @@ void PythonQtShell_QColorDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19829,7 +19829,7 @@ void PythonQtShell_QColorDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19851,7 +19851,7 @@ void PythonQtShell_QColorDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19873,7 +19873,7 @@ bool PythonQtShell_QColorDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19906,7 +19906,7 @@ QPaintEngine* PythonQtShell_QColorDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19939,7 +19939,7 @@ void PythonQtShell_QColorDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19961,7 +19961,7 @@ QPaintDevice* PythonQtShell_QColorDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19994,7 +19994,7 @@ void PythonQtShell_QColorDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20016,7 +20016,7 @@ void PythonQtShell_QColorDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -20038,7 +20038,7 @@ void PythonQtShell_QColorDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -20060,7 +20060,7 @@ QPainter* PythonQtShell_QColorDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -20093,7 +20093,7 @@ void PythonQtShell_QColorDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -20115,7 +20115,7 @@ QSize PythonQtShell_QColorDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -20148,7 +20148,7 @@ void PythonQtShell_QColorDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -20170,7 +20170,7 @@ void PythonQtShell_QColorDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -20192,7 +20192,7 @@ void PythonQtShell_QColorDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -20316,7 +20316,7 @@ void PythonQtShell_QColumnView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -20338,7 +20338,7 @@ void PythonQtShell_QColumnView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20360,7 +20360,7 @@ void PythonQtShell_QColumnView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20382,7 +20382,7 @@ void PythonQtShell_QColumnView::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -20404,7 +20404,7 @@ void PythonQtShell_QColumnView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -20426,7 +20426,7 @@ void PythonQtShell_QColumnView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -20448,7 +20448,7 @@ void PythonQtShell_QColumnView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -20470,7 +20470,7 @@ QAbstractItemView* PythonQtShell_QColumnView::createColumn(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createColumn"); + static PyObject* name = PyUnicode_FromString("createColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractItemView*" , "const QModelIndex&"}; @@ -20503,7 +20503,7 @@ void PythonQtShell_QColumnView::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -20525,7 +20525,7 @@ void PythonQtShell_QColumnView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20547,7 +20547,7 @@ void PythonQtShell_QColumnView::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -20569,7 +20569,7 @@ int PythonQtShell_QColumnView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20602,7 +20602,7 @@ void PythonQtShell_QColumnView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20624,7 +20624,7 @@ void PythonQtShell_QColumnView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -20646,7 +20646,7 @@ void PythonQtShell_QColumnView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -20668,7 +20668,7 @@ void PythonQtShell_QColumnView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -20690,7 +20690,7 @@ void PythonQtShell_QColumnView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -20712,7 +20712,7 @@ bool PythonQtShell_QColumnView::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -20745,7 +20745,7 @@ void PythonQtShell_QColumnView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -20767,7 +20767,7 @@ void PythonQtShell_QColumnView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20789,7 +20789,7 @@ bool PythonQtShell_QColumnView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20822,7 +20822,7 @@ bool PythonQtShell_QColumnView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -20855,7 +20855,7 @@ void PythonQtShell_QColumnView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20877,7 +20877,7 @@ bool PythonQtShell_QColumnView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -20910,7 +20910,7 @@ void PythonQtShell_QColumnView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20932,7 +20932,7 @@ bool PythonQtShell_QColumnView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -20965,7 +20965,7 @@ int PythonQtShell_QColumnView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20998,7 +20998,7 @@ void PythonQtShell_QColumnView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -21020,7 +21020,7 @@ int PythonQtShell_QColumnView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -21053,7 +21053,7 @@ void PythonQtShell_QColumnView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -21075,7 +21075,7 @@ void PythonQtShell_QColumnView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -21097,7 +21097,7 @@ QModelIndex PythonQtShell_QColumnView::indexAt(const QPoint& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -21130,7 +21130,7 @@ void PythonQtShell_QColumnView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -21152,7 +21152,7 @@ void PythonQtShell_QColumnView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -21174,7 +21174,7 @@ QVariant PythonQtShell_QColumnView::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -21207,7 +21207,7 @@ bool PythonQtShell_QColumnView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -21240,7 +21240,7 @@ void PythonQtShell_QColumnView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21262,7 +21262,7 @@ void PythonQtShell_QColumnView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21284,7 +21284,7 @@ void PythonQtShell_QColumnView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -21306,7 +21306,7 @@ void PythonQtShell_QColumnView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21328,7 +21328,7 @@ int PythonQtShell_QColumnView::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -21361,7 +21361,7 @@ QSize PythonQtShell_QColumnView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -21394,7 +21394,7 @@ void PythonQtShell_QColumnView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21416,7 +21416,7 @@ void PythonQtShell_QColumnView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21438,7 +21438,7 @@ void PythonQtShell_QColumnView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21460,7 +21460,7 @@ void PythonQtShell_QColumnView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21482,7 +21482,7 @@ QModelIndex PythonQtShell_QColumnView::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -21515,7 +21515,7 @@ void PythonQtShell_QColumnView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -21537,7 +21537,7 @@ bool PythonQtShell_QColumnView::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -21570,7 +21570,7 @@ QPaintEngine* PythonQtShell_QColumnView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -21603,7 +21603,7 @@ void PythonQtShell_QColumnView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -21625,7 +21625,7 @@ QPaintDevice* PythonQtShell_QColumnView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -21658,7 +21658,7 @@ void PythonQtShell_QColumnView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21680,7 +21680,7 @@ void PythonQtShell_QColumnView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -21702,7 +21702,7 @@ void PythonQtShell_QColumnView::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -21724,7 +21724,7 @@ void PythonQtShell_QColumnView::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -21746,7 +21746,7 @@ void PythonQtShell_QColumnView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -21768,7 +21768,7 @@ void PythonQtShell_QColumnView::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -21790,7 +21790,7 @@ void PythonQtShell_QColumnView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21812,7 +21812,7 @@ QList PythonQtShell_QColumnView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -21845,7 +21845,7 @@ void PythonQtShell_QColumnView::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -21867,7 +21867,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QColumnView::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -21900,7 +21900,7 @@ void PythonQtShell_QColumnView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -21922,7 +21922,7 @@ void PythonQtShell_QColumnView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -21944,7 +21944,7 @@ void PythonQtShell_QColumnView::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -21966,7 +21966,7 @@ void PythonQtShell_QColumnView::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -21988,7 +21988,7 @@ void PythonQtShell_QColumnView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -22010,7 +22010,7 @@ void PythonQtShell_QColumnView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -22032,7 +22032,7 @@ QPainter* PythonQtShell_QColumnView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -22065,7 +22065,7 @@ void PythonQtShell_QColumnView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -22087,7 +22087,7 @@ QSize PythonQtShell_QColumnView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -22120,7 +22120,7 @@ int PythonQtShell_QColumnView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -22153,7 +22153,7 @@ int PythonQtShell_QColumnView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -22186,7 +22186,7 @@ void PythonQtShell_QColumnView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -22208,7 +22208,7 @@ void PythonQtShell_QColumnView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -22230,7 +22230,7 @@ void PythonQtShell_QColumnView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -22252,7 +22252,7 @@ void PythonQtShell_QColumnView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22274,7 +22274,7 @@ void PythonQtShell_QColumnView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22296,7 +22296,7 @@ void PythonQtShell_QColumnView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22318,7 +22318,7 @@ int PythonQtShell_QColumnView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -22351,7 +22351,7 @@ void PythonQtShell_QColumnView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -22373,7 +22373,7 @@ void PythonQtShell_QColumnView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -22395,7 +22395,7 @@ QStyleOptionViewItem PythonQtShell_QColumnView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -22428,7 +22428,7 @@ bool PythonQtShell_QColumnView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22461,7 +22461,7 @@ QSize PythonQtShell_QColumnView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -22494,7 +22494,7 @@ QRect PythonQtShell_QColumnView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -22527,7 +22527,7 @@ QRegion PythonQtShell_QColumnView::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -22560,7 +22560,7 @@ void PythonQtShell_QColumnView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -22645,7 +22645,7 @@ void PythonQtShell_QComboBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -22667,7 +22667,7 @@ void PythonQtShell_QComboBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22689,7 +22689,7 @@ void PythonQtShell_QComboBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -22711,7 +22711,7 @@ void PythonQtShell_QComboBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -22733,7 +22733,7 @@ void PythonQtShell_QComboBox::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -22755,7 +22755,7 @@ void PythonQtShell_QComboBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22777,7 +22777,7 @@ int PythonQtShell_QComboBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -22810,7 +22810,7 @@ void PythonQtShell_QComboBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -22832,7 +22832,7 @@ void PythonQtShell_QComboBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -22854,7 +22854,7 @@ void PythonQtShell_QComboBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -22876,7 +22876,7 @@ void PythonQtShell_QComboBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -22898,7 +22898,7 @@ void PythonQtShell_QComboBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22920,7 +22920,7 @@ bool PythonQtShell_QComboBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22953,7 +22953,7 @@ bool PythonQtShell_QComboBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -22986,7 +22986,7 @@ void PythonQtShell_QComboBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -23008,7 +23008,7 @@ bool PythonQtShell_QComboBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -23041,7 +23041,7 @@ void PythonQtShell_QComboBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -23063,7 +23063,7 @@ bool PythonQtShell_QComboBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -23096,7 +23096,7 @@ int PythonQtShell_QComboBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -23129,7 +23129,7 @@ void PythonQtShell_QComboBox::hideEvent(QHideEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -23151,7 +23151,7 @@ void PythonQtShell_QComboBox::hidePopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -23173,7 +23173,7 @@ void PythonQtShell_QComboBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -23195,7 +23195,7 @@ void PythonQtShell_QComboBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -23217,7 +23217,7 @@ QVariant PythonQtShell_QComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -23250,7 +23250,7 @@ void PythonQtShell_QComboBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -23272,7 +23272,7 @@ void PythonQtShell_QComboBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -23294,7 +23294,7 @@ void PythonQtShell_QComboBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -23316,7 +23316,7 @@ int PythonQtShell_QComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -23349,7 +23349,7 @@ QSize PythonQtShell_QComboBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -23382,7 +23382,7 @@ void PythonQtShell_QComboBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23404,7 +23404,7 @@ void PythonQtShell_QComboBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23426,7 +23426,7 @@ void PythonQtShell_QComboBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23448,7 +23448,7 @@ void PythonQtShell_QComboBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23470,7 +23470,7 @@ void PythonQtShell_QComboBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -23492,7 +23492,7 @@ bool PythonQtShell_QComboBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -23525,7 +23525,7 @@ QPaintEngine* PythonQtShell_QComboBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -23558,7 +23558,7 @@ void PythonQtShell_QComboBox::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -23580,7 +23580,7 @@ QPaintDevice* PythonQtShell_QComboBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -23613,7 +23613,7 @@ void PythonQtShell_QComboBox::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -23635,7 +23635,7 @@ void PythonQtShell_QComboBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -23657,7 +23657,7 @@ QPainter* PythonQtShell_QComboBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -23690,7 +23690,7 @@ void PythonQtShell_QComboBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -23712,7 +23712,7 @@ void PythonQtShell_QComboBox::showPopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -23734,7 +23734,7 @@ QSize PythonQtShell_QComboBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -23767,7 +23767,7 @@ void PythonQtShell_QComboBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -23789,7 +23789,7 @@ void PythonQtShell_QComboBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -23811,7 +23811,7 @@ void PythonQtShell_QComboBox::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -24156,7 +24156,7 @@ void PythonQtShell_QCommandLinkButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -24178,7 +24178,7 @@ void PythonQtShell_QCommandLinkButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24200,7 +24200,7 @@ void PythonQtShell_QCommandLinkButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -24222,7 +24222,7 @@ void PythonQtShell_QCommandLinkButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -24244,7 +24244,7 @@ void PythonQtShell_QCommandLinkButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -24266,7 +24266,7 @@ void PythonQtShell_QCommandLinkButton::contextMenuEvent(QContextMenuEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -24288,7 +24288,7 @@ void PythonQtShell_QCommandLinkButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24310,7 +24310,7 @@ int PythonQtShell_QCommandLinkButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -24343,7 +24343,7 @@ void PythonQtShell_QCommandLinkButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -24365,7 +24365,7 @@ void PythonQtShell_QCommandLinkButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -24387,7 +24387,7 @@ void PythonQtShell_QCommandLinkButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -24409,7 +24409,7 @@ void PythonQtShell_QCommandLinkButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -24431,7 +24431,7 @@ void PythonQtShell_QCommandLinkButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24453,7 +24453,7 @@ bool PythonQtShell_QCommandLinkButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -24486,7 +24486,7 @@ bool PythonQtShell_QCommandLinkButton::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -24519,7 +24519,7 @@ void PythonQtShell_QCommandLinkButton::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -24541,7 +24541,7 @@ bool PythonQtShell_QCommandLinkButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -24574,7 +24574,7 @@ void PythonQtShell_QCommandLinkButton::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -24596,7 +24596,7 @@ bool PythonQtShell_QCommandLinkButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -24629,7 +24629,7 @@ int PythonQtShell_QCommandLinkButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -24662,7 +24662,7 @@ void PythonQtShell_QCommandLinkButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -24684,7 +24684,7 @@ bool PythonQtShell_QCommandLinkButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -24717,7 +24717,7 @@ void PythonQtShell_QCommandLinkButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -24739,7 +24739,7 @@ void PythonQtShell_QCommandLinkButton::inputMethodEvent(QInputMethodEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -24761,7 +24761,7 @@ QVariant PythonQtShell_QCommandLinkButton::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -24794,7 +24794,7 @@ void PythonQtShell_QCommandLinkButton::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -24816,7 +24816,7 @@ void PythonQtShell_QCommandLinkButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -24838,7 +24838,7 @@ void PythonQtShell_QCommandLinkButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24860,7 +24860,7 @@ int PythonQtShell_QCommandLinkButton::metric(QPaintDevice::PaintDeviceMetric a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -24893,7 +24893,7 @@ QSize PythonQtShell_QCommandLinkButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -24926,7 +24926,7 @@ void PythonQtShell_QCommandLinkButton::mouseDoubleClickEvent(QMouseEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24948,7 +24948,7 @@ void PythonQtShell_QCommandLinkButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24970,7 +24970,7 @@ void PythonQtShell_QCommandLinkButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24992,7 +24992,7 @@ void PythonQtShell_QCommandLinkButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -25014,7 +25014,7 @@ void PythonQtShell_QCommandLinkButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -25036,7 +25036,7 @@ bool PythonQtShell_QCommandLinkButton::nativeEvent(const QByteArray& eventType if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -25069,7 +25069,7 @@ void PythonQtShell_QCommandLinkButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -25091,7 +25091,7 @@ QPaintEngine* PythonQtShell_QCommandLinkButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -25124,7 +25124,7 @@ void PythonQtShell_QCommandLinkButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -25146,7 +25146,7 @@ QPaintDevice* PythonQtShell_QCommandLinkButton::redirected(QPoint* offset0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -25179,7 +25179,7 @@ void PythonQtShell_QCommandLinkButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -25201,7 +25201,7 @@ void PythonQtShell_QCommandLinkButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -25223,7 +25223,7 @@ QPainter* PythonQtShell_QCommandLinkButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -25256,7 +25256,7 @@ void PythonQtShell_QCommandLinkButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -25278,7 +25278,7 @@ QSize PythonQtShell_QCommandLinkButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -25311,7 +25311,7 @@ void PythonQtShell_QCommandLinkButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -25333,7 +25333,7 @@ void PythonQtShell_QCommandLinkButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -25355,7 +25355,7 @@ void PythonQtShell_QCommandLinkButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -25418,7 +25418,7 @@ void PythonQtShell_QCommonStyle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -25440,7 +25440,7 @@ void PythonQtShell_QCommonStyle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -25462,7 +25462,7 @@ void PythonQtShell_QCommonStyle::drawComplexControl(QStyle::ComplexControl cc0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -25484,7 +25484,7 @@ void PythonQtShell_QCommonStyle::drawControl(QStyle::ControlElement element0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -25506,7 +25506,7 @@ void PythonQtShell_QCommonStyle::drawItemPixmap(QPainter* painter0, const QRect if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -25528,7 +25528,7 @@ void PythonQtShell_QCommonStyle::drawItemText(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -25550,7 +25550,7 @@ void PythonQtShell_QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -25572,7 +25572,7 @@ bool PythonQtShell_QCommonStyle::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -25605,7 +25605,7 @@ bool PythonQtShell_QCommonStyle::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -25638,7 +25638,7 @@ QPixmap PythonQtShell_QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -25671,7 +25671,7 @@ QStyle::SubControl PythonQtShell_QCommonStyle::hitTestComplexControl(QStyle::Co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -25704,7 +25704,7 @@ QRect PythonQtShell_QCommonStyle::itemPixmapRect(const QRect& r0, int flags1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -25737,7 +25737,7 @@ int PythonQtShell_QCommonStyle::layoutSpacing(QSizePolicy::ControlType control if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -25770,7 +25770,7 @@ int PythonQtShell_QCommonStyle::pixelMetric(QStyle::PixelMetric m0, const QSty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -25803,7 +25803,7 @@ void PythonQtShell_QCommonStyle::polish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -25825,7 +25825,7 @@ void PythonQtShell_QCommonStyle::polish(QPalette& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -25847,7 +25847,7 @@ void PythonQtShell_QCommonStyle::polish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -25869,7 +25869,7 @@ QSize PythonQtShell_QCommonStyle::sizeFromContents(QStyle::ContentsType ct0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -25902,7 +25902,7 @@ QIcon PythonQtShell_QCommonStyle::standardIcon(QStyle::StandardPixmap standard if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -25935,7 +25935,7 @@ QPalette PythonQtShell_QCommonStyle::standardPalette() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -25968,7 +25968,7 @@ QPixmap PythonQtShell_QCommonStyle::standardPixmap(QStyle::StandardPixmap sp0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -26001,7 +26001,7 @@ int PythonQtShell_QCommonStyle::styleHint(QStyle::StyleHint sh0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -26034,7 +26034,7 @@ QRect PythonQtShell_QCommonStyle::subControlRect(QStyle::ComplexControl cc0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -26067,7 +26067,7 @@ QRect PythonQtShell_QCommonStyle::subElementRect(QStyle::SubElement r0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -26100,7 +26100,7 @@ void PythonQtShell_QCommonStyle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -26122,7 +26122,7 @@ void PythonQtShell_QCommonStyle::unpolish(QApplication* application0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -26144,7 +26144,7 @@ void PythonQtShell_QCommonStyle::unpolish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp index 5ac57ca02..13ed2e395 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp @@ -87,7 +87,7 @@ void PythonQtShell_QCompleter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -109,7 +109,7 @@ void PythonQtShell_QCompleter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -131,7 +131,7 @@ bool PythonQtShell_QCompleter::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -164,7 +164,7 @@ bool PythonQtShell_QCompleter::eventFilter(QObject* o0, QEvent* e1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -197,7 +197,7 @@ QString PythonQtShell_QCompleter::pathFromIndex(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pathFromIndex"); + static PyObject* name = PyUnicode_FromString("pathFromIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QModelIndex&"}; @@ -230,7 +230,7 @@ QStringList PythonQtShell_QCompleter::splitPath(const QString& path0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("splitPath"); + static PyObject* name = PyUnicode_FromString("splitPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "const QString&"}; @@ -263,7 +263,7 @@ void PythonQtShell_QCompleter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -558,7 +558,7 @@ void PythonQtShell_QDataWidgetMapper::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -580,7 +580,7 @@ void PythonQtShell_QDataWidgetMapper::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -602,7 +602,7 @@ bool PythonQtShell_QDataWidgetMapper::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -635,7 +635,7 @@ bool PythonQtShell_QDataWidgetMapper::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -668,7 +668,7 @@ void PythonQtShell_QDataWidgetMapper::setCurrentIndex(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -690,7 +690,7 @@ void PythonQtShell_QDataWidgetMapper::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -825,7 +825,7 @@ void PythonQtShell_QDateEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -847,7 +847,7 @@ void PythonQtShell_QDateEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -869,7 +869,7 @@ void PythonQtShell_QDateEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -891,7 +891,7 @@ void PythonQtShell_QDateEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -913,7 +913,7 @@ void PythonQtShell_QDateEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -935,7 +935,7 @@ void PythonQtShell_QDateEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -957,7 +957,7 @@ void PythonQtShell_QDateEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -979,7 +979,7 @@ QDateTime PythonQtShell_QDateEdit::dateTimeFromText(const QString& text0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -1012,7 +1012,7 @@ int PythonQtShell_QDateEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1045,7 +1045,7 @@ void PythonQtShell_QDateEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1067,7 +1067,7 @@ void PythonQtShell_QDateEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1089,7 +1089,7 @@ void PythonQtShell_QDateEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1111,7 +1111,7 @@ void PythonQtShell_QDateEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1133,7 +1133,7 @@ void PythonQtShell_QDateEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1155,7 +1155,7 @@ bool PythonQtShell_QDateEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1188,7 +1188,7 @@ bool PythonQtShell_QDateEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1221,7 +1221,7 @@ void PythonQtShell_QDateEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -1243,7 +1243,7 @@ void PythonQtShell_QDateEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1265,7 +1265,7 @@ bool PythonQtShell_QDateEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1298,7 +1298,7 @@ void PythonQtShell_QDateEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1320,7 +1320,7 @@ bool PythonQtShell_QDateEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1353,7 +1353,7 @@ int PythonQtShell_QDateEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1386,7 +1386,7 @@ void PythonQtShell_QDateEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1408,7 +1408,7 @@ void PythonQtShell_QDateEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1430,7 +1430,7 @@ void PythonQtShell_QDateEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1452,7 +1452,7 @@ QVariant PythonQtShell_QDateEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1485,7 +1485,7 @@ void PythonQtShell_QDateEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1507,7 +1507,7 @@ void PythonQtShell_QDateEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1529,7 +1529,7 @@ void PythonQtShell_QDateEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1551,7 +1551,7 @@ int PythonQtShell_QDateEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1584,7 +1584,7 @@ QSize PythonQtShell_QDateEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1617,7 +1617,7 @@ void PythonQtShell_QDateEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1639,7 +1639,7 @@ void PythonQtShell_QDateEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1661,7 +1661,7 @@ void PythonQtShell_QDateEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1683,7 +1683,7 @@ void PythonQtShell_QDateEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1705,7 +1705,7 @@ void PythonQtShell_QDateEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1727,7 +1727,7 @@ bool PythonQtShell_QDateEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1760,7 +1760,7 @@ QPaintEngine* PythonQtShell_QDateEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1793,7 +1793,7 @@ void PythonQtShell_QDateEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1815,7 +1815,7 @@ QPaintDevice* PythonQtShell_QDateEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1848,7 +1848,7 @@ void PythonQtShell_QDateEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1870,7 +1870,7 @@ void PythonQtShell_QDateEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1892,7 +1892,7 @@ QPainter* PythonQtShell_QDateEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1925,7 +1925,7 @@ void PythonQtShell_QDateEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1947,7 +1947,7 @@ QSize PythonQtShell_QDateEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1980,7 +1980,7 @@ void PythonQtShell_QDateEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2002,7 +2002,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDateEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -2035,7 +2035,7 @@ void PythonQtShell_QDateEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2057,7 +2057,7 @@ QString PythonQtShell_QDateEdit::textFromDateTime(const QDateTime& dt0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2090,7 +2090,7 @@ void PythonQtShell_QDateEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2112,7 +2112,7 @@ QValidator::State PythonQtShell_QDateEdit::validate(QString& input0, int& pos if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2145,7 +2145,7 @@ void PythonQtShell_QDateEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2194,7 +2194,7 @@ void PythonQtShell_QDateTimeEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2216,7 +2216,7 @@ void PythonQtShell_QDateTimeEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2238,7 +2238,7 @@ void PythonQtShell_QDateTimeEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2260,7 +2260,7 @@ void PythonQtShell_QDateTimeEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2282,7 +2282,7 @@ void PythonQtShell_QDateTimeEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2304,7 +2304,7 @@ void PythonQtShell_QDateTimeEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2326,7 +2326,7 @@ void PythonQtShell_QDateTimeEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2348,7 +2348,7 @@ QDateTime PythonQtShell_QDateTimeEdit::dateTimeFromText(const QString& text0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -2381,7 +2381,7 @@ int PythonQtShell_QDateTimeEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2414,7 +2414,7 @@ void PythonQtShell_QDateTimeEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2436,7 +2436,7 @@ void PythonQtShell_QDateTimeEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2458,7 +2458,7 @@ void PythonQtShell_QDateTimeEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2480,7 +2480,7 @@ void PythonQtShell_QDateTimeEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2502,7 +2502,7 @@ void PythonQtShell_QDateTimeEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2524,7 +2524,7 @@ bool PythonQtShell_QDateTimeEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2557,7 +2557,7 @@ bool PythonQtShell_QDateTimeEdit::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2590,7 +2590,7 @@ void PythonQtShell_QDateTimeEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2612,7 +2612,7 @@ void PythonQtShell_QDateTimeEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2634,7 +2634,7 @@ bool PythonQtShell_QDateTimeEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2667,7 +2667,7 @@ void PythonQtShell_QDateTimeEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2689,7 +2689,7 @@ bool PythonQtShell_QDateTimeEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2722,7 +2722,7 @@ int PythonQtShell_QDateTimeEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2755,7 +2755,7 @@ void PythonQtShell_QDateTimeEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2777,7 +2777,7 @@ void PythonQtShell_QDateTimeEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2799,7 +2799,7 @@ void PythonQtShell_QDateTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2821,7 +2821,7 @@ QVariant PythonQtShell_QDateTimeEdit::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2854,7 +2854,7 @@ void PythonQtShell_QDateTimeEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2876,7 +2876,7 @@ void PythonQtShell_QDateTimeEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2898,7 +2898,7 @@ void PythonQtShell_QDateTimeEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2920,7 +2920,7 @@ int PythonQtShell_QDateTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2953,7 +2953,7 @@ QSize PythonQtShell_QDateTimeEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2986,7 +2986,7 @@ void PythonQtShell_QDateTimeEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3008,7 +3008,7 @@ void PythonQtShell_QDateTimeEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3030,7 +3030,7 @@ void PythonQtShell_QDateTimeEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3052,7 +3052,7 @@ void PythonQtShell_QDateTimeEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3074,7 +3074,7 @@ void PythonQtShell_QDateTimeEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3096,7 +3096,7 @@ bool PythonQtShell_QDateTimeEdit::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3129,7 +3129,7 @@ QPaintEngine* PythonQtShell_QDateTimeEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3162,7 +3162,7 @@ void PythonQtShell_QDateTimeEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3184,7 +3184,7 @@ QPaintDevice* PythonQtShell_QDateTimeEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QDateTimeEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3239,7 +3239,7 @@ void PythonQtShell_QDateTimeEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3261,7 +3261,7 @@ QPainter* PythonQtShell_QDateTimeEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3294,7 +3294,7 @@ void PythonQtShell_QDateTimeEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3316,7 +3316,7 @@ QSize PythonQtShell_QDateTimeEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3349,7 +3349,7 @@ void PythonQtShell_QDateTimeEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3371,7 +3371,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDateTimeEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -3404,7 +3404,7 @@ void PythonQtShell_QDateTimeEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3426,7 +3426,7 @@ QString PythonQtShell_QDateTimeEdit::textFromDateTime(const QDateTime& dt0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -3459,7 +3459,7 @@ void PythonQtShell_QDateTimeEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3481,7 +3481,7 @@ QValidator::State PythonQtShell_QDateTimeEdit::validate(QString& input0, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3514,7 +3514,7 @@ void PythonQtShell_QDateTimeEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3820,7 +3820,7 @@ void PythonQtShell_QDesktopWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3842,7 +3842,7 @@ void PythonQtShell_QDesktopWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3864,7 +3864,7 @@ void PythonQtShell_QDesktopWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3886,7 +3886,7 @@ void PythonQtShell_QDesktopWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3908,7 +3908,7 @@ void PythonQtShell_QDesktopWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3930,7 +3930,7 @@ void PythonQtShell_QDesktopWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3952,7 +3952,7 @@ int PythonQtShell_QDesktopWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3985,7 +3985,7 @@ void PythonQtShell_QDesktopWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4007,7 +4007,7 @@ void PythonQtShell_QDesktopWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4029,7 +4029,7 @@ void PythonQtShell_QDesktopWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4051,7 +4051,7 @@ void PythonQtShell_QDesktopWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4073,7 +4073,7 @@ void PythonQtShell_QDesktopWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4095,7 +4095,7 @@ bool PythonQtShell_QDesktopWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4128,7 +4128,7 @@ bool PythonQtShell_QDesktopWidget::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4161,7 +4161,7 @@ void PythonQtShell_QDesktopWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4183,7 +4183,7 @@ bool PythonQtShell_QDesktopWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4216,7 +4216,7 @@ void PythonQtShell_QDesktopWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4238,7 +4238,7 @@ bool PythonQtShell_QDesktopWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4271,7 +4271,7 @@ int PythonQtShell_QDesktopWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4304,7 +4304,7 @@ void PythonQtShell_QDesktopWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4326,7 +4326,7 @@ void PythonQtShell_QDesktopWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4348,7 +4348,7 @@ void PythonQtShell_QDesktopWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4370,7 +4370,7 @@ QVariant PythonQtShell_QDesktopWidget::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4403,7 +4403,7 @@ void PythonQtShell_QDesktopWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4425,7 +4425,7 @@ void PythonQtShell_QDesktopWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4447,7 +4447,7 @@ void PythonQtShell_QDesktopWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4469,7 +4469,7 @@ int PythonQtShell_QDesktopWidget::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4502,7 +4502,7 @@ QSize PythonQtShell_QDesktopWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4535,7 +4535,7 @@ void PythonQtShell_QDesktopWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4557,7 +4557,7 @@ void PythonQtShell_QDesktopWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4579,7 +4579,7 @@ void PythonQtShell_QDesktopWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4601,7 +4601,7 @@ void PythonQtShell_QDesktopWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4623,7 +4623,7 @@ void PythonQtShell_QDesktopWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4645,7 +4645,7 @@ bool PythonQtShell_QDesktopWidget::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4678,7 +4678,7 @@ QPaintEngine* PythonQtShell_QDesktopWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4711,7 +4711,7 @@ void PythonQtShell_QDesktopWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4733,7 +4733,7 @@ QPaintDevice* PythonQtShell_QDesktopWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4766,7 +4766,7 @@ void PythonQtShell_QDesktopWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4788,7 +4788,7 @@ void PythonQtShell_QDesktopWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4810,7 +4810,7 @@ QPainter* PythonQtShell_QDesktopWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4843,7 +4843,7 @@ void PythonQtShell_QDesktopWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4865,7 +4865,7 @@ QSize PythonQtShell_QDesktopWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4898,7 +4898,7 @@ void PythonQtShell_QDesktopWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4920,7 +4920,7 @@ void PythonQtShell_QDesktopWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4942,7 +4942,7 @@ void PythonQtShell_QDesktopWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5052,7 +5052,7 @@ void PythonQtShell_QDial::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5074,7 +5074,7 @@ void PythonQtShell_QDial::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5096,7 +5096,7 @@ void PythonQtShell_QDial::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5118,7 +5118,7 @@ void PythonQtShell_QDial::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5140,7 +5140,7 @@ void PythonQtShell_QDial::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5162,7 +5162,7 @@ void PythonQtShell_QDial::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5184,7 +5184,7 @@ int PythonQtShell_QDial::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5217,7 +5217,7 @@ void PythonQtShell_QDial::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5239,7 +5239,7 @@ void PythonQtShell_QDial::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5261,7 +5261,7 @@ void PythonQtShell_QDial::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5283,7 +5283,7 @@ void PythonQtShell_QDial::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5305,7 +5305,7 @@ void PythonQtShell_QDial::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5327,7 +5327,7 @@ bool PythonQtShell_QDial::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5360,7 +5360,7 @@ bool PythonQtShell_QDial::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5393,7 +5393,7 @@ void PythonQtShell_QDial::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5415,7 +5415,7 @@ bool PythonQtShell_QDial::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5448,7 +5448,7 @@ void PythonQtShell_QDial::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5470,7 +5470,7 @@ bool PythonQtShell_QDial::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5503,7 +5503,7 @@ int PythonQtShell_QDial::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5536,7 +5536,7 @@ void PythonQtShell_QDial::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5558,7 +5558,7 @@ void PythonQtShell_QDial::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5580,7 +5580,7 @@ void PythonQtShell_QDial::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5602,7 +5602,7 @@ QVariant PythonQtShell_QDial::inputMethodQuery(Qt::InputMethodQuery arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5635,7 +5635,7 @@ void PythonQtShell_QDial::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5657,7 +5657,7 @@ void PythonQtShell_QDial::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5679,7 +5679,7 @@ void PythonQtShell_QDial::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5701,7 +5701,7 @@ int PythonQtShell_QDial::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5734,7 +5734,7 @@ QSize PythonQtShell_QDial::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5767,7 +5767,7 @@ void PythonQtShell_QDial::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5789,7 +5789,7 @@ void PythonQtShell_QDial::mouseMoveEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5811,7 +5811,7 @@ void PythonQtShell_QDial::mousePressEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5833,7 +5833,7 @@ void PythonQtShell_QDial::mouseReleaseEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5855,7 +5855,7 @@ void PythonQtShell_QDial::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5877,7 +5877,7 @@ bool PythonQtShell_QDial::nativeEvent(const QByteArray& eventType0, void* mes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5910,7 +5910,7 @@ QPaintEngine* PythonQtShell_QDial::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5943,7 +5943,7 @@ void PythonQtShell_QDial::paintEvent(QPaintEvent* pe0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5965,7 +5965,7 @@ QPaintDevice* PythonQtShell_QDial::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5998,7 +5998,7 @@ void PythonQtShell_QDial::resizeEvent(QResizeEvent* re0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6020,7 +6020,7 @@ void PythonQtShell_QDial::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6042,7 +6042,7 @@ QPainter* PythonQtShell_QDial::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6075,7 +6075,7 @@ void PythonQtShell_QDial::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6097,7 +6097,7 @@ QSize PythonQtShell_QDial::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6130,7 +6130,7 @@ void PythonQtShell_QDial::sliderChange(QAbstractSlider::SliderChange change0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -6152,7 +6152,7 @@ void PythonQtShell_QDial::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6174,7 +6174,7 @@ void PythonQtShell_QDial::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6196,7 +6196,7 @@ void PythonQtShell_QDial::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6281,7 +6281,7 @@ void PythonQtShell_QDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6303,7 +6303,7 @@ void PythonQtShell_QDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6325,7 +6325,7 @@ void PythonQtShell_QDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6347,7 +6347,7 @@ void PythonQtShell_QDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6369,7 +6369,7 @@ void PythonQtShell_QDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6391,7 +6391,7 @@ void PythonQtShell_QDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6413,7 +6413,7 @@ void PythonQtShell_QDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6435,7 +6435,7 @@ int PythonQtShell_QDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6468,7 +6468,7 @@ void PythonQtShell_QDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6490,7 +6490,7 @@ void PythonQtShell_QDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6512,7 +6512,7 @@ void PythonQtShell_QDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6534,7 +6534,7 @@ void PythonQtShell_QDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6556,7 +6556,7 @@ void PythonQtShell_QDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6578,7 +6578,7 @@ void PythonQtShell_QDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6600,7 +6600,7 @@ bool PythonQtShell_QDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6633,7 +6633,7 @@ bool PythonQtShell_QDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6666,7 +6666,7 @@ int PythonQtShell_QDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6699,7 +6699,7 @@ void PythonQtShell_QDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6721,7 +6721,7 @@ bool PythonQtShell_QDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6754,7 +6754,7 @@ void PythonQtShell_QDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6776,7 +6776,7 @@ bool PythonQtShell_QDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6809,7 +6809,7 @@ int PythonQtShell_QDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6842,7 +6842,7 @@ void PythonQtShell_QDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6864,7 +6864,7 @@ void PythonQtShell_QDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6886,7 +6886,7 @@ void PythonQtShell_QDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6908,7 +6908,7 @@ QVariant PythonQtShell_QDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6941,7 +6941,7 @@ void PythonQtShell_QDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6963,7 +6963,7 @@ void PythonQtShell_QDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6985,7 +6985,7 @@ void PythonQtShell_QDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7007,7 +7007,7 @@ int PythonQtShell_QDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7040,7 +7040,7 @@ QSize PythonQtShell_QDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7073,7 +7073,7 @@ void PythonQtShell_QDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7095,7 +7095,7 @@ void PythonQtShell_QDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7117,7 +7117,7 @@ void PythonQtShell_QDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7139,7 +7139,7 @@ void PythonQtShell_QDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7161,7 +7161,7 @@ void PythonQtShell_QDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7183,7 +7183,7 @@ bool PythonQtShell_QDialog::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7216,7 +7216,7 @@ void PythonQtShell_QDialog::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7238,7 +7238,7 @@ QPaintEngine* PythonQtShell_QDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7271,7 +7271,7 @@ void PythonQtShell_QDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7293,7 +7293,7 @@ QPaintDevice* PythonQtShell_QDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7326,7 +7326,7 @@ void PythonQtShell_QDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7348,7 +7348,7 @@ void PythonQtShell_QDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7370,7 +7370,7 @@ void PythonQtShell_QDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7392,7 +7392,7 @@ QPainter* PythonQtShell_QDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7425,7 +7425,7 @@ void PythonQtShell_QDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7447,7 +7447,7 @@ QSize PythonQtShell_QDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7480,7 +7480,7 @@ void PythonQtShell_QDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7502,7 +7502,7 @@ void PythonQtShell_QDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7524,7 +7524,7 @@ void PythonQtShell_QDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7609,7 +7609,7 @@ void PythonQtShell_QDialogButtonBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7631,7 +7631,7 @@ void PythonQtShell_QDialogButtonBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7653,7 +7653,7 @@ void PythonQtShell_QDialogButtonBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7675,7 +7675,7 @@ void PythonQtShell_QDialogButtonBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7697,7 +7697,7 @@ void PythonQtShell_QDialogButtonBox::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7719,7 +7719,7 @@ void PythonQtShell_QDialogButtonBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7741,7 +7741,7 @@ int PythonQtShell_QDialogButtonBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7774,7 +7774,7 @@ void PythonQtShell_QDialogButtonBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7796,7 +7796,7 @@ void PythonQtShell_QDialogButtonBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7818,7 +7818,7 @@ void PythonQtShell_QDialogButtonBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7840,7 +7840,7 @@ void PythonQtShell_QDialogButtonBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7862,7 +7862,7 @@ void PythonQtShell_QDialogButtonBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7884,7 +7884,7 @@ bool PythonQtShell_QDialogButtonBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7917,7 +7917,7 @@ bool PythonQtShell_QDialogButtonBox::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7950,7 +7950,7 @@ void PythonQtShell_QDialogButtonBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7972,7 +7972,7 @@ bool PythonQtShell_QDialogButtonBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8005,7 +8005,7 @@ void PythonQtShell_QDialogButtonBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8027,7 +8027,7 @@ bool PythonQtShell_QDialogButtonBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8060,7 +8060,7 @@ int PythonQtShell_QDialogButtonBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8093,7 +8093,7 @@ void PythonQtShell_QDialogButtonBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8115,7 +8115,7 @@ void PythonQtShell_QDialogButtonBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8137,7 +8137,7 @@ void PythonQtShell_QDialogButtonBox::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8159,7 +8159,7 @@ QVariant PythonQtShell_QDialogButtonBox::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8192,7 +8192,7 @@ void PythonQtShell_QDialogButtonBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8214,7 +8214,7 @@ void PythonQtShell_QDialogButtonBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8236,7 +8236,7 @@ void PythonQtShell_QDialogButtonBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8258,7 +8258,7 @@ int PythonQtShell_QDialogButtonBox::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8291,7 +8291,7 @@ QSize PythonQtShell_QDialogButtonBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8324,7 +8324,7 @@ void PythonQtShell_QDialogButtonBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8346,7 +8346,7 @@ void PythonQtShell_QDialogButtonBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8368,7 +8368,7 @@ void PythonQtShell_QDialogButtonBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8390,7 +8390,7 @@ void PythonQtShell_QDialogButtonBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8412,7 +8412,7 @@ void PythonQtShell_QDialogButtonBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8434,7 +8434,7 @@ bool PythonQtShell_QDialogButtonBox::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8467,7 +8467,7 @@ QPaintEngine* PythonQtShell_QDialogButtonBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8500,7 +8500,7 @@ void PythonQtShell_QDialogButtonBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8522,7 +8522,7 @@ QPaintDevice* PythonQtShell_QDialogButtonBox::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8555,7 +8555,7 @@ void PythonQtShell_QDialogButtonBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8577,7 +8577,7 @@ void PythonQtShell_QDialogButtonBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8599,7 +8599,7 @@ QPainter* PythonQtShell_QDialogButtonBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8632,7 +8632,7 @@ void PythonQtShell_QDialogButtonBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8654,7 +8654,7 @@ QSize PythonQtShell_QDialogButtonBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8687,7 +8687,7 @@ void PythonQtShell_QDialogButtonBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8709,7 +8709,7 @@ void PythonQtShell_QDialogButtonBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8731,7 +8731,7 @@ void PythonQtShell_QDialogButtonBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8863,7 +8863,7 @@ QModelIndex PythonQtShell_QDirModel::buddy(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8896,7 +8896,7 @@ bool PythonQtShell_QDirModel::canDropMimeData(const QMimeData* data0, Qt::Drop if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -8929,7 +8929,7 @@ bool PythonQtShell_QDirModel::canFetchMore(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8962,7 +8962,7 @@ void PythonQtShell_QDirModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8984,7 +8984,7 @@ int PythonQtShell_QDirModel::columnCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -9017,7 +9017,7 @@ void PythonQtShell_QDirModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9039,7 +9039,7 @@ QVariant PythonQtShell_QDirModel::data(const QModelIndex& index0, int role1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -9072,7 +9072,7 @@ bool PythonQtShell_QDirModel::dropMimeData(const QMimeData* data0, Qt::DropAct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -9105,7 +9105,7 @@ bool PythonQtShell_QDirModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9138,7 +9138,7 @@ bool PythonQtShell_QDirModel::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9171,7 +9171,7 @@ void PythonQtShell_QDirModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9193,7 +9193,7 @@ Qt::ItemFlags PythonQtShell_QDirModel::flags(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -9226,7 +9226,7 @@ bool PythonQtShell_QDirModel::hasChildren(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -9259,7 +9259,7 @@ QVariant PythonQtShell_QDirModel::headerData(int section0, Qt::Orientation or if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -9292,7 +9292,7 @@ QModelIndex PythonQtShell_QDirModel::index(int row0, int column1, const QMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -9325,7 +9325,7 @@ bool PythonQtShell_QDirModel::insertColumns(int column0, int count1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9358,7 +9358,7 @@ bool PythonQtShell_QDirModel::insertRows(int row0, int count1, const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9391,7 +9391,7 @@ QMap PythonQtShell_QDirModel::itemData(const QModelIndex& ind if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -9424,7 +9424,7 @@ QList PythonQtShell_QDirModel::match(const QModelIndex& start0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -9457,7 +9457,7 @@ QMimeData* PythonQtShell_QDirModel::mimeData(const QList& indexe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -9490,7 +9490,7 @@ QStringList PythonQtShell_QDirModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -9523,7 +9523,7 @@ bool PythonQtShell_QDirModel::moveColumns(const QModelIndex& sourceParent0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -9556,7 +9556,7 @@ bool PythonQtShell_QDirModel::moveRows(const QModelIndex& sourceParent0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -9589,7 +9589,7 @@ QModelIndex PythonQtShell_QDirModel::parent(const QModelIndex& child0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -9622,7 +9622,7 @@ bool PythonQtShell_QDirModel::removeColumns(int column0, int count1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9655,7 +9655,7 @@ bool PythonQtShell_QDirModel::removeRows(int row0, int count1, const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9688,7 +9688,7 @@ void PythonQtShell_QDirModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9710,7 +9710,7 @@ QHash PythonQtShell_QDirModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -9743,7 +9743,7 @@ int PythonQtShell_QDirModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -9776,7 +9776,7 @@ bool PythonQtShell_QDirModel::setData(const QModelIndex& index0, const QVarian if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -9809,7 +9809,7 @@ bool PythonQtShell_QDirModel::setHeaderData(int section0, Qt::Orientation ori if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -9842,7 +9842,7 @@ bool PythonQtShell_QDirModel::setItemData(const QModelIndex& index0, const QMa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -9875,7 +9875,7 @@ QModelIndex PythonQtShell_QDirModel::sibling(int row0, int column1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -9908,7 +9908,7 @@ void PythonQtShell_QDirModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -9930,7 +9930,7 @@ QSize PythonQtShell_QDirModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -9963,7 +9963,7 @@ bool PythonQtShell_QDirModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9996,7 +9996,7 @@ Qt::DropActions PythonQtShell_QDirModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -10029,7 +10029,7 @@ Qt::DropActions PythonQtShell_QDirModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -10062,7 +10062,7 @@ void PythonQtShell_QDirModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10226,7 +10226,7 @@ void PythonQtShell_QDockWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10248,7 +10248,7 @@ void PythonQtShell_QDockWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10270,7 +10270,7 @@ void PythonQtShell_QDockWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10292,7 +10292,7 @@ void PythonQtShell_QDockWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10314,7 +10314,7 @@ void PythonQtShell_QDockWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10336,7 +10336,7 @@ void PythonQtShell_QDockWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10358,7 +10358,7 @@ int PythonQtShell_QDockWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10391,7 +10391,7 @@ void PythonQtShell_QDockWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10413,7 +10413,7 @@ void PythonQtShell_QDockWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10435,7 +10435,7 @@ void PythonQtShell_QDockWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10457,7 +10457,7 @@ void PythonQtShell_QDockWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10479,7 +10479,7 @@ void PythonQtShell_QDockWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10501,7 +10501,7 @@ bool PythonQtShell_QDockWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10534,7 +10534,7 @@ bool PythonQtShell_QDockWidget::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10567,7 +10567,7 @@ void PythonQtShell_QDockWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10589,7 +10589,7 @@ bool PythonQtShell_QDockWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10622,7 +10622,7 @@ void PythonQtShell_QDockWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10644,7 +10644,7 @@ bool PythonQtShell_QDockWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10677,7 +10677,7 @@ int PythonQtShell_QDockWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10710,7 +10710,7 @@ void PythonQtShell_QDockWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10732,7 +10732,7 @@ void PythonQtShell_QDockWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10754,7 +10754,7 @@ void PythonQtShell_QDockWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10776,7 +10776,7 @@ QVariant PythonQtShell_QDockWidget::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10809,7 +10809,7 @@ void PythonQtShell_QDockWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10831,7 +10831,7 @@ void PythonQtShell_QDockWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10853,7 +10853,7 @@ void PythonQtShell_QDockWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10875,7 +10875,7 @@ int PythonQtShell_QDockWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10908,7 +10908,7 @@ QSize PythonQtShell_QDockWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10941,7 +10941,7 @@ void PythonQtShell_QDockWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10963,7 +10963,7 @@ void PythonQtShell_QDockWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10985,7 +10985,7 @@ void PythonQtShell_QDockWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11007,7 +11007,7 @@ void PythonQtShell_QDockWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11029,7 +11029,7 @@ void PythonQtShell_QDockWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11051,7 +11051,7 @@ bool PythonQtShell_QDockWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11084,7 +11084,7 @@ QPaintEngine* PythonQtShell_QDockWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11117,7 +11117,7 @@ void PythonQtShell_QDockWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11139,7 +11139,7 @@ QPaintDevice* PythonQtShell_QDockWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11172,7 +11172,7 @@ void PythonQtShell_QDockWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11194,7 +11194,7 @@ void PythonQtShell_QDockWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11216,7 +11216,7 @@ QPainter* PythonQtShell_QDockWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11249,7 +11249,7 @@ void PythonQtShell_QDockWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11271,7 +11271,7 @@ QSize PythonQtShell_QDockWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11304,7 +11304,7 @@ void PythonQtShell_QDockWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11326,7 +11326,7 @@ void PythonQtShell_QDockWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11348,7 +11348,7 @@ void PythonQtShell_QDockWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11462,7 +11462,7 @@ void PythonQtShell_QDoubleSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11484,7 +11484,7 @@ void PythonQtShell_QDoubleSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11506,7 +11506,7 @@ void PythonQtShell_QDoubleSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11528,7 +11528,7 @@ void PythonQtShell_QDoubleSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11550,7 +11550,7 @@ void PythonQtShell_QDoubleSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11572,7 +11572,7 @@ void PythonQtShell_QDoubleSpinBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11594,7 +11594,7 @@ void PythonQtShell_QDoubleSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11616,7 +11616,7 @@ int PythonQtShell_QDoubleSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11649,7 +11649,7 @@ void PythonQtShell_QDoubleSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11671,7 +11671,7 @@ void PythonQtShell_QDoubleSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11693,7 +11693,7 @@ void PythonQtShell_QDoubleSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11715,7 +11715,7 @@ void PythonQtShell_QDoubleSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11737,7 +11737,7 @@ void PythonQtShell_QDoubleSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11759,7 +11759,7 @@ bool PythonQtShell_QDoubleSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11792,7 +11792,7 @@ bool PythonQtShell_QDoubleSpinBox::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11825,7 +11825,7 @@ void PythonQtShell_QDoubleSpinBox::fixup(QString& str0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11847,7 +11847,7 @@ void PythonQtShell_QDoubleSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11869,7 +11869,7 @@ bool PythonQtShell_QDoubleSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11902,7 +11902,7 @@ void PythonQtShell_QDoubleSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11924,7 +11924,7 @@ bool PythonQtShell_QDoubleSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11957,7 +11957,7 @@ int PythonQtShell_QDoubleSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11990,7 +11990,7 @@ void PythonQtShell_QDoubleSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12012,7 +12012,7 @@ void PythonQtShell_QDoubleSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12034,7 +12034,7 @@ void PythonQtShell_QDoubleSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12056,7 +12056,7 @@ QVariant PythonQtShell_QDoubleSpinBox::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12089,7 +12089,7 @@ void PythonQtShell_QDoubleSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12111,7 +12111,7 @@ void PythonQtShell_QDoubleSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12133,7 +12133,7 @@ void PythonQtShell_QDoubleSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12155,7 +12155,7 @@ int PythonQtShell_QDoubleSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12188,7 +12188,7 @@ QSize PythonQtShell_QDoubleSpinBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12221,7 +12221,7 @@ void PythonQtShell_QDoubleSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12243,7 +12243,7 @@ void PythonQtShell_QDoubleSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12265,7 +12265,7 @@ void PythonQtShell_QDoubleSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12287,7 +12287,7 @@ void PythonQtShell_QDoubleSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12309,7 +12309,7 @@ void PythonQtShell_QDoubleSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12331,7 +12331,7 @@ bool PythonQtShell_QDoubleSpinBox::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12364,7 +12364,7 @@ QPaintEngine* PythonQtShell_QDoubleSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12397,7 +12397,7 @@ void PythonQtShell_QDoubleSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12419,7 +12419,7 @@ QPaintDevice* PythonQtShell_QDoubleSpinBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12452,7 +12452,7 @@ void PythonQtShell_QDoubleSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12474,7 +12474,7 @@ void PythonQtShell_QDoubleSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12496,7 +12496,7 @@ QPainter* PythonQtShell_QDoubleSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12529,7 +12529,7 @@ void PythonQtShell_QDoubleSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12551,7 +12551,7 @@ QSize PythonQtShell_QDoubleSpinBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12584,7 +12584,7 @@ void PythonQtShell_QDoubleSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12606,7 +12606,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDoubleSpinBox::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -12639,7 +12639,7 @@ void PythonQtShell_QDoubleSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12661,7 +12661,7 @@ QString PythonQtShell_QDoubleSpinBox::textFromValue(double val0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "double"}; @@ -12694,7 +12694,7 @@ void PythonQtShell_QDoubleSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12716,7 +12716,7 @@ QValidator::State PythonQtShell_QDoubleSpinBox::validate(QString& input0, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12749,7 +12749,7 @@ double PythonQtShell_QDoubleSpinBox::valueFromText(const QString& text0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"double" , "const QString&"}; @@ -12782,7 +12782,7 @@ void PythonQtShell_QDoubleSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12912,7 +12912,7 @@ void PythonQtShell_QDoubleValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12934,7 +12934,7 @@ void PythonQtShell_QDoubleValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12956,7 +12956,7 @@ bool PythonQtShell_QDoubleValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12989,7 +12989,7 @@ bool PythonQtShell_QDoubleValidator::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13022,7 +13022,7 @@ void PythonQtShell_QDoubleValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -13044,7 +13044,7 @@ void PythonQtShell_QDoubleValidator::setRange(double bottom0, double top1, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "double" , "double" , "int"}; @@ -13066,7 +13066,7 @@ void PythonQtShell_QDoubleValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13088,7 +13088,7 @@ QValidator::State PythonQtShell_QDoubleValidator::validate(QString& arg__1, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -13193,7 +13193,7 @@ void PythonQtShell_QDrag::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13215,7 +13215,7 @@ void PythonQtShell_QDrag::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13237,7 +13237,7 @@ bool PythonQtShell_QDrag::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13270,7 +13270,7 @@ bool PythonQtShell_QDrag::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13303,7 +13303,7 @@ void PythonQtShell_QDrag::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13580,7 +13580,7 @@ void PythonQtShell_QErrorMessage::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13602,7 +13602,7 @@ void PythonQtShell_QErrorMessage::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13624,7 +13624,7 @@ void PythonQtShell_QErrorMessage::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13646,7 +13646,7 @@ void PythonQtShell_QErrorMessage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13668,7 +13668,7 @@ void PythonQtShell_QErrorMessage::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13690,7 +13690,7 @@ void PythonQtShell_QErrorMessage::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13712,7 +13712,7 @@ void PythonQtShell_QErrorMessage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13734,7 +13734,7 @@ int PythonQtShell_QErrorMessage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13767,7 +13767,7 @@ void PythonQtShell_QErrorMessage::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13789,7 +13789,7 @@ void PythonQtShell_QErrorMessage::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13811,7 +13811,7 @@ void PythonQtShell_QErrorMessage::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13833,7 +13833,7 @@ void PythonQtShell_QErrorMessage::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13855,7 +13855,7 @@ void PythonQtShell_QErrorMessage::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13877,7 +13877,7 @@ void PythonQtShell_QErrorMessage::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13899,7 +13899,7 @@ bool PythonQtShell_QErrorMessage::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13932,7 +13932,7 @@ bool PythonQtShell_QErrorMessage::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13965,7 +13965,7 @@ int PythonQtShell_QErrorMessage::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13998,7 +13998,7 @@ void PythonQtShell_QErrorMessage::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14020,7 +14020,7 @@ bool PythonQtShell_QErrorMessage::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14053,7 +14053,7 @@ void PythonQtShell_QErrorMessage::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14075,7 +14075,7 @@ bool PythonQtShell_QErrorMessage::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14108,7 +14108,7 @@ int PythonQtShell_QErrorMessage::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14141,7 +14141,7 @@ void PythonQtShell_QErrorMessage::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14163,7 +14163,7 @@ void PythonQtShell_QErrorMessage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14185,7 +14185,7 @@ void PythonQtShell_QErrorMessage::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14207,7 +14207,7 @@ QVariant PythonQtShell_QErrorMessage::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14240,7 +14240,7 @@ void PythonQtShell_QErrorMessage::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14262,7 +14262,7 @@ void PythonQtShell_QErrorMessage::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14284,7 +14284,7 @@ void PythonQtShell_QErrorMessage::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14306,7 +14306,7 @@ int PythonQtShell_QErrorMessage::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14339,7 +14339,7 @@ QSize PythonQtShell_QErrorMessage::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14372,7 +14372,7 @@ void PythonQtShell_QErrorMessage::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14394,7 +14394,7 @@ void PythonQtShell_QErrorMessage::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14416,7 +14416,7 @@ void PythonQtShell_QErrorMessage::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14438,7 +14438,7 @@ void PythonQtShell_QErrorMessage::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14460,7 +14460,7 @@ void PythonQtShell_QErrorMessage::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14482,7 +14482,7 @@ bool PythonQtShell_QErrorMessage::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14515,7 +14515,7 @@ void PythonQtShell_QErrorMessage::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14537,7 +14537,7 @@ QPaintEngine* PythonQtShell_QErrorMessage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14570,7 +14570,7 @@ void PythonQtShell_QErrorMessage::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14592,7 +14592,7 @@ QPaintDevice* PythonQtShell_QErrorMessage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14625,7 +14625,7 @@ void PythonQtShell_QErrorMessage::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14647,7 +14647,7 @@ void PythonQtShell_QErrorMessage::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14669,7 +14669,7 @@ void PythonQtShell_QErrorMessage::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14691,7 +14691,7 @@ QPainter* PythonQtShell_QErrorMessage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14724,7 +14724,7 @@ void PythonQtShell_QErrorMessage::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14746,7 +14746,7 @@ QSize PythonQtShell_QErrorMessage::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14779,7 +14779,7 @@ void PythonQtShell_QErrorMessage::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14801,7 +14801,7 @@ void PythonQtShell_QErrorMessage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14823,7 +14823,7 @@ void PythonQtShell_QErrorMessage::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14888,7 +14888,7 @@ void PythonQtShell_QFileDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14910,7 +14910,7 @@ void PythonQtShell_QFileDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14932,7 +14932,7 @@ void PythonQtShell_QFileDialog::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14954,7 +14954,7 @@ void PythonQtShell_QFileDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14976,7 +14976,7 @@ void PythonQtShell_QFileDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14998,7 +14998,7 @@ void PythonQtShell_QFileDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15020,7 +15020,7 @@ void PythonQtShell_QFileDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15042,7 +15042,7 @@ int PythonQtShell_QFileDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15075,7 +15075,7 @@ void PythonQtShell_QFileDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15097,7 +15097,7 @@ void PythonQtShell_QFileDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -15119,7 +15119,7 @@ void PythonQtShell_QFileDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -15141,7 +15141,7 @@ void PythonQtShell_QFileDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -15163,7 +15163,7 @@ void PythonQtShell_QFileDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -15185,7 +15185,7 @@ void PythonQtShell_QFileDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15207,7 +15207,7 @@ bool PythonQtShell_QFileDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15240,7 +15240,7 @@ bool PythonQtShell_QFileDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15273,7 +15273,7 @@ int PythonQtShell_QFileDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15306,7 +15306,7 @@ void PythonQtShell_QFileDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15328,7 +15328,7 @@ bool PythonQtShell_QFileDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15361,7 +15361,7 @@ void PythonQtShell_QFileDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15383,7 +15383,7 @@ bool PythonQtShell_QFileDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15416,7 +15416,7 @@ int PythonQtShell_QFileDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15449,7 +15449,7 @@ void PythonQtShell_QFileDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15471,7 +15471,7 @@ void PythonQtShell_QFileDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15493,7 +15493,7 @@ void PythonQtShell_QFileDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15515,7 +15515,7 @@ QVariant PythonQtShell_QFileDialog::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15548,7 +15548,7 @@ void PythonQtShell_QFileDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15570,7 +15570,7 @@ void PythonQtShell_QFileDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15592,7 +15592,7 @@ void PythonQtShell_QFileDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15614,7 +15614,7 @@ int PythonQtShell_QFileDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15647,7 +15647,7 @@ QSize PythonQtShell_QFileDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15680,7 +15680,7 @@ void PythonQtShell_QFileDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15702,7 +15702,7 @@ void PythonQtShell_QFileDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15724,7 +15724,7 @@ void PythonQtShell_QFileDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15746,7 +15746,7 @@ void PythonQtShell_QFileDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15768,7 +15768,7 @@ void PythonQtShell_QFileDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15790,7 +15790,7 @@ bool PythonQtShell_QFileDialog::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15823,7 +15823,7 @@ QPaintEngine* PythonQtShell_QFileDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15856,7 +15856,7 @@ void PythonQtShell_QFileDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15878,7 +15878,7 @@ QPaintDevice* PythonQtShell_QFileDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15911,7 +15911,7 @@ void PythonQtShell_QFileDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15933,7 +15933,7 @@ void PythonQtShell_QFileDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15955,7 +15955,7 @@ void PythonQtShell_QFileDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15977,7 +15977,7 @@ QPainter* PythonQtShell_QFileDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16010,7 +16010,7 @@ void PythonQtShell_QFileDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16032,7 +16032,7 @@ QSize PythonQtShell_QFileDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16065,7 +16065,7 @@ void PythonQtShell_QFileDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16087,7 +16087,7 @@ void PythonQtShell_QFileDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16109,7 +16109,7 @@ void PythonQtShell_QFileDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16483,7 +16483,7 @@ QIcon PythonQtShell_QFileIconProvider::icon(QFileIconProvider::IconType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QFileIconProvider::IconType"}; @@ -16516,7 +16516,7 @@ QIcon PythonQtShell_QFileIconProvider::icon(const QFileInfo& info0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "const QFileInfo&"}; @@ -16549,7 +16549,7 @@ QString PythonQtShell_QFileIconProvider::type(const QFileInfo& info0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QFileInfo&"}; @@ -16642,7 +16642,7 @@ QModelIndex PythonQtShell_QFileSystemModel::buddy(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -16675,7 +16675,7 @@ bool PythonQtShell_QFileSystemModel::canDropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -16708,7 +16708,7 @@ bool PythonQtShell_QFileSystemModel::canFetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -16741,7 +16741,7 @@ void PythonQtShell_QFileSystemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16763,7 +16763,7 @@ int PythonQtShell_QFileSystemModel::columnCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -16796,7 +16796,7 @@ void PythonQtShell_QFileSystemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16818,7 +16818,7 @@ QVariant PythonQtShell_QFileSystemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -16851,7 +16851,7 @@ bool PythonQtShell_QFileSystemModel::dropMimeData(const QMimeData* data0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -16884,7 +16884,7 @@ bool PythonQtShell_QFileSystemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16917,7 +16917,7 @@ bool PythonQtShell_QFileSystemModel::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16950,7 +16950,7 @@ void PythonQtShell_QFileSystemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -16972,7 +16972,7 @@ Qt::ItemFlags PythonQtShell_QFileSystemModel::flags(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -17005,7 +17005,7 @@ bool PythonQtShell_QFileSystemModel::hasChildren(const QModelIndex& parent0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -17038,7 +17038,7 @@ QVariant PythonQtShell_QFileSystemModel::headerData(int section0, Qt::Orientat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -17071,7 +17071,7 @@ QModelIndex PythonQtShell_QFileSystemModel::index(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -17104,7 +17104,7 @@ bool PythonQtShell_QFileSystemModel::insertColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17137,7 +17137,7 @@ bool PythonQtShell_QFileSystemModel::insertRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17170,7 +17170,7 @@ QMap PythonQtShell_QFileSystemModel::itemData(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -17203,7 +17203,7 @@ QList PythonQtShell_QFileSystemModel::match(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -17236,7 +17236,7 @@ QMimeData* PythonQtShell_QFileSystemModel::mimeData(const QList& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -17269,7 +17269,7 @@ QStringList PythonQtShell_QFileSystemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -17302,7 +17302,7 @@ bool PythonQtShell_QFileSystemModel::moveColumns(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -17335,7 +17335,7 @@ bool PythonQtShell_QFileSystemModel::moveRows(const QModelIndex& sourceParent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -17368,7 +17368,7 @@ QModelIndex PythonQtShell_QFileSystemModel::parent(const QModelIndex& child0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -17401,7 +17401,7 @@ bool PythonQtShell_QFileSystemModel::removeColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17434,7 +17434,7 @@ bool PythonQtShell_QFileSystemModel::removeRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17467,7 +17467,7 @@ void PythonQtShell_QFileSystemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17489,7 +17489,7 @@ QHash PythonQtShell_QFileSystemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -17522,7 +17522,7 @@ int PythonQtShell_QFileSystemModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -17555,7 +17555,7 @@ bool PythonQtShell_QFileSystemModel::setData(const QModelIndex& index0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -17588,7 +17588,7 @@ bool PythonQtShell_QFileSystemModel::setHeaderData(int section0, Qt::Orientati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -17621,7 +17621,7 @@ bool PythonQtShell_QFileSystemModel::setItemData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -17654,7 +17654,7 @@ QModelIndex PythonQtShell_QFileSystemModel::sibling(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -17687,7 +17687,7 @@ void PythonQtShell_QFileSystemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -17709,7 +17709,7 @@ QSize PythonQtShell_QFileSystemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -17742,7 +17742,7 @@ bool PythonQtShell_QFileSystemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17775,7 +17775,7 @@ Qt::DropActions PythonQtShell_QFileSystemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -17808,7 +17808,7 @@ Qt::DropActions PythonQtShell_QFileSystemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -17841,7 +17841,7 @@ void PythonQtShell_QFileSystemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18052,7 +18052,7 @@ void PythonQtShell_QFocusFrame::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18074,7 +18074,7 @@ void PythonQtShell_QFocusFrame::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18096,7 +18096,7 @@ void PythonQtShell_QFocusFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18118,7 +18118,7 @@ void PythonQtShell_QFocusFrame::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18140,7 +18140,7 @@ void PythonQtShell_QFocusFrame::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18162,7 +18162,7 @@ void PythonQtShell_QFocusFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18184,7 +18184,7 @@ int PythonQtShell_QFocusFrame::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18217,7 +18217,7 @@ void PythonQtShell_QFocusFrame::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -18239,7 +18239,7 @@ void PythonQtShell_QFocusFrame::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -18261,7 +18261,7 @@ void PythonQtShell_QFocusFrame::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -18283,7 +18283,7 @@ void PythonQtShell_QFocusFrame::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -18305,7 +18305,7 @@ void PythonQtShell_QFocusFrame::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18327,7 +18327,7 @@ bool PythonQtShell_QFocusFrame::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -18360,7 +18360,7 @@ bool PythonQtShell_QFocusFrame::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -18393,7 +18393,7 @@ void PythonQtShell_QFocusFrame::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18415,7 +18415,7 @@ bool PythonQtShell_QFocusFrame::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18448,7 +18448,7 @@ void PythonQtShell_QFocusFrame::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18470,7 +18470,7 @@ bool PythonQtShell_QFocusFrame::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18503,7 +18503,7 @@ int PythonQtShell_QFocusFrame::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18536,7 +18536,7 @@ void PythonQtShell_QFocusFrame::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18558,7 +18558,7 @@ void PythonQtShell_QFocusFrame::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18580,7 +18580,7 @@ void PythonQtShell_QFocusFrame::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18602,7 +18602,7 @@ QVariant PythonQtShell_QFocusFrame::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18635,7 +18635,7 @@ void PythonQtShell_QFocusFrame::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18657,7 +18657,7 @@ void PythonQtShell_QFocusFrame::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18679,7 +18679,7 @@ void PythonQtShell_QFocusFrame::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18701,7 +18701,7 @@ int PythonQtShell_QFocusFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18734,7 +18734,7 @@ QSize PythonQtShell_QFocusFrame::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18767,7 +18767,7 @@ void PythonQtShell_QFocusFrame::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18789,7 +18789,7 @@ void PythonQtShell_QFocusFrame::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18811,7 +18811,7 @@ void PythonQtShell_QFocusFrame::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18833,7 +18833,7 @@ void PythonQtShell_QFocusFrame::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18855,7 +18855,7 @@ void PythonQtShell_QFocusFrame::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18877,7 +18877,7 @@ bool PythonQtShell_QFocusFrame::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18910,7 +18910,7 @@ QPaintEngine* PythonQtShell_QFocusFrame::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18943,7 +18943,7 @@ void PythonQtShell_QFocusFrame::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18965,7 +18965,7 @@ QPaintDevice* PythonQtShell_QFocusFrame::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18998,7 +18998,7 @@ void PythonQtShell_QFocusFrame::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19020,7 +19020,7 @@ void PythonQtShell_QFocusFrame::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -19042,7 +19042,7 @@ QPainter* PythonQtShell_QFocusFrame::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19075,7 +19075,7 @@ void PythonQtShell_QFocusFrame::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19097,7 +19097,7 @@ QSize PythonQtShell_QFocusFrame::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19130,7 +19130,7 @@ void PythonQtShell_QFocusFrame::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -19152,7 +19152,7 @@ void PythonQtShell_QFocusFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -19174,7 +19174,7 @@ void PythonQtShell_QFocusFrame::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -19234,7 +19234,7 @@ void PythonQtShell_QFontComboBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -19256,7 +19256,7 @@ void PythonQtShell_QFontComboBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19278,7 +19278,7 @@ void PythonQtShell_QFontComboBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -19300,7 +19300,7 @@ void PythonQtShell_QFontComboBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -19322,7 +19322,7 @@ void PythonQtShell_QFontComboBox::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -19344,7 +19344,7 @@ void PythonQtShell_QFontComboBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19366,7 +19366,7 @@ int PythonQtShell_QFontComboBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19399,7 +19399,7 @@ void PythonQtShell_QFontComboBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -19421,7 +19421,7 @@ void PythonQtShell_QFontComboBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -19443,7 +19443,7 @@ void PythonQtShell_QFontComboBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -19465,7 +19465,7 @@ void PythonQtShell_QFontComboBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -19487,7 +19487,7 @@ void PythonQtShell_QFontComboBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19509,7 +19509,7 @@ bool PythonQtShell_QFontComboBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19542,7 +19542,7 @@ bool PythonQtShell_QFontComboBox::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -19575,7 +19575,7 @@ void PythonQtShell_QFontComboBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19597,7 +19597,7 @@ bool PythonQtShell_QFontComboBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19630,7 +19630,7 @@ void PythonQtShell_QFontComboBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19652,7 +19652,7 @@ bool PythonQtShell_QFontComboBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19685,7 +19685,7 @@ int PythonQtShell_QFontComboBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19718,7 +19718,7 @@ void PythonQtShell_QFontComboBox::hideEvent(QHideEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19740,7 +19740,7 @@ void PythonQtShell_QFontComboBox::hidePopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19762,7 +19762,7 @@ void PythonQtShell_QFontComboBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19784,7 +19784,7 @@ void PythonQtShell_QFontComboBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19806,7 +19806,7 @@ QVariant PythonQtShell_QFontComboBox::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19839,7 +19839,7 @@ void PythonQtShell_QFontComboBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19861,7 +19861,7 @@ void PythonQtShell_QFontComboBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19883,7 +19883,7 @@ void PythonQtShell_QFontComboBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19905,7 +19905,7 @@ int PythonQtShell_QFontComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19938,7 +19938,7 @@ QSize PythonQtShell_QFontComboBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19971,7 +19971,7 @@ void PythonQtShell_QFontComboBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19993,7 +19993,7 @@ void PythonQtShell_QFontComboBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20015,7 +20015,7 @@ void PythonQtShell_QFontComboBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20037,7 +20037,7 @@ void PythonQtShell_QFontComboBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20059,7 +20059,7 @@ void PythonQtShell_QFontComboBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -20081,7 +20081,7 @@ bool PythonQtShell_QFontComboBox::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -20114,7 +20114,7 @@ QPaintEngine* PythonQtShell_QFontComboBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -20147,7 +20147,7 @@ void PythonQtShell_QFontComboBox::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -20169,7 +20169,7 @@ QPaintDevice* PythonQtShell_QFontComboBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -20202,7 +20202,7 @@ void PythonQtShell_QFontComboBox::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -20224,7 +20224,7 @@ void PythonQtShell_QFontComboBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -20246,7 +20246,7 @@ QPainter* PythonQtShell_QFontComboBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -20279,7 +20279,7 @@ void PythonQtShell_QFontComboBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -20301,7 +20301,7 @@ void PythonQtShell_QFontComboBox::showPopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20323,7 +20323,7 @@ QSize PythonQtShell_QFontComboBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -20356,7 +20356,7 @@ void PythonQtShell_QFontComboBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -20378,7 +20378,7 @@ void PythonQtShell_QFontComboBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -20400,7 +20400,7 @@ void PythonQtShell_QFontComboBox::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp index d61f62556..e4bc3482e 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp @@ -96,7 +96,7 @@ QSurfaceFormat PythonQtShell_QSurface::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -129,7 +129,7 @@ QSize PythonQtShell_QSurface::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -162,7 +162,7 @@ QPlatformSurface* PythonQtShell_QSurface::surfaceHandle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceHandle"); + static PyObject* name = PyUnicode_FromString("surfaceHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPlatformSurface*"}; @@ -195,7 +195,7 @@ QSurface::SurfaceType PythonQtShell_QSurface::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -504,7 +504,7 @@ void PythonQtShell_QSwipeGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -526,7 +526,7 @@ void PythonQtShell_QSwipeGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -548,7 +548,7 @@ bool PythonQtShell_QSwipeGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -581,7 +581,7 @@ bool PythonQtShell_QSwipeGesture::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -614,7 +614,7 @@ void PythonQtShell_QSwipeGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -679,7 +679,7 @@ void PythonQtShell_QSyntaxHighlighter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -701,7 +701,7 @@ void PythonQtShell_QSyntaxHighlighter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -723,7 +723,7 @@ bool PythonQtShell_QSyntaxHighlighter::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -756,7 +756,7 @@ bool PythonQtShell_QSyntaxHighlighter::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -789,7 +789,7 @@ void PythonQtShell_QSyntaxHighlighter::highlightBlock(const QString& text0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("highlightBlock"); + static PyObject* name = PyUnicode_FromString("highlightBlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -811,7 +811,7 @@ void PythonQtShell_QSyntaxHighlighter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -925,7 +925,7 @@ void PythonQtShell_QSystemTrayIcon::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -947,7 +947,7 @@ void PythonQtShell_QSystemTrayIcon::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -969,7 +969,7 @@ bool PythonQtShell_QSystemTrayIcon::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1002,7 +1002,7 @@ bool PythonQtShell_QSystemTrayIcon::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1035,7 +1035,7 @@ void PythonQtShell_QSystemTrayIcon::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1134,7 +1134,7 @@ void PythonQtShell_QTabBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1156,7 +1156,7 @@ void PythonQtShell_QTabBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1178,7 +1178,7 @@ void PythonQtShell_QTabBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1200,7 +1200,7 @@ void PythonQtShell_QTabBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1222,7 +1222,7 @@ void PythonQtShell_QTabBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1244,7 +1244,7 @@ void PythonQtShell_QTabBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1266,7 +1266,7 @@ int PythonQtShell_QTabBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1299,7 +1299,7 @@ void PythonQtShell_QTabBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1321,7 +1321,7 @@ void PythonQtShell_QTabBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1343,7 +1343,7 @@ void PythonQtShell_QTabBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1365,7 +1365,7 @@ void PythonQtShell_QTabBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1387,7 +1387,7 @@ void PythonQtShell_QTabBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1409,7 +1409,7 @@ bool PythonQtShell_QTabBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1442,7 +1442,7 @@ bool PythonQtShell_QTabBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1475,7 +1475,7 @@ void PythonQtShell_QTabBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1497,7 +1497,7 @@ bool PythonQtShell_QTabBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1530,7 +1530,7 @@ void PythonQtShell_QTabBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1552,7 +1552,7 @@ bool PythonQtShell_QTabBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1585,7 +1585,7 @@ int PythonQtShell_QTabBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1618,7 +1618,7 @@ void PythonQtShell_QTabBar::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1640,7 +1640,7 @@ void PythonQtShell_QTabBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1662,7 +1662,7 @@ void PythonQtShell_QTabBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1684,7 +1684,7 @@ QVariant PythonQtShell_QTabBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1717,7 +1717,7 @@ void PythonQtShell_QTabBar::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1739,7 +1739,7 @@ void PythonQtShell_QTabBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1761,7 +1761,7 @@ void PythonQtShell_QTabBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1783,7 +1783,7 @@ int PythonQtShell_QTabBar::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1816,7 +1816,7 @@ QSize PythonQtShell_QTabBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1849,7 +1849,7 @@ QSize PythonQtShell_QTabBar::minimumTabSizeHint(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumTabSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumTabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -1882,7 +1882,7 @@ void PythonQtShell_QTabBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1904,7 +1904,7 @@ void PythonQtShell_QTabBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1926,7 +1926,7 @@ void PythonQtShell_QTabBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1948,7 +1948,7 @@ void PythonQtShell_QTabBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1970,7 +1970,7 @@ void PythonQtShell_QTabBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1992,7 +1992,7 @@ bool PythonQtShell_QTabBar::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2025,7 +2025,7 @@ QPaintEngine* PythonQtShell_QTabBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2058,7 +2058,7 @@ void PythonQtShell_QTabBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2080,7 +2080,7 @@ QPaintDevice* PythonQtShell_QTabBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2113,7 +2113,7 @@ void PythonQtShell_QTabBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2135,7 +2135,7 @@ void PythonQtShell_QTabBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2157,7 +2157,7 @@ QPainter* PythonQtShell_QTabBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2190,7 +2190,7 @@ void PythonQtShell_QTabBar::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2212,7 +2212,7 @@ QSize PythonQtShell_QTabBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2245,7 +2245,7 @@ void PythonQtShell_QTabBar::tabInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2267,7 +2267,7 @@ void PythonQtShell_QTabBar::tabLayoutChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabLayoutChange"); + static PyObject* name = PyUnicode_FromString("tabLayoutChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2289,7 +2289,7 @@ void PythonQtShell_QTabBar::tabRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2311,7 +2311,7 @@ QSize PythonQtShell_QTabBar::tabSizeHint(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabSizeHint"); + static PyObject* name = PyUnicode_FromString("tabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2344,7 +2344,7 @@ void PythonQtShell_QTabBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2366,7 +2366,7 @@ void PythonQtShell_QTabBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2388,7 +2388,7 @@ void PythonQtShell_QTabBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2733,7 +2733,7 @@ void PythonQtShell_QTabWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2755,7 +2755,7 @@ void PythonQtShell_QTabWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2777,7 +2777,7 @@ void PythonQtShell_QTabWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2799,7 +2799,7 @@ void PythonQtShell_QTabWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2821,7 +2821,7 @@ void PythonQtShell_QTabWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2843,7 +2843,7 @@ void PythonQtShell_QTabWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2865,7 +2865,7 @@ int PythonQtShell_QTabWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2898,7 +2898,7 @@ void PythonQtShell_QTabWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2920,7 +2920,7 @@ void PythonQtShell_QTabWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2942,7 +2942,7 @@ void PythonQtShell_QTabWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2964,7 +2964,7 @@ void PythonQtShell_QTabWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2986,7 +2986,7 @@ void PythonQtShell_QTabWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3008,7 +3008,7 @@ bool PythonQtShell_QTabWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3041,7 +3041,7 @@ bool PythonQtShell_QTabWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3074,7 +3074,7 @@ void PythonQtShell_QTabWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3096,7 +3096,7 @@ bool PythonQtShell_QTabWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3129,7 +3129,7 @@ void PythonQtShell_QTabWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3151,7 +3151,7 @@ bool PythonQtShell_QTabWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3184,7 +3184,7 @@ int PythonQtShell_QTabWidget::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QTabWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3239,7 +3239,7 @@ void PythonQtShell_QTabWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3261,7 +3261,7 @@ void PythonQtShell_QTabWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3283,7 +3283,7 @@ QVariant PythonQtShell_QTabWidget::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3316,7 +3316,7 @@ void PythonQtShell_QTabWidget::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3338,7 +3338,7 @@ void PythonQtShell_QTabWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3360,7 +3360,7 @@ void PythonQtShell_QTabWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3382,7 +3382,7 @@ int PythonQtShell_QTabWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3415,7 +3415,7 @@ QSize PythonQtShell_QTabWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3448,7 +3448,7 @@ void PythonQtShell_QTabWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3470,7 +3470,7 @@ void PythonQtShell_QTabWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3492,7 +3492,7 @@ void PythonQtShell_QTabWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3514,7 +3514,7 @@ void PythonQtShell_QTabWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3536,7 +3536,7 @@ void PythonQtShell_QTabWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3558,7 +3558,7 @@ bool PythonQtShell_QTabWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3591,7 +3591,7 @@ QPaintEngine* PythonQtShell_QTabWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3624,7 +3624,7 @@ void PythonQtShell_QTabWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3646,7 +3646,7 @@ QPaintDevice* PythonQtShell_QTabWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3679,7 +3679,7 @@ void PythonQtShell_QTabWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3701,7 +3701,7 @@ void PythonQtShell_QTabWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3723,7 +3723,7 @@ QPainter* PythonQtShell_QTabWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3756,7 +3756,7 @@ void PythonQtShell_QTabWidget::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3778,7 +3778,7 @@ QSize PythonQtShell_QTabWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3811,7 +3811,7 @@ void PythonQtShell_QTabWidget::tabInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3833,7 +3833,7 @@ void PythonQtShell_QTabWidget::tabRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3855,7 +3855,7 @@ void PythonQtShell_QTabWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3877,7 +3877,7 @@ void PythonQtShell_QTabWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3899,7 +3899,7 @@ void PythonQtShell_QTabWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4184,7 +4184,7 @@ void PythonQtShell_QTableView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4206,7 +4206,7 @@ void PythonQtShell_QTableView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4228,7 +4228,7 @@ void PythonQtShell_QTableView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4250,7 +4250,7 @@ void PythonQtShell_QTableView::closeEditor(QWidget* editor0, QAbstractItemDeleg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -4272,7 +4272,7 @@ void PythonQtShell_QTableView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4294,7 +4294,7 @@ void PythonQtShell_QTableView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4316,7 +4316,7 @@ void PythonQtShell_QTableView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4338,7 +4338,7 @@ void PythonQtShell_QTableView::currentChanged(const QModelIndex& current0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -4360,7 +4360,7 @@ void PythonQtShell_QTableView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4382,7 +4382,7 @@ void PythonQtShell_QTableView::dataChanged(const QModelIndex& topLeft0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4404,7 +4404,7 @@ int PythonQtShell_QTableView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4437,7 +4437,7 @@ void PythonQtShell_QTableView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4459,7 +4459,7 @@ void PythonQtShell_QTableView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4481,7 +4481,7 @@ void PythonQtShell_QTableView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4503,7 +4503,7 @@ void PythonQtShell_QTableView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4525,7 +4525,7 @@ void PythonQtShell_QTableView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4547,7 +4547,7 @@ bool PythonQtShell_QTableView::edit(const QModelIndex& index0, QAbstractItemVi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4580,7 +4580,7 @@ void PythonQtShell_QTableView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4602,7 +4602,7 @@ void PythonQtShell_QTableView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4624,7 +4624,7 @@ bool PythonQtShell_QTableView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4657,7 +4657,7 @@ bool PythonQtShell_QTableView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4690,7 +4690,7 @@ void PythonQtShell_QTableView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4712,7 +4712,7 @@ bool PythonQtShell_QTableView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4745,7 +4745,7 @@ void PythonQtShell_QTableView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4767,7 +4767,7 @@ bool PythonQtShell_QTableView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4800,7 +4800,7 @@ int PythonQtShell_QTableView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4833,7 +4833,7 @@ void PythonQtShell_QTableView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4855,7 +4855,7 @@ int PythonQtShell_QTableView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4888,7 +4888,7 @@ void PythonQtShell_QTableView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4910,7 +4910,7 @@ void PythonQtShell_QTableView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4932,7 +4932,7 @@ QModelIndex PythonQtShell_QTableView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -4965,7 +4965,7 @@ void PythonQtShell_QTableView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4987,7 +4987,7 @@ void PythonQtShell_QTableView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5009,7 +5009,7 @@ QVariant PythonQtShell_QTableView::inputMethodQuery(Qt::InputMethodQuery query if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5042,7 +5042,7 @@ bool PythonQtShell_QTableView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5075,7 +5075,7 @@ void PythonQtShell_QTableView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5097,7 +5097,7 @@ void PythonQtShell_QTableView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5119,7 +5119,7 @@ void PythonQtShell_QTableView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5141,7 +5141,7 @@ void PythonQtShell_QTableView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5163,7 +5163,7 @@ int PythonQtShell_QTableView::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5196,7 +5196,7 @@ QSize PythonQtShell_QTableView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5229,7 +5229,7 @@ void PythonQtShell_QTableView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5251,7 +5251,7 @@ void PythonQtShell_QTableView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5273,7 +5273,7 @@ void PythonQtShell_QTableView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5295,7 +5295,7 @@ void PythonQtShell_QTableView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5317,7 +5317,7 @@ QModelIndex PythonQtShell_QTableView::moveCursor(QAbstractItemView::CursorActio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -5350,7 +5350,7 @@ void PythonQtShell_QTableView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5372,7 +5372,7 @@ bool PythonQtShell_QTableView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5405,7 +5405,7 @@ QPaintEngine* PythonQtShell_QTableView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5438,7 +5438,7 @@ void PythonQtShell_QTableView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5460,7 +5460,7 @@ QPaintDevice* PythonQtShell_QTableView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5493,7 +5493,7 @@ void PythonQtShell_QTableView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5515,7 +5515,7 @@ void PythonQtShell_QTableView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5537,7 +5537,7 @@ void PythonQtShell_QTableView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5559,7 +5559,7 @@ void PythonQtShell_QTableView::rowsInserted(const QModelIndex& parent0, int st if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5581,7 +5581,7 @@ void PythonQtShell_QTableView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5603,7 +5603,7 @@ void PythonQtShell_QTableView::scrollTo(const QModelIndex& index0, QAbstractIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5625,7 +5625,7 @@ void PythonQtShell_QTableView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5647,7 +5647,7 @@ QList PythonQtShell_QTableView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5680,7 +5680,7 @@ void PythonQtShell_QTableView::selectionChanged(const QItemSelection& selected0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5702,7 +5702,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTableView::selectionCommand( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5735,7 +5735,7 @@ void PythonQtShell_QTableView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5757,7 +5757,7 @@ void PythonQtShell_QTableView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5779,7 +5779,7 @@ void PythonQtShell_QTableView::setSelection(const QRect& rect0, QItemSelectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5801,7 +5801,7 @@ void PythonQtShell_QTableView::setSelectionModel(QItemSelectionModel* selection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5823,7 +5823,7 @@ void PythonQtShell_QTableView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5845,7 +5845,7 @@ void PythonQtShell_QTableView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5867,7 +5867,7 @@ QPainter* PythonQtShell_QTableView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5900,7 +5900,7 @@ void PythonQtShell_QTableView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5922,7 +5922,7 @@ QSize PythonQtShell_QTableView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5955,7 +5955,7 @@ int PythonQtShell_QTableView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5988,7 +5988,7 @@ int PythonQtShell_QTableView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6021,7 +6021,7 @@ void PythonQtShell_QTableView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -6043,7 +6043,7 @@ void PythonQtShell_QTableView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6065,7 +6065,7 @@ void PythonQtShell_QTableView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6087,7 +6087,7 @@ void PythonQtShell_QTableView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6109,7 +6109,7 @@ void PythonQtShell_QTableView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6131,7 +6131,7 @@ void PythonQtShell_QTableView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6153,7 +6153,7 @@ int PythonQtShell_QTableView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6186,7 +6186,7 @@ void PythonQtShell_QTableView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6208,7 +6208,7 @@ void PythonQtShell_QTableView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6230,7 +6230,7 @@ QStyleOptionViewItem PythonQtShell_QTableView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -6263,7 +6263,7 @@ bool PythonQtShell_QTableView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6296,7 +6296,7 @@ QSize PythonQtShell_QTableView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6329,7 +6329,7 @@ QRect PythonQtShell_QTableView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -6362,7 +6362,7 @@ QRegion PythonQtShell_QTableView::visualRegionForSelection(const QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6395,7 +6395,7 @@ void PythonQtShell_QTableView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6590,7 +6590,7 @@ void PythonQtShell_QTableWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6612,7 +6612,7 @@ void PythonQtShell_QTableWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6634,7 +6634,7 @@ void PythonQtShell_QTableWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6656,7 +6656,7 @@ void PythonQtShell_QTableWidget::closeEditor(QWidget* editor0, QAbstractItemDel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -6678,7 +6678,7 @@ void PythonQtShell_QTableWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6700,7 +6700,7 @@ void PythonQtShell_QTableWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6722,7 +6722,7 @@ void PythonQtShell_QTableWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6744,7 +6744,7 @@ void PythonQtShell_QTableWidget::currentChanged(const QModelIndex& current0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6766,7 +6766,7 @@ void PythonQtShell_QTableWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6788,7 +6788,7 @@ void PythonQtShell_QTableWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -6810,7 +6810,7 @@ int PythonQtShell_QTableWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6843,7 +6843,7 @@ void PythonQtShell_QTableWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6865,7 +6865,7 @@ void PythonQtShell_QTableWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6887,7 +6887,7 @@ void PythonQtShell_QTableWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6909,7 +6909,7 @@ void PythonQtShell_QTableWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6931,7 +6931,7 @@ void PythonQtShell_QTableWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6953,7 +6953,7 @@ bool PythonQtShell_QTableWidget::dropMimeData(int row0, int column1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -6986,7 +6986,7 @@ bool PythonQtShell_QTableWidget::edit(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -7019,7 +7019,7 @@ void PythonQtShell_QTableWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7041,7 +7041,7 @@ void PythonQtShell_QTableWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7063,7 +7063,7 @@ bool PythonQtShell_QTableWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7096,7 +7096,7 @@ bool PythonQtShell_QTableWidget::eventFilter(QObject* object0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7129,7 +7129,7 @@ void PythonQtShell_QTableWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7151,7 +7151,7 @@ bool PythonQtShell_QTableWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7184,7 +7184,7 @@ void PythonQtShell_QTableWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7206,7 +7206,7 @@ bool PythonQtShell_QTableWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7239,7 +7239,7 @@ int PythonQtShell_QTableWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7272,7 +7272,7 @@ void PythonQtShell_QTableWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7294,7 +7294,7 @@ int PythonQtShell_QTableWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7327,7 +7327,7 @@ void PythonQtShell_QTableWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7349,7 +7349,7 @@ void PythonQtShell_QTableWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7371,7 +7371,7 @@ QModelIndex PythonQtShell_QTableWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -7404,7 +7404,7 @@ void PythonQtShell_QTableWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7426,7 +7426,7 @@ void PythonQtShell_QTableWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7448,7 +7448,7 @@ QVariant PythonQtShell_QTableWidget::inputMethodQuery(Qt::InputMethodQuery que if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7481,7 +7481,7 @@ bool PythonQtShell_QTableWidget::isIndexHidden(const QModelIndex& index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7514,7 +7514,7 @@ void PythonQtShell_QTableWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7536,7 +7536,7 @@ void PythonQtShell_QTableWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7558,7 +7558,7 @@ void PythonQtShell_QTableWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7580,7 +7580,7 @@ void PythonQtShell_QTableWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7602,7 +7602,7 @@ int PythonQtShell_QTableWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7635,7 +7635,7 @@ QMimeData* PythonQtShell_QTableWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -7668,7 +7668,7 @@ QStringList PythonQtShell_QTableWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7701,7 +7701,7 @@ QSize PythonQtShell_QTableWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7734,7 +7734,7 @@ void PythonQtShell_QTableWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7756,7 +7756,7 @@ void PythonQtShell_QTableWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7778,7 +7778,7 @@ void PythonQtShell_QTableWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7800,7 +7800,7 @@ void PythonQtShell_QTableWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7822,7 +7822,7 @@ QModelIndex PythonQtShell_QTableWidget::moveCursor(QAbstractItemView::CursorAct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -7855,7 +7855,7 @@ void PythonQtShell_QTableWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7877,7 +7877,7 @@ bool PythonQtShell_QTableWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7910,7 +7910,7 @@ QPaintEngine* PythonQtShell_QTableWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7943,7 +7943,7 @@ void PythonQtShell_QTableWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7965,7 +7965,7 @@ QPaintDevice* PythonQtShell_QTableWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7998,7 +7998,7 @@ void PythonQtShell_QTableWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8020,7 +8020,7 @@ void PythonQtShell_QTableWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8042,7 +8042,7 @@ void PythonQtShell_QTableWidget::rowsAboutToBeRemoved(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -8064,7 +8064,7 @@ void PythonQtShell_QTableWidget::rowsInserted(const QModelIndex& parent0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -8086,7 +8086,7 @@ void PythonQtShell_QTableWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8108,7 +8108,7 @@ void PythonQtShell_QTableWidget::scrollTo(const QModelIndex& index0, QAbstractI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -8130,7 +8130,7 @@ void PythonQtShell_QTableWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8152,7 +8152,7 @@ QList PythonQtShell_QTableWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -8185,7 +8185,7 @@ void PythonQtShell_QTableWidget::selectionChanged(const QItemSelection& selecte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -8207,7 +8207,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTableWidget::selectionComman if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -8240,7 +8240,7 @@ void PythonQtShell_QTableWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -8262,7 +8262,7 @@ void PythonQtShell_QTableWidget::setSelection(const QRect& rect0, QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -8284,7 +8284,7 @@ void PythonQtShell_QTableWidget::setSelectionModel(QItemSelectionModel* selecti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -8306,7 +8306,7 @@ void PythonQtShell_QTableWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8328,7 +8328,7 @@ void PythonQtShell_QTableWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8350,7 +8350,7 @@ QPainter* PythonQtShell_QTableWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8383,7 +8383,7 @@ void PythonQtShell_QTableWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8405,7 +8405,7 @@ QSize PythonQtShell_QTableWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8438,7 +8438,7 @@ int PythonQtShell_QTableWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8471,7 +8471,7 @@ int PythonQtShell_QTableWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8504,7 +8504,7 @@ void PythonQtShell_QTableWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -8526,7 +8526,7 @@ Qt::DropActions PythonQtShell_QTableWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8559,7 +8559,7 @@ void PythonQtShell_QTableWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8581,7 +8581,7 @@ void PythonQtShell_QTableWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8603,7 +8603,7 @@ void PythonQtShell_QTableWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8625,7 +8625,7 @@ void PythonQtShell_QTableWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8647,7 +8647,7 @@ void PythonQtShell_QTableWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8669,7 +8669,7 @@ int PythonQtShell_QTableWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8702,7 +8702,7 @@ void PythonQtShell_QTableWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8724,7 +8724,7 @@ void PythonQtShell_QTableWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8746,7 +8746,7 @@ QStyleOptionViewItem PythonQtShell_QTableWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -8779,7 +8779,7 @@ bool PythonQtShell_QTableWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8812,7 +8812,7 @@ QSize PythonQtShell_QTableWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8845,7 +8845,7 @@ QRect PythonQtShell_QTableWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -8878,7 +8878,7 @@ QRegion PythonQtShell_QTableWidget::visualRegionForSelection(const QItemSelecti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -8911,7 +8911,7 @@ void PythonQtShell_QTableWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9215,7 +9215,7 @@ QTableWidgetItem* PythonQtShell_QTableWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTableWidgetItem*"}; @@ -9248,7 +9248,7 @@ QVariant PythonQtShell_QTableWidgetItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -9281,7 +9281,7 @@ void PythonQtShell_QTableWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9303,7 +9303,7 @@ void PythonQtShell_QTableWidgetItem::setData(int role0, const QVariant& value1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -9325,7 +9325,7 @@ void PythonQtShell_QTableWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9713,7 +9713,7 @@ void PythonQtShell_QTapAndHoldGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9735,7 +9735,7 @@ void PythonQtShell_QTapAndHoldGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9757,7 +9757,7 @@ bool PythonQtShell_QTapAndHoldGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9790,7 +9790,7 @@ bool PythonQtShell_QTapAndHoldGesture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9823,7 +9823,7 @@ void PythonQtShell_QTapAndHoldGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9888,7 +9888,7 @@ void PythonQtShell_QTapGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9910,7 +9910,7 @@ void PythonQtShell_QTapGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9932,7 +9932,7 @@ bool PythonQtShell_QTapGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9965,7 +9965,7 @@ bool PythonQtShell_QTapGesture::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9998,7 +9998,7 @@ void PythonQtShell_QTapGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10377,7 +10377,7 @@ void PythonQtShell_QTextBlockGroup::blockFormatChanged(const QTextBlock& block0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -10399,7 +10399,7 @@ void PythonQtShell_QTextBlockGroup::blockInserted(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -10421,7 +10421,7 @@ void PythonQtShell_QTextBlockGroup::blockRemoved(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -10443,7 +10443,7 @@ void PythonQtShell_QTextBlockGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10465,7 +10465,7 @@ void PythonQtShell_QTextBlockGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10487,7 +10487,7 @@ bool PythonQtShell_QTextBlockGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10520,7 +10520,7 @@ bool PythonQtShell_QTextBlockGroup::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10553,7 +10553,7 @@ void PythonQtShell_QTextBlockGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10628,7 +10628,7 @@ void PythonQtShell_QTextBrowser::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10650,7 +10650,7 @@ void PythonQtShell_QTextBrowser::backward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("backward"); + static PyObject* name = PyUnicode_FromString("backward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10672,7 +10672,7 @@ bool PythonQtShell_QTextBrowser::canInsertFromMimeData(const QMimeData* source if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -10705,7 +10705,7 @@ void PythonQtShell_QTextBrowser::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10727,7 +10727,7 @@ void PythonQtShell_QTextBrowser::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10749,7 +10749,7 @@ void PythonQtShell_QTextBrowser::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10771,7 +10771,7 @@ void PythonQtShell_QTextBrowser::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10793,7 +10793,7 @@ QMimeData* PythonQtShell_QTextBrowser::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -10826,7 +10826,7 @@ void PythonQtShell_QTextBrowser::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10848,7 +10848,7 @@ int PythonQtShell_QTextBrowser::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10881,7 +10881,7 @@ void PythonQtShell_QTextBrowser::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -10903,7 +10903,7 @@ void PythonQtShell_QTextBrowser::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10925,7 +10925,7 @@ void PythonQtShell_QTextBrowser::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10947,7 +10947,7 @@ void PythonQtShell_QTextBrowser::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10969,7 +10969,7 @@ void PythonQtShell_QTextBrowser::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10991,7 +10991,7 @@ void PythonQtShell_QTextBrowser::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11013,7 +11013,7 @@ bool PythonQtShell_QTextBrowser::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11046,7 +11046,7 @@ bool PythonQtShell_QTextBrowser::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11079,7 +11079,7 @@ void PythonQtShell_QTextBrowser::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11101,7 +11101,7 @@ bool PythonQtShell_QTextBrowser::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11134,7 +11134,7 @@ void PythonQtShell_QTextBrowser::focusOutEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11156,7 +11156,7 @@ void PythonQtShell_QTextBrowser::forward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("forward"); + static PyObject* name = PyUnicode_FromString("forward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11178,7 +11178,7 @@ bool PythonQtShell_QTextBrowser::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11211,7 +11211,7 @@ int PythonQtShell_QTextBrowser::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11244,7 +11244,7 @@ void PythonQtShell_QTextBrowser::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11266,7 +11266,7 @@ void PythonQtShell_QTextBrowser::home() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("home"); + static PyObject* name = PyUnicode_FromString("home"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11288,7 +11288,7 @@ void PythonQtShell_QTextBrowser::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11310,7 +11310,7 @@ void PythonQtShell_QTextBrowser::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11332,7 +11332,7 @@ QVariant PythonQtShell_QTextBrowser::inputMethodQuery(Qt::InputMethodQuery pro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11365,7 +11365,7 @@ void PythonQtShell_QTextBrowser::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -11387,7 +11387,7 @@ void PythonQtShell_QTextBrowser::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11409,7 +11409,7 @@ void PythonQtShell_QTextBrowser::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11431,7 +11431,7 @@ void PythonQtShell_QTextBrowser::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11453,7 +11453,7 @@ QVariant PythonQtShell_QTextBrowser::loadResource(int type0, const QUrl& name if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -11486,7 +11486,7 @@ int PythonQtShell_QTextBrowser::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11519,7 +11519,7 @@ QSize PythonQtShell_QTextBrowser::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11552,7 +11552,7 @@ void PythonQtShell_QTextBrowser::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11574,7 +11574,7 @@ void PythonQtShell_QTextBrowser::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11596,7 +11596,7 @@ void PythonQtShell_QTextBrowser::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11618,7 +11618,7 @@ void PythonQtShell_QTextBrowser::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11640,7 +11640,7 @@ void PythonQtShell_QTextBrowser::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11662,7 +11662,7 @@ bool PythonQtShell_QTextBrowser::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11695,7 +11695,7 @@ QPaintEngine* PythonQtShell_QTextBrowser::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11728,7 +11728,7 @@ void PythonQtShell_QTextBrowser::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11750,7 +11750,7 @@ QPaintDevice* PythonQtShell_QTextBrowser::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11783,7 +11783,7 @@ void PythonQtShell_QTextBrowser::reload() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reload"); + static PyObject* name = PyUnicode_FromString("reload"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11805,7 +11805,7 @@ void PythonQtShell_QTextBrowser::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11827,7 +11827,7 @@ void PythonQtShell_QTextBrowser::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11849,7 +11849,7 @@ void PythonQtShell_QTextBrowser::setSource(const QUrl& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSource"); + static PyObject* name = PyUnicode_FromString("setSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&"}; @@ -11871,7 +11871,7 @@ void PythonQtShell_QTextBrowser::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11893,7 +11893,7 @@ void PythonQtShell_QTextBrowser::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11915,7 +11915,7 @@ QPainter* PythonQtShell_QTextBrowser::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11948,7 +11948,7 @@ void PythonQtShell_QTextBrowser::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11970,7 +11970,7 @@ QSize PythonQtShell_QTextBrowser::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12003,7 +12003,7 @@ void PythonQtShell_QTextBrowser::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12025,7 +12025,7 @@ void PythonQtShell_QTextBrowser::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12047,7 +12047,7 @@ bool PythonQtShell_QTextBrowser::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12080,7 +12080,7 @@ QSize PythonQtShell_QTextBrowser::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12113,7 +12113,7 @@ void PythonQtShell_QTextBrowser::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12914,7 +12914,7 @@ void PythonQtShell_QTextDocument::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12936,7 +12936,7 @@ void PythonQtShell_QTextDocument::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12958,7 +12958,7 @@ QTextObject* PythonQtShell_QTextDocument::createObject(const QTextFormat& f0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTextObject*" , "const QTextFormat&"}; @@ -12991,7 +12991,7 @@ void PythonQtShell_QTextDocument::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13013,7 +13013,7 @@ bool PythonQtShell_QTextDocument::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13046,7 +13046,7 @@ bool PythonQtShell_QTextDocument::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13079,7 +13079,7 @@ QVariant PythonQtShell_QTextDocument::loadResource(int type0, const QUrl& nam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -13112,7 +13112,7 @@ void PythonQtShell_QTextDocument::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13668,7 +13668,7 @@ void PythonQtShell_QTextEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13690,7 +13690,7 @@ bool PythonQtShell_QTextEdit::canInsertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -13723,7 +13723,7 @@ void PythonQtShell_QTextEdit::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13745,7 +13745,7 @@ void PythonQtShell_QTextEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13767,7 +13767,7 @@ void PythonQtShell_QTextEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13789,7 +13789,7 @@ void PythonQtShell_QTextEdit::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13811,7 +13811,7 @@ QMimeData* PythonQtShell_QTextEdit::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -13844,7 +13844,7 @@ void PythonQtShell_QTextEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13866,7 +13866,7 @@ int PythonQtShell_QTextEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13899,7 +13899,7 @@ void PythonQtShell_QTextEdit::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -13921,7 +13921,7 @@ void PythonQtShell_QTextEdit::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13943,7 +13943,7 @@ void PythonQtShell_QTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13965,7 +13965,7 @@ void PythonQtShell_QTextEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13987,7 +13987,7 @@ void PythonQtShell_QTextEdit::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14009,7 +14009,7 @@ void PythonQtShell_QTextEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14031,7 +14031,7 @@ bool PythonQtShell_QTextEdit::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14064,7 +14064,7 @@ bool PythonQtShell_QTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14097,7 +14097,7 @@ void PythonQtShell_QTextEdit::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14119,7 +14119,7 @@ bool PythonQtShell_QTextEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14152,7 +14152,7 @@ void PythonQtShell_QTextEdit::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14174,7 +14174,7 @@ bool PythonQtShell_QTextEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14207,7 +14207,7 @@ int PythonQtShell_QTextEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14240,7 +14240,7 @@ void PythonQtShell_QTextEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14262,7 +14262,7 @@ void PythonQtShell_QTextEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14284,7 +14284,7 @@ void PythonQtShell_QTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14306,7 +14306,7 @@ QVariant PythonQtShell_QTextEdit::inputMethodQuery(Qt::InputMethodQuery proper if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14339,7 +14339,7 @@ void PythonQtShell_QTextEdit::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -14361,7 +14361,7 @@ void PythonQtShell_QTextEdit::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14383,7 +14383,7 @@ void PythonQtShell_QTextEdit::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14405,7 +14405,7 @@ void PythonQtShell_QTextEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14427,7 +14427,7 @@ QVariant PythonQtShell_QTextEdit::loadResource(int type0, const QUrl& name1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -14460,7 +14460,7 @@ int PythonQtShell_QTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14493,7 +14493,7 @@ QSize PythonQtShell_QTextEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14526,7 +14526,7 @@ void PythonQtShell_QTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14548,7 +14548,7 @@ void PythonQtShell_QTextEdit::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14570,7 +14570,7 @@ void PythonQtShell_QTextEdit::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14592,7 +14592,7 @@ void PythonQtShell_QTextEdit::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14614,7 +14614,7 @@ void PythonQtShell_QTextEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14636,7 +14636,7 @@ bool PythonQtShell_QTextEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14669,7 +14669,7 @@ QPaintEngine* PythonQtShell_QTextEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14702,7 +14702,7 @@ void PythonQtShell_QTextEdit::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14724,7 +14724,7 @@ QPaintDevice* PythonQtShell_QTextEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14757,7 +14757,7 @@ void PythonQtShell_QTextEdit::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14779,7 +14779,7 @@ void PythonQtShell_QTextEdit::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -14801,7 +14801,7 @@ void PythonQtShell_QTextEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14823,7 +14823,7 @@ void PythonQtShell_QTextEdit::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14845,7 +14845,7 @@ QPainter* PythonQtShell_QTextEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14878,7 +14878,7 @@ void PythonQtShell_QTextEdit::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14900,7 +14900,7 @@ QSize PythonQtShell_QTextEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14933,7 +14933,7 @@ void PythonQtShell_QTextEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14955,7 +14955,7 @@ void PythonQtShell_QTextEdit::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14977,7 +14977,7 @@ bool PythonQtShell_QTextEdit::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15010,7 +15010,7 @@ QSize PythonQtShell_QTextEdit::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15043,7 +15043,7 @@ void PythonQtShell_QTextEdit::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15512,7 +15512,7 @@ void PythonQtShell_QTextFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15534,7 +15534,7 @@ void PythonQtShell_QTextFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15556,7 +15556,7 @@ bool PythonQtShell_QTextFrame::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15589,7 +15589,7 @@ bool PythonQtShell_QTextFrame::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15622,7 +15622,7 @@ void PythonQtShell_QTextFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp index e9a187110..35ae3aafd 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp @@ -577,7 +577,7 @@ void PythonQtShell_QTextList::blockFormatChanged(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -599,7 +599,7 @@ void PythonQtShell_QTextList::blockInserted(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -621,7 +621,7 @@ void PythonQtShell_QTextList::blockRemoved(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -643,7 +643,7 @@ void PythonQtShell_QTextList::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -665,7 +665,7 @@ void PythonQtShell_QTextList::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -687,7 +687,7 @@ bool PythonQtShell_QTextList::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -720,7 +720,7 @@ bool PythonQtShell_QTextList::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -753,7 +753,7 @@ void PythonQtShell_QTextList::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -902,7 +902,7 @@ void PythonQtShell_QTextObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -924,7 +924,7 @@ void PythonQtShell_QTextObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -946,7 +946,7 @@ bool PythonQtShell_QTextObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -979,7 +979,7 @@ bool PythonQtShell_QTextObject::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1012,7 +1012,7 @@ void PythonQtShell_QTextObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1210,7 +1210,7 @@ void PythonQtShell_QTextTable::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1232,7 +1232,7 @@ void PythonQtShell_QTextTable::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1254,7 +1254,7 @@ bool PythonQtShell_QTextTable::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1287,7 +1287,7 @@ bool PythonQtShell_QTextTable::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1320,7 +1320,7 @@ void PythonQtShell_QTextTable::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1712,7 +1712,7 @@ void PythonQtShell_QTimeEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1734,7 +1734,7 @@ void PythonQtShell_QTimeEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1756,7 +1756,7 @@ void PythonQtShell_QTimeEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1778,7 +1778,7 @@ void PythonQtShell_QTimeEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1800,7 +1800,7 @@ void PythonQtShell_QTimeEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1822,7 +1822,7 @@ void PythonQtShell_QTimeEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1844,7 +1844,7 @@ void PythonQtShell_QTimeEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1866,7 +1866,7 @@ QDateTime PythonQtShell_QTimeEdit::dateTimeFromText(const QString& text0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -1899,7 +1899,7 @@ int PythonQtShell_QTimeEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1932,7 +1932,7 @@ void PythonQtShell_QTimeEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1954,7 +1954,7 @@ void PythonQtShell_QTimeEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1976,7 +1976,7 @@ void PythonQtShell_QTimeEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1998,7 +1998,7 @@ void PythonQtShell_QTimeEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2020,7 +2020,7 @@ void PythonQtShell_QTimeEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2042,7 +2042,7 @@ bool PythonQtShell_QTimeEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2075,7 +2075,7 @@ bool PythonQtShell_QTimeEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2108,7 +2108,7 @@ void PythonQtShell_QTimeEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2130,7 +2130,7 @@ void PythonQtShell_QTimeEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2152,7 +2152,7 @@ bool PythonQtShell_QTimeEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2185,7 +2185,7 @@ void PythonQtShell_QTimeEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2207,7 +2207,7 @@ bool PythonQtShell_QTimeEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2240,7 +2240,7 @@ int PythonQtShell_QTimeEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2273,7 +2273,7 @@ void PythonQtShell_QTimeEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2295,7 +2295,7 @@ void PythonQtShell_QTimeEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2317,7 +2317,7 @@ void PythonQtShell_QTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2339,7 +2339,7 @@ QVariant PythonQtShell_QTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2372,7 +2372,7 @@ void PythonQtShell_QTimeEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2394,7 +2394,7 @@ void PythonQtShell_QTimeEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2416,7 +2416,7 @@ void PythonQtShell_QTimeEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2438,7 +2438,7 @@ int PythonQtShell_QTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2471,7 +2471,7 @@ QSize PythonQtShell_QTimeEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2504,7 +2504,7 @@ void PythonQtShell_QTimeEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2526,7 +2526,7 @@ void PythonQtShell_QTimeEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2548,7 +2548,7 @@ void PythonQtShell_QTimeEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2570,7 +2570,7 @@ void PythonQtShell_QTimeEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2592,7 +2592,7 @@ void PythonQtShell_QTimeEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2614,7 +2614,7 @@ bool PythonQtShell_QTimeEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2647,7 +2647,7 @@ QPaintEngine* PythonQtShell_QTimeEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2680,7 +2680,7 @@ void PythonQtShell_QTimeEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2702,7 +2702,7 @@ QPaintDevice* PythonQtShell_QTimeEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2735,7 +2735,7 @@ void PythonQtShell_QTimeEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2757,7 +2757,7 @@ void PythonQtShell_QTimeEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2779,7 +2779,7 @@ QPainter* PythonQtShell_QTimeEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2812,7 +2812,7 @@ void PythonQtShell_QTimeEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2834,7 +2834,7 @@ QSize PythonQtShell_QTimeEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2867,7 +2867,7 @@ void PythonQtShell_QTimeEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2889,7 +2889,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QTimeEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -2922,7 +2922,7 @@ void PythonQtShell_QTimeEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2944,7 +2944,7 @@ QString PythonQtShell_QTimeEdit::textFromDateTime(const QDateTime& dt0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2977,7 +2977,7 @@ void PythonQtShell_QTimeEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2999,7 +2999,7 @@ QValidator::State PythonQtShell_QTimeEdit::validate(QString& input0, int& pos if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3032,7 +3032,7 @@ void PythonQtShell_QTimeEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3081,7 +3081,7 @@ void PythonQtShell_QToolBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3103,7 +3103,7 @@ void PythonQtShell_QToolBar::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3125,7 +3125,7 @@ void PythonQtShell_QToolBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3147,7 +3147,7 @@ void PythonQtShell_QToolBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3169,7 +3169,7 @@ void PythonQtShell_QToolBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3191,7 +3191,7 @@ void PythonQtShell_QToolBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3213,7 +3213,7 @@ int PythonQtShell_QToolBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3246,7 +3246,7 @@ void PythonQtShell_QToolBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3268,7 +3268,7 @@ void PythonQtShell_QToolBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3290,7 +3290,7 @@ void PythonQtShell_QToolBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3312,7 +3312,7 @@ void PythonQtShell_QToolBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3334,7 +3334,7 @@ void PythonQtShell_QToolBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3356,7 +3356,7 @@ bool PythonQtShell_QToolBar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3389,7 +3389,7 @@ bool PythonQtShell_QToolBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3422,7 +3422,7 @@ void PythonQtShell_QToolBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3444,7 +3444,7 @@ bool PythonQtShell_QToolBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3477,7 +3477,7 @@ void PythonQtShell_QToolBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3499,7 +3499,7 @@ bool PythonQtShell_QToolBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3532,7 +3532,7 @@ int PythonQtShell_QToolBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3565,7 +3565,7 @@ void PythonQtShell_QToolBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3587,7 +3587,7 @@ void PythonQtShell_QToolBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3609,7 +3609,7 @@ void PythonQtShell_QToolBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3631,7 +3631,7 @@ QVariant PythonQtShell_QToolBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3664,7 +3664,7 @@ void PythonQtShell_QToolBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3686,7 +3686,7 @@ void PythonQtShell_QToolBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3708,7 +3708,7 @@ void PythonQtShell_QToolBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3730,7 +3730,7 @@ int PythonQtShell_QToolBar::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3763,7 +3763,7 @@ QSize PythonQtShell_QToolBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3796,7 +3796,7 @@ void PythonQtShell_QToolBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3818,7 +3818,7 @@ void PythonQtShell_QToolBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3840,7 +3840,7 @@ void PythonQtShell_QToolBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3862,7 +3862,7 @@ void PythonQtShell_QToolBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3884,7 +3884,7 @@ void PythonQtShell_QToolBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3906,7 +3906,7 @@ bool PythonQtShell_QToolBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3939,7 +3939,7 @@ QPaintEngine* PythonQtShell_QToolBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3972,7 +3972,7 @@ void PythonQtShell_QToolBar::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3994,7 +3994,7 @@ QPaintDevice* PythonQtShell_QToolBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4027,7 +4027,7 @@ void PythonQtShell_QToolBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4049,7 +4049,7 @@ void PythonQtShell_QToolBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4071,7 +4071,7 @@ QPainter* PythonQtShell_QToolBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4104,7 +4104,7 @@ void PythonQtShell_QToolBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4126,7 +4126,7 @@ QSize PythonQtShell_QToolBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4159,7 +4159,7 @@ void PythonQtShell_QToolBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4181,7 +4181,7 @@ void PythonQtShell_QToolBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4203,7 +4203,7 @@ void PythonQtShell_QToolBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4398,7 +4398,7 @@ void PythonQtShell_QToolBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4420,7 +4420,7 @@ void PythonQtShell_QToolBox::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4442,7 +4442,7 @@ void PythonQtShell_QToolBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4464,7 +4464,7 @@ void PythonQtShell_QToolBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4486,7 +4486,7 @@ void PythonQtShell_QToolBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4508,7 +4508,7 @@ void PythonQtShell_QToolBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4530,7 +4530,7 @@ int PythonQtShell_QToolBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4563,7 +4563,7 @@ void PythonQtShell_QToolBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4585,7 +4585,7 @@ void PythonQtShell_QToolBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4607,7 +4607,7 @@ void PythonQtShell_QToolBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4629,7 +4629,7 @@ void PythonQtShell_QToolBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4651,7 +4651,7 @@ void PythonQtShell_QToolBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4673,7 +4673,7 @@ bool PythonQtShell_QToolBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4706,7 +4706,7 @@ bool PythonQtShell_QToolBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4739,7 +4739,7 @@ void PythonQtShell_QToolBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4761,7 +4761,7 @@ bool PythonQtShell_QToolBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4794,7 +4794,7 @@ void PythonQtShell_QToolBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4816,7 +4816,7 @@ bool PythonQtShell_QToolBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4849,7 +4849,7 @@ int PythonQtShell_QToolBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4882,7 +4882,7 @@ void PythonQtShell_QToolBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4904,7 +4904,7 @@ void PythonQtShell_QToolBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4926,7 +4926,7 @@ void PythonQtShell_QToolBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4948,7 +4948,7 @@ QVariant PythonQtShell_QToolBox::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4981,7 +4981,7 @@ void PythonQtShell_QToolBox::itemInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemInserted"); + static PyObject* name = PyUnicode_FromString("itemInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5003,7 +5003,7 @@ void PythonQtShell_QToolBox::itemRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemRemoved"); + static PyObject* name = PyUnicode_FromString("itemRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5025,7 +5025,7 @@ void PythonQtShell_QToolBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5047,7 +5047,7 @@ void PythonQtShell_QToolBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5069,7 +5069,7 @@ void PythonQtShell_QToolBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5091,7 +5091,7 @@ int PythonQtShell_QToolBox::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5124,7 +5124,7 @@ QSize PythonQtShell_QToolBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5157,7 +5157,7 @@ void PythonQtShell_QToolBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5179,7 +5179,7 @@ void PythonQtShell_QToolBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5201,7 +5201,7 @@ void PythonQtShell_QToolBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5223,7 +5223,7 @@ void PythonQtShell_QToolBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5245,7 +5245,7 @@ void PythonQtShell_QToolBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5267,7 +5267,7 @@ bool PythonQtShell_QToolBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5300,7 +5300,7 @@ QPaintEngine* PythonQtShell_QToolBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5333,7 +5333,7 @@ void PythonQtShell_QToolBox::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5355,7 +5355,7 @@ QPaintDevice* PythonQtShell_QToolBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5388,7 +5388,7 @@ void PythonQtShell_QToolBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5410,7 +5410,7 @@ void PythonQtShell_QToolBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5432,7 +5432,7 @@ QPainter* PythonQtShell_QToolBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5465,7 +5465,7 @@ void PythonQtShell_QToolBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5487,7 +5487,7 @@ QSize PythonQtShell_QToolBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5520,7 +5520,7 @@ void PythonQtShell_QToolBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5542,7 +5542,7 @@ void PythonQtShell_QToolBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5564,7 +5564,7 @@ void PythonQtShell_QToolBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5709,7 +5709,7 @@ void PythonQtShell_QToolButton::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5731,7 +5731,7 @@ void PythonQtShell_QToolButton::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5753,7 +5753,7 @@ void PythonQtShell_QToolButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5775,7 +5775,7 @@ void PythonQtShell_QToolButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5797,7 +5797,7 @@ void PythonQtShell_QToolButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5819,7 +5819,7 @@ void PythonQtShell_QToolButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5841,7 +5841,7 @@ void PythonQtShell_QToolButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5863,7 +5863,7 @@ int PythonQtShell_QToolButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5896,7 +5896,7 @@ void PythonQtShell_QToolButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5918,7 +5918,7 @@ void PythonQtShell_QToolButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5940,7 +5940,7 @@ void PythonQtShell_QToolButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5962,7 +5962,7 @@ void PythonQtShell_QToolButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5984,7 +5984,7 @@ void PythonQtShell_QToolButton::enterEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6006,7 +6006,7 @@ bool PythonQtShell_QToolButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6039,7 +6039,7 @@ bool PythonQtShell_QToolButton::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QToolButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6094,7 +6094,7 @@ bool PythonQtShell_QToolButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6127,7 +6127,7 @@ void PythonQtShell_QToolButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6149,7 +6149,7 @@ bool PythonQtShell_QToolButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6182,7 +6182,7 @@ int PythonQtShell_QToolButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6215,7 +6215,7 @@ void PythonQtShell_QToolButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6237,7 +6237,7 @@ bool PythonQtShell_QToolButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -6270,7 +6270,7 @@ void PythonQtShell_QToolButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6292,7 +6292,7 @@ void PythonQtShell_QToolButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6314,7 +6314,7 @@ QVariant PythonQtShell_QToolButton::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6347,7 +6347,7 @@ void PythonQtShell_QToolButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6369,7 +6369,7 @@ void PythonQtShell_QToolButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6391,7 +6391,7 @@ void PythonQtShell_QToolButton::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6413,7 +6413,7 @@ int PythonQtShell_QToolButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6446,7 +6446,7 @@ QSize PythonQtShell_QToolButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6479,7 +6479,7 @@ void PythonQtShell_QToolButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6501,7 +6501,7 @@ void PythonQtShell_QToolButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6523,7 +6523,7 @@ void PythonQtShell_QToolButton::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6545,7 +6545,7 @@ void PythonQtShell_QToolButton::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6567,7 +6567,7 @@ void PythonQtShell_QToolButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6589,7 +6589,7 @@ bool PythonQtShell_QToolButton::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6622,7 +6622,7 @@ void PythonQtShell_QToolButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6644,7 +6644,7 @@ QPaintEngine* PythonQtShell_QToolButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6677,7 +6677,7 @@ void PythonQtShell_QToolButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6699,7 +6699,7 @@ QPaintDevice* PythonQtShell_QToolButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6732,7 +6732,7 @@ void PythonQtShell_QToolButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6754,7 +6754,7 @@ void PythonQtShell_QToolButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6776,7 +6776,7 @@ QPainter* PythonQtShell_QToolButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6809,7 +6809,7 @@ void PythonQtShell_QToolButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6831,7 +6831,7 @@ QSize PythonQtShell_QToolButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6864,7 +6864,7 @@ void PythonQtShell_QToolButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6886,7 +6886,7 @@ void PythonQtShell_QToolButton::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6908,7 +6908,7 @@ void PythonQtShell_QToolButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7784,7 +7784,7 @@ void PythonQtShell_QTreeView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7806,7 +7806,7 @@ void PythonQtShell_QTreeView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7828,7 +7828,7 @@ void PythonQtShell_QTreeView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7850,7 +7850,7 @@ void PythonQtShell_QTreeView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -7872,7 +7872,7 @@ void PythonQtShell_QTreeView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7894,7 +7894,7 @@ void PythonQtShell_QTreeView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7916,7 +7916,7 @@ void PythonQtShell_QTreeView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7938,7 +7938,7 @@ void PythonQtShell_QTreeView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -7960,7 +7960,7 @@ void PythonQtShell_QTreeView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7982,7 +7982,7 @@ void PythonQtShell_QTreeView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -8004,7 +8004,7 @@ int PythonQtShell_QTreeView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8037,7 +8037,7 @@ void PythonQtShell_QTreeView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8059,7 +8059,7 @@ void PythonQtShell_QTreeView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8081,7 +8081,7 @@ void PythonQtShell_QTreeView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8103,7 +8103,7 @@ void PythonQtShell_QTreeView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8125,7 +8125,7 @@ void PythonQtShell_QTreeView::drawBranches(QPainter* painter0, const QRect& re if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -8147,7 +8147,7 @@ void PythonQtShell_QTreeView::drawRow(QPainter* painter0, const QStyleOptionVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -8169,7 +8169,7 @@ void PythonQtShell_QTreeView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8191,7 +8191,7 @@ bool PythonQtShell_QTreeView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -8224,7 +8224,7 @@ void PythonQtShell_QTreeView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -8246,7 +8246,7 @@ void PythonQtShell_QTreeView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8268,7 +8268,7 @@ bool PythonQtShell_QTreeView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8301,7 +8301,7 @@ bool PythonQtShell_QTreeView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8334,7 +8334,7 @@ void PythonQtShell_QTreeView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8356,7 +8356,7 @@ bool PythonQtShell_QTreeView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8389,7 +8389,7 @@ void PythonQtShell_QTreeView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8411,7 +8411,7 @@ bool PythonQtShell_QTreeView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8444,7 +8444,7 @@ int PythonQtShell_QTreeView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8477,7 +8477,7 @@ void PythonQtShell_QTreeView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8499,7 +8499,7 @@ int PythonQtShell_QTreeView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8532,7 +8532,7 @@ void PythonQtShell_QTreeView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8554,7 +8554,7 @@ void PythonQtShell_QTreeView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8576,7 +8576,7 @@ QModelIndex PythonQtShell_QTreeView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -8609,7 +8609,7 @@ void PythonQtShell_QTreeView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8631,7 +8631,7 @@ void PythonQtShell_QTreeView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8653,7 +8653,7 @@ QVariant PythonQtShell_QTreeView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8686,7 +8686,7 @@ bool PythonQtShell_QTreeView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8719,7 +8719,7 @@ void PythonQtShell_QTreeView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8741,7 +8741,7 @@ void PythonQtShell_QTreeView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8763,7 +8763,7 @@ void PythonQtShell_QTreeView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -8785,7 +8785,7 @@ void PythonQtShell_QTreeView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8807,7 +8807,7 @@ int PythonQtShell_QTreeView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8840,7 +8840,7 @@ QSize PythonQtShell_QTreeView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8873,7 +8873,7 @@ void PythonQtShell_QTreeView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8895,7 +8895,7 @@ void PythonQtShell_QTreeView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8917,7 +8917,7 @@ void PythonQtShell_QTreeView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8939,7 +8939,7 @@ void PythonQtShell_QTreeView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8961,7 +8961,7 @@ QModelIndex PythonQtShell_QTreeView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -8994,7 +8994,7 @@ void PythonQtShell_QTreeView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9016,7 +9016,7 @@ bool PythonQtShell_QTreeView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9049,7 +9049,7 @@ QPaintEngine* PythonQtShell_QTreeView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9082,7 +9082,7 @@ void PythonQtShell_QTreeView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9104,7 +9104,7 @@ QPaintDevice* PythonQtShell_QTreeView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9137,7 +9137,7 @@ void PythonQtShell_QTreeView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9159,7 +9159,7 @@ void PythonQtShell_QTreeView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9181,7 +9181,7 @@ void PythonQtShell_QTreeView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9203,7 +9203,7 @@ void PythonQtShell_QTreeView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9225,7 +9225,7 @@ void PythonQtShell_QTreeView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9247,7 +9247,7 @@ void PythonQtShell_QTreeView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -9269,7 +9269,7 @@ void PythonQtShell_QTreeView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9291,7 +9291,7 @@ QList PythonQtShell_QTreeView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -9324,7 +9324,7 @@ void PythonQtShell_QTreeView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -9346,7 +9346,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTreeView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -9379,7 +9379,7 @@ void PythonQtShell_QTreeView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -9401,7 +9401,7 @@ void PythonQtShell_QTreeView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9423,7 +9423,7 @@ void PythonQtShell_QTreeView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -9445,7 +9445,7 @@ void PythonQtShell_QTreeView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -9467,7 +9467,7 @@ void PythonQtShell_QTreeView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9489,7 +9489,7 @@ void PythonQtShell_QTreeView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9511,7 +9511,7 @@ QPainter* PythonQtShell_QTreeView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9544,7 +9544,7 @@ void PythonQtShell_QTreeView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9566,7 +9566,7 @@ QSize PythonQtShell_QTreeView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9599,7 +9599,7 @@ int PythonQtShell_QTreeView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9632,7 +9632,7 @@ int PythonQtShell_QTreeView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9665,7 +9665,7 @@ void PythonQtShell_QTreeView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -9687,7 +9687,7 @@ void PythonQtShell_QTreeView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9709,7 +9709,7 @@ void PythonQtShell_QTreeView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9731,7 +9731,7 @@ void PythonQtShell_QTreeView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9753,7 +9753,7 @@ void PythonQtShell_QTreeView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9775,7 +9775,7 @@ void PythonQtShell_QTreeView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9797,7 +9797,7 @@ int PythonQtShell_QTreeView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9830,7 +9830,7 @@ void PythonQtShell_QTreeView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9852,7 +9852,7 @@ void PythonQtShell_QTreeView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9874,7 +9874,7 @@ QStyleOptionViewItem PythonQtShell_QTreeView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -9907,7 +9907,7 @@ bool PythonQtShell_QTreeView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9940,7 +9940,7 @@ QSize PythonQtShell_QTreeView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9973,7 +9973,7 @@ QRect PythonQtShell_QTreeView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -10006,7 +10006,7 @@ QRegion PythonQtShell_QTreeView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -10039,7 +10039,7 @@ void PythonQtShell_QTreeView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10319,7 +10319,7 @@ void PythonQtShell_QTreeWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10341,7 +10341,7 @@ void PythonQtShell_QTreeWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10363,7 +10363,7 @@ void PythonQtShell_QTreeWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10385,7 +10385,7 @@ void PythonQtShell_QTreeWidget::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -10407,7 +10407,7 @@ void PythonQtShell_QTreeWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10429,7 +10429,7 @@ void PythonQtShell_QTreeWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10451,7 +10451,7 @@ void PythonQtShell_QTreeWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10473,7 +10473,7 @@ void PythonQtShell_QTreeWidget::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -10495,7 +10495,7 @@ void PythonQtShell_QTreeWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10517,7 +10517,7 @@ void PythonQtShell_QTreeWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -10539,7 +10539,7 @@ int PythonQtShell_QTreeWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10572,7 +10572,7 @@ void PythonQtShell_QTreeWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10594,7 +10594,7 @@ void PythonQtShell_QTreeWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10616,7 +10616,7 @@ void PythonQtShell_QTreeWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10638,7 +10638,7 @@ void PythonQtShell_QTreeWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10660,7 +10660,7 @@ void PythonQtShell_QTreeWidget::drawBranches(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -10682,7 +10682,7 @@ void PythonQtShell_QTreeWidget::drawRow(QPainter* painter0, const QStyleOptionV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -10704,7 +10704,7 @@ void PythonQtShell_QTreeWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10726,7 +10726,7 @@ bool PythonQtShell_QTreeWidget::dropMimeData(QTreeWidgetItem* parent0, int in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QTreeWidgetItem*" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -10759,7 +10759,7 @@ bool PythonQtShell_QTreeWidget::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10792,7 +10792,7 @@ void PythonQtShell_QTreeWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10814,7 +10814,7 @@ void PythonQtShell_QTreeWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10836,7 +10836,7 @@ bool PythonQtShell_QTreeWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10869,7 +10869,7 @@ bool PythonQtShell_QTreeWidget::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10902,7 +10902,7 @@ void PythonQtShell_QTreeWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10924,7 +10924,7 @@ bool PythonQtShell_QTreeWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10957,7 +10957,7 @@ void PythonQtShell_QTreeWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10979,7 +10979,7 @@ bool PythonQtShell_QTreeWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11012,7 +11012,7 @@ int PythonQtShell_QTreeWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11045,7 +11045,7 @@ void PythonQtShell_QTreeWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11067,7 +11067,7 @@ int PythonQtShell_QTreeWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11100,7 +11100,7 @@ void PythonQtShell_QTreeWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11122,7 +11122,7 @@ void PythonQtShell_QTreeWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11144,7 +11144,7 @@ QModelIndex PythonQtShell_QTreeWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -11177,7 +11177,7 @@ void PythonQtShell_QTreeWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11199,7 +11199,7 @@ void PythonQtShell_QTreeWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11221,7 +11221,7 @@ QVariant PythonQtShell_QTreeWidget::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11254,7 +11254,7 @@ bool PythonQtShell_QTreeWidget::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -11287,7 +11287,7 @@ void PythonQtShell_QTreeWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11309,7 +11309,7 @@ void PythonQtShell_QTreeWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11331,7 +11331,7 @@ void PythonQtShell_QTreeWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -11353,7 +11353,7 @@ void PythonQtShell_QTreeWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11375,7 +11375,7 @@ int PythonQtShell_QTreeWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11408,7 +11408,7 @@ QMimeData* PythonQtShell_QTreeWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -11441,7 +11441,7 @@ QStringList PythonQtShell_QTreeWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -11474,7 +11474,7 @@ QSize PythonQtShell_QTreeWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11507,7 +11507,7 @@ void PythonQtShell_QTreeWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11529,7 +11529,7 @@ void PythonQtShell_QTreeWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11551,7 +11551,7 @@ void PythonQtShell_QTreeWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11573,7 +11573,7 @@ void PythonQtShell_QTreeWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11595,7 +11595,7 @@ QModelIndex PythonQtShell_QTreeWidget::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -11628,7 +11628,7 @@ void PythonQtShell_QTreeWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11650,7 +11650,7 @@ bool PythonQtShell_QTreeWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11683,7 +11683,7 @@ QPaintEngine* PythonQtShell_QTreeWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11716,7 +11716,7 @@ void PythonQtShell_QTreeWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11738,7 +11738,7 @@ QPaintDevice* PythonQtShell_QTreeWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11771,7 +11771,7 @@ void PythonQtShell_QTreeWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11793,7 +11793,7 @@ void PythonQtShell_QTreeWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11815,7 +11815,7 @@ void PythonQtShell_QTreeWidget::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11837,7 +11837,7 @@ void PythonQtShell_QTreeWidget::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11859,7 +11859,7 @@ void PythonQtShell_QTreeWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11881,7 +11881,7 @@ void PythonQtShell_QTreeWidget::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11903,7 +11903,7 @@ void PythonQtShell_QTreeWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11925,7 +11925,7 @@ QList PythonQtShell_QTreeWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11958,7 +11958,7 @@ void PythonQtShell_QTreeWidget::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11980,7 +11980,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTreeWidget::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -12013,7 +12013,7 @@ void PythonQtShell_QTreeWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12035,7 +12035,7 @@ void PythonQtShell_QTreeWidget::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -12057,7 +12057,7 @@ void PythonQtShell_QTreeWidget::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -12079,7 +12079,7 @@ void PythonQtShell_QTreeWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12101,7 +12101,7 @@ void PythonQtShell_QTreeWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12123,7 +12123,7 @@ QPainter* PythonQtShell_QTreeWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12156,7 +12156,7 @@ void PythonQtShell_QTreeWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12178,7 +12178,7 @@ QSize PythonQtShell_QTreeWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12211,7 +12211,7 @@ int PythonQtShell_QTreeWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12244,7 +12244,7 @@ int PythonQtShell_QTreeWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12277,7 +12277,7 @@ void PythonQtShell_QTreeWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -12299,7 +12299,7 @@ Qt::DropActions PythonQtShell_QTreeWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12332,7 +12332,7 @@ void PythonQtShell_QTreeWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12354,7 +12354,7 @@ void PythonQtShell_QTreeWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12376,7 +12376,7 @@ void PythonQtShell_QTreeWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12398,7 +12398,7 @@ void PythonQtShell_QTreeWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12420,7 +12420,7 @@ void PythonQtShell_QTreeWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12442,7 +12442,7 @@ int PythonQtShell_QTreeWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12475,7 +12475,7 @@ void PythonQtShell_QTreeWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12497,7 +12497,7 @@ void PythonQtShell_QTreeWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12519,7 +12519,7 @@ QStyleOptionViewItem PythonQtShell_QTreeWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -12552,7 +12552,7 @@ bool PythonQtShell_QTreeWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12585,7 +12585,7 @@ QSize PythonQtShell_QTreeWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12618,7 +12618,7 @@ QRect PythonQtShell_QTreeWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -12651,7 +12651,7 @@ QRegion PythonQtShell_QTreeWidget::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -12684,7 +12684,7 @@ void PythonQtShell_QTreeWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12954,7 +12954,7 @@ QTreeWidgetItem* PythonQtShell_QTreeWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTreeWidgetItem*"}; @@ -12987,7 +12987,7 @@ QVariant PythonQtShell_QTreeWidgetItem::data(int column0, int role1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "int"}; @@ -13020,7 +13020,7 @@ void PythonQtShell_QTreeWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -13042,7 +13042,7 @@ void PythonQtShell_QTreeWidgetItem::setData(int column0, int role1, const QVar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "const QVariant&"}; @@ -13064,7 +13064,7 @@ void PythonQtShell_QTreeWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -13419,7 +13419,7 @@ int PythonQtShell_QUndoCommand::id() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("id"); + static PyObject* name = PyUnicode_FromString("id"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13452,7 +13452,7 @@ bool PythonQtShell_QUndoCommand::mergeWith(const QUndoCommand* other0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mergeWith"); + static PyObject* name = PyUnicode_FromString("mergeWith"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUndoCommand*"}; @@ -13485,7 +13485,7 @@ void PythonQtShell_QUndoCommand::redo() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redo"); + static PyObject* name = PyUnicode_FromString("redo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13507,7 +13507,7 @@ void PythonQtShell_QUndoCommand::undo() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("undo"); + static PyObject* name = PyUnicode_FromString("undo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13598,7 +13598,7 @@ void PythonQtShell_QUndoGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13620,7 +13620,7 @@ void PythonQtShell_QUndoGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13642,7 +13642,7 @@ bool PythonQtShell_QUndoGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13675,7 +13675,7 @@ bool PythonQtShell_QUndoGroup::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13708,7 +13708,7 @@ void PythonQtShell_QUndoGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp index 437ea95a9..e50336de2 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp @@ -72,7 +72,7 @@ void PythonQtShell_QUndoStack::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -94,7 +94,7 @@ void PythonQtShell_QUndoStack::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -116,7 +116,7 @@ bool PythonQtShell_QUndoStack::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -149,7 +149,7 @@ bool PythonQtShell_QUndoStack::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -182,7 +182,7 @@ void PythonQtShell_QUndoStack::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -322,7 +322,7 @@ void PythonQtShell_QUndoView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -344,7 +344,7 @@ void PythonQtShell_QUndoView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -366,7 +366,7 @@ void PythonQtShell_QUndoView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -388,7 +388,7 @@ void PythonQtShell_QUndoView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -410,7 +410,7 @@ void PythonQtShell_QUndoView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -432,7 +432,7 @@ void PythonQtShell_QUndoView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -454,7 +454,7 @@ void PythonQtShell_QUndoView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -476,7 +476,7 @@ void PythonQtShell_QUndoView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -498,7 +498,7 @@ void PythonQtShell_QUndoView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -520,7 +520,7 @@ void PythonQtShell_QUndoView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -542,7 +542,7 @@ int PythonQtShell_QUndoView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -575,7 +575,7 @@ void PythonQtShell_QUndoView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -597,7 +597,7 @@ void PythonQtShell_QUndoView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -619,7 +619,7 @@ void PythonQtShell_QUndoView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -641,7 +641,7 @@ void PythonQtShell_QUndoView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -663,7 +663,7 @@ void PythonQtShell_QUndoView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -685,7 +685,7 @@ bool PythonQtShell_QUndoView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -718,7 +718,7 @@ void PythonQtShell_QUndoView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -740,7 +740,7 @@ void PythonQtShell_QUndoView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -762,7 +762,7 @@ bool PythonQtShell_QUndoView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -795,7 +795,7 @@ bool PythonQtShell_QUndoView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -828,7 +828,7 @@ void PythonQtShell_QUndoView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -850,7 +850,7 @@ bool PythonQtShell_QUndoView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -883,7 +883,7 @@ void PythonQtShell_QUndoView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -905,7 +905,7 @@ bool PythonQtShell_QUndoView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -938,7 +938,7 @@ int PythonQtShell_QUndoView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -971,7 +971,7 @@ void PythonQtShell_QUndoView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -993,7 +993,7 @@ int PythonQtShell_QUndoView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1026,7 +1026,7 @@ void PythonQtShell_QUndoView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1048,7 +1048,7 @@ void PythonQtShell_QUndoView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1070,7 +1070,7 @@ QModelIndex PythonQtShell_QUndoView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -1103,7 +1103,7 @@ void PythonQtShell_QUndoView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1125,7 +1125,7 @@ void PythonQtShell_QUndoView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1147,7 +1147,7 @@ QVariant PythonQtShell_QUndoView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1180,7 +1180,7 @@ bool PythonQtShell_QUndoView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1213,7 +1213,7 @@ void PythonQtShell_QUndoView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1235,7 +1235,7 @@ void PythonQtShell_QUndoView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1257,7 +1257,7 @@ void PythonQtShell_QUndoView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1279,7 +1279,7 @@ void PythonQtShell_QUndoView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1301,7 +1301,7 @@ int PythonQtShell_QUndoView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1334,7 +1334,7 @@ QSize PythonQtShell_QUndoView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1367,7 +1367,7 @@ void PythonQtShell_QUndoView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1389,7 +1389,7 @@ void PythonQtShell_QUndoView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1411,7 +1411,7 @@ void PythonQtShell_QUndoView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1433,7 +1433,7 @@ void PythonQtShell_QUndoView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1455,7 +1455,7 @@ QModelIndex PythonQtShell_QUndoView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -1488,7 +1488,7 @@ void PythonQtShell_QUndoView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1510,7 +1510,7 @@ bool PythonQtShell_QUndoView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1543,7 +1543,7 @@ QPaintEngine* PythonQtShell_QUndoView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1576,7 +1576,7 @@ void PythonQtShell_QUndoView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1598,7 +1598,7 @@ QPaintDevice* PythonQtShell_QUndoView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1631,7 +1631,7 @@ void PythonQtShell_QUndoView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1653,7 +1653,7 @@ void PythonQtShell_QUndoView::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1675,7 +1675,7 @@ void PythonQtShell_QUndoView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1697,7 +1697,7 @@ void PythonQtShell_QUndoView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1719,7 +1719,7 @@ void PythonQtShell_QUndoView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1741,7 +1741,7 @@ void PythonQtShell_QUndoView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -1763,7 +1763,7 @@ void PythonQtShell_QUndoView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1785,7 +1785,7 @@ QList PythonQtShell_QUndoView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1818,7 +1818,7 @@ void PythonQtShell_QUndoView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -1840,7 +1840,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QUndoView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -1873,7 +1873,7 @@ void PythonQtShell_QUndoView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -1895,7 +1895,7 @@ void PythonQtShell_QUndoView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1917,7 +1917,7 @@ void PythonQtShell_QUndoView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -1939,7 +1939,7 @@ void PythonQtShell_QUndoView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -1961,7 +1961,7 @@ void PythonQtShell_QUndoView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1983,7 +1983,7 @@ void PythonQtShell_QUndoView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2005,7 +2005,7 @@ QPainter* PythonQtShell_QUndoView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2038,7 +2038,7 @@ void PythonQtShell_QUndoView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2060,7 +2060,7 @@ QSize PythonQtShell_QUndoView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2093,7 +2093,7 @@ int PythonQtShell_QUndoView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2126,7 +2126,7 @@ int PythonQtShell_QUndoView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2159,7 +2159,7 @@ void PythonQtShell_QUndoView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -2181,7 +2181,7 @@ void PythonQtShell_QUndoView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2203,7 +2203,7 @@ void PythonQtShell_QUndoView::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2225,7 +2225,7 @@ void PythonQtShell_QUndoView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2247,7 +2247,7 @@ void PythonQtShell_QUndoView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2269,7 +2269,7 @@ void PythonQtShell_QUndoView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2291,7 +2291,7 @@ int PythonQtShell_QUndoView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2324,7 +2324,7 @@ void PythonQtShell_QUndoView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2346,7 +2346,7 @@ void PythonQtShell_QUndoView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2368,7 +2368,7 @@ QStyleOptionViewItem PythonQtShell_QUndoView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -2401,7 +2401,7 @@ bool PythonQtShell_QUndoView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2434,7 +2434,7 @@ QSize PythonQtShell_QUndoView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2467,7 +2467,7 @@ QRect PythonQtShell_QUndoView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -2500,7 +2500,7 @@ QRegion PythonQtShell_QUndoView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -2533,7 +2533,7 @@ void PythonQtShell_QUndoView::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2616,7 +2616,7 @@ void PythonQtShell_QVBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -2638,7 +2638,7 @@ void PythonQtShell_QVBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2660,7 +2660,7 @@ QSizePolicy::ControlTypes PythonQtShell_QVBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -2693,7 +2693,7 @@ int PythonQtShell_QVBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2726,7 +2726,7 @@ void PythonQtShell_QVBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2748,7 +2748,7 @@ bool PythonQtShell_QVBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2781,7 +2781,7 @@ bool PythonQtShell_QVBoxLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2814,7 +2814,7 @@ Qt::Orientations PythonQtShell_QVBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -2847,7 +2847,7 @@ QRect PythonQtShell_QVBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2880,7 +2880,7 @@ bool PythonQtShell_QVBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2913,7 +2913,7 @@ int PythonQtShell_QVBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2946,7 +2946,7 @@ int PythonQtShell_QVBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -2979,7 +2979,7 @@ void PythonQtShell_QVBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3001,7 +3001,7 @@ bool PythonQtShell_QVBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3034,7 +3034,7 @@ QLayoutItem* PythonQtShell_QVBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -3067,7 +3067,7 @@ QLayout* PythonQtShell_QVBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -3100,7 +3100,7 @@ QSize PythonQtShell_QVBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3133,7 +3133,7 @@ int PythonQtShell_QVBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3166,7 +3166,7 @@ QSize PythonQtShell_QVBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3199,7 +3199,7 @@ void PythonQtShell_QVBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -3221,7 +3221,7 @@ QSize PythonQtShell_QVBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3254,7 +3254,7 @@ QLayoutItem* PythonQtShell_QVBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -3287,7 +3287,7 @@ void PythonQtShell_QVBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3336,7 +3336,7 @@ void PythonQtShell_QValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3358,7 +3358,7 @@ void PythonQtShell_QValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3380,7 +3380,7 @@ bool PythonQtShell_QValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3413,7 +3413,7 @@ bool PythonQtShell_QValidator::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3446,7 +3446,7 @@ void PythonQtShell_QValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3468,7 +3468,7 @@ void PythonQtShell_QValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3490,7 +3490,7 @@ QValidator::State PythonQtShell_QValidator::validate(QString& arg__1, int& ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -4385,7 +4385,7 @@ void PythonQtShell_QWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4407,7 +4407,7 @@ void PythonQtShell_QWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4429,7 +4429,7 @@ void PythonQtShell_QWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4451,7 +4451,7 @@ void PythonQtShell_QWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4473,7 +4473,7 @@ void PythonQtShell_QWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4495,7 +4495,7 @@ void PythonQtShell_QWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4517,7 +4517,7 @@ int PythonQtShell_QWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4550,7 +4550,7 @@ void PythonQtShell_QWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4572,7 +4572,7 @@ void PythonQtShell_QWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4594,7 +4594,7 @@ void PythonQtShell_QWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4616,7 +4616,7 @@ void PythonQtShell_QWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4638,7 +4638,7 @@ void PythonQtShell_QWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4660,7 +4660,7 @@ bool PythonQtShell_QWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4693,7 +4693,7 @@ bool PythonQtShell_QWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4726,7 +4726,7 @@ void PythonQtShell_QWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4748,7 +4748,7 @@ bool PythonQtShell_QWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4781,7 +4781,7 @@ void PythonQtShell_QWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4803,7 +4803,7 @@ bool PythonQtShell_QWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4836,7 +4836,7 @@ int PythonQtShell_QWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4869,7 +4869,7 @@ void PythonQtShell_QWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4891,7 +4891,7 @@ void PythonQtShell_QWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4913,7 +4913,7 @@ void PythonQtShell_QWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4935,7 +4935,7 @@ QVariant PythonQtShell_QWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4968,7 +4968,7 @@ void PythonQtShell_QWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4990,7 +4990,7 @@ void PythonQtShell_QWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5012,7 +5012,7 @@ void PythonQtShell_QWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5034,7 +5034,7 @@ int PythonQtShell_QWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5067,7 +5067,7 @@ QSize PythonQtShell_QWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5100,7 +5100,7 @@ void PythonQtShell_QWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5122,7 +5122,7 @@ void PythonQtShell_QWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5144,7 +5144,7 @@ void PythonQtShell_QWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5166,7 +5166,7 @@ void PythonQtShell_QWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5188,7 +5188,7 @@ void PythonQtShell_QWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5210,7 +5210,7 @@ bool PythonQtShell_QWidget::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5243,7 +5243,7 @@ QPaintEngine* PythonQtShell_QWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5276,7 +5276,7 @@ void PythonQtShell_QWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5298,7 +5298,7 @@ QPaintDevice* PythonQtShell_QWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5331,7 +5331,7 @@ void PythonQtShell_QWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5353,7 +5353,7 @@ void PythonQtShell_QWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5375,7 +5375,7 @@ QPainter* PythonQtShell_QWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5408,7 +5408,7 @@ void PythonQtShell_QWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5430,7 +5430,7 @@ QSize PythonQtShell_QWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5463,7 +5463,7 @@ void PythonQtShell_QWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5485,7 +5485,7 @@ void PythonQtShell_QWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5507,7 +5507,7 @@ void PythonQtShell_QWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6809,7 +6809,7 @@ void PythonQtShell_QWidgetAction::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6831,7 +6831,7 @@ QWidget* PythonQtShell_QWidgetAction::createWidget(QWidget* parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -6864,7 +6864,7 @@ void PythonQtShell_QWidgetAction::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6886,7 +6886,7 @@ void PythonQtShell_QWidgetAction::deleteWidget(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteWidget"); + static PyObject* name = PyUnicode_FromString("deleteWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6908,7 +6908,7 @@ bool PythonQtShell_QWidgetAction::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6941,7 +6941,7 @@ bool PythonQtShell_QWidgetAction::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6974,7 +6974,7 @@ void PythonQtShell_QWidgetAction::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7054,7 +7054,7 @@ QSizePolicy::ControlTypes PythonQtShell_QWidgetItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7087,7 +7087,7 @@ Qt::Orientations PythonQtShell_QWidgetItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7120,7 +7120,7 @@ QRect PythonQtShell_QWidgetItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7153,7 +7153,7 @@ bool PythonQtShell_QWidgetItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7186,7 +7186,7 @@ int PythonQtShell_QWidgetItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7219,7 +7219,7 @@ void PythonQtShell_QWidgetItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7241,7 +7241,7 @@ bool PythonQtShell_QWidgetItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7274,7 +7274,7 @@ QLayout* PythonQtShell_QWidgetItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7307,7 +7307,7 @@ QSize PythonQtShell_QWidgetItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7340,7 +7340,7 @@ int PythonQtShell_QWidgetItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7373,7 +7373,7 @@ QSize PythonQtShell_QWidgetItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7406,7 +7406,7 @@ void PythonQtShell_QWidgetItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7428,7 +7428,7 @@ QSize PythonQtShell_QWidgetItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7461,7 +7461,7 @@ QSpacerItem* PythonQtShell_QWidgetItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -7494,7 +7494,7 @@ QWidget* PythonQtShell_QWidgetItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -7537,7 +7537,7 @@ void PythonQtShell_QWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7559,7 +7559,7 @@ void PythonQtShell_QWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7581,7 +7581,7 @@ bool PythonQtShell_QWindow::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7614,7 +7614,7 @@ bool PythonQtShell_QWindow::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7647,7 +7647,7 @@ void PythonQtShell_QWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -7669,7 +7669,7 @@ void PythonQtShell_QWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7691,7 +7691,7 @@ QObject* PythonQtShell_QWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -7724,7 +7724,7 @@ void PythonQtShell_QWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7746,7 +7746,7 @@ QSurfaceFormat PythonQtShell_QWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -7779,7 +7779,7 @@ void PythonQtShell_QWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7801,7 +7801,7 @@ void PythonQtShell_QWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7823,7 +7823,7 @@ void PythonQtShell_QWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7845,7 +7845,7 @@ void PythonQtShell_QWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7867,7 +7867,7 @@ void PythonQtShell_QWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7889,7 +7889,7 @@ void PythonQtShell_QWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7911,7 +7911,7 @@ void PythonQtShell_QWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7933,7 +7933,7 @@ void PythonQtShell_QWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7955,7 +7955,7 @@ bool PythonQtShell_QWindow::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7988,7 +7988,7 @@ void PythonQtShell_QWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8010,7 +8010,7 @@ void PythonQtShell_QWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8032,7 +8032,7 @@ QSize PythonQtShell_QWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8065,7 +8065,7 @@ QSurface::SurfaceType PythonQtShell_QWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -8098,7 +8098,7 @@ void PythonQtShell_QWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8120,7 +8120,7 @@ void PythonQtShell_QWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8142,7 +8142,7 @@ void PythonQtShell_QWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -8164,7 +8164,7 @@ void PythonQtShell_QWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8711,7 +8711,7 @@ void PythonQtShell_QWizard::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8733,7 +8733,7 @@ void PythonQtShell_QWizard::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8755,7 +8755,7 @@ void PythonQtShell_QWizard::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8777,7 +8777,7 @@ void PythonQtShell_QWizard::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8799,7 +8799,7 @@ void PythonQtShell_QWizard::cleanupPage(int id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8821,7 +8821,7 @@ void PythonQtShell_QWizard::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8843,7 +8843,7 @@ void PythonQtShell_QWizard::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8865,7 +8865,7 @@ void PythonQtShell_QWizard::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8887,7 +8887,7 @@ int PythonQtShell_QWizard::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8920,7 +8920,7 @@ void PythonQtShell_QWizard::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8942,7 +8942,7 @@ void PythonQtShell_QWizard::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8964,7 +8964,7 @@ void PythonQtShell_QWizard::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8986,7 +8986,7 @@ void PythonQtShell_QWizard::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9008,7 +9008,7 @@ void PythonQtShell_QWizard::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9030,7 +9030,7 @@ void PythonQtShell_QWizard::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9052,7 +9052,7 @@ bool PythonQtShell_QWizard::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9085,7 +9085,7 @@ bool PythonQtShell_QWizard::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9118,7 +9118,7 @@ int PythonQtShell_QWizard::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9151,7 +9151,7 @@ void PythonQtShell_QWizard::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9173,7 +9173,7 @@ bool PythonQtShell_QWizard::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9206,7 +9206,7 @@ void PythonQtShell_QWizard::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9228,7 +9228,7 @@ bool PythonQtShell_QWizard::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9261,7 +9261,7 @@ int PythonQtShell_QWizard::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9294,7 +9294,7 @@ void PythonQtShell_QWizard::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9316,7 +9316,7 @@ void PythonQtShell_QWizard::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9338,7 +9338,7 @@ void PythonQtShell_QWizard::initializePage(int id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9360,7 +9360,7 @@ void PythonQtShell_QWizard::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9382,7 +9382,7 @@ QVariant PythonQtShell_QWizard::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9415,7 +9415,7 @@ void PythonQtShell_QWizard::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9437,7 +9437,7 @@ void PythonQtShell_QWizard::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9459,7 +9459,7 @@ void PythonQtShell_QWizard::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9481,7 +9481,7 @@ int PythonQtShell_QWizard::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9514,7 +9514,7 @@ QSize PythonQtShell_QWizard::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9547,7 +9547,7 @@ void PythonQtShell_QWizard::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9569,7 +9569,7 @@ void PythonQtShell_QWizard::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9591,7 +9591,7 @@ void PythonQtShell_QWizard::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9613,7 +9613,7 @@ void PythonQtShell_QWizard::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9635,7 +9635,7 @@ void PythonQtShell_QWizard::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9657,7 +9657,7 @@ bool PythonQtShell_QWizard::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9690,7 +9690,7 @@ int PythonQtShell_QWizard::nextId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9723,7 +9723,7 @@ void PythonQtShell_QWizard::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9745,7 +9745,7 @@ QPaintEngine* PythonQtShell_QWizard::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9778,7 +9778,7 @@ void PythonQtShell_QWizard::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9800,7 +9800,7 @@ QPaintDevice* PythonQtShell_QWizard::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9833,7 +9833,7 @@ void PythonQtShell_QWizard::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9855,7 +9855,7 @@ void PythonQtShell_QWizard::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9877,7 +9877,7 @@ void PythonQtShell_QWizard::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9899,7 +9899,7 @@ QPainter* PythonQtShell_QWizard::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9932,7 +9932,7 @@ void PythonQtShell_QWizard::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9954,7 +9954,7 @@ QSize PythonQtShell_QWizard::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9987,7 +9987,7 @@ void PythonQtShell_QWizard::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10009,7 +10009,7 @@ void PythonQtShell_QWizard::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10031,7 +10031,7 @@ bool PythonQtShell_QWizard::validateCurrentPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validateCurrentPage"); + static PyObject* name = PyUnicode_FromString("validateCurrentPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10064,7 +10064,7 @@ void PythonQtShell_QWizard::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10289,7 +10289,7 @@ void PythonQtShell_QWizardPage::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10311,7 +10311,7 @@ void PythonQtShell_QWizardPage::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10333,7 +10333,7 @@ void PythonQtShell_QWizardPage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10355,7 +10355,7 @@ void PythonQtShell_QWizardPage::cleanupPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10377,7 +10377,7 @@ void PythonQtShell_QWizardPage::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10399,7 +10399,7 @@ void PythonQtShell_QWizardPage::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10421,7 +10421,7 @@ void PythonQtShell_QWizardPage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10443,7 +10443,7 @@ int PythonQtShell_QWizardPage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10476,7 +10476,7 @@ void PythonQtShell_QWizardPage::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10498,7 +10498,7 @@ void PythonQtShell_QWizardPage::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10520,7 +10520,7 @@ void PythonQtShell_QWizardPage::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10542,7 +10542,7 @@ void PythonQtShell_QWizardPage::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10564,7 +10564,7 @@ void PythonQtShell_QWizardPage::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10586,7 +10586,7 @@ bool PythonQtShell_QWizardPage::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10619,7 +10619,7 @@ bool PythonQtShell_QWizardPage::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10652,7 +10652,7 @@ void PythonQtShell_QWizardPage::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10674,7 +10674,7 @@ bool PythonQtShell_QWizardPage::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10707,7 +10707,7 @@ void PythonQtShell_QWizardPage::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10729,7 +10729,7 @@ bool PythonQtShell_QWizardPage::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10762,7 +10762,7 @@ int PythonQtShell_QWizardPage::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10795,7 +10795,7 @@ void PythonQtShell_QWizardPage::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10817,7 +10817,7 @@ void PythonQtShell_QWizardPage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10839,7 +10839,7 @@ void PythonQtShell_QWizardPage::initializePage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10861,7 +10861,7 @@ void PythonQtShell_QWizardPage::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10883,7 +10883,7 @@ QVariant PythonQtShell_QWizardPage::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10916,7 +10916,7 @@ bool PythonQtShell_QWizardPage::isComplete() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isComplete"); + static PyObject* name = PyUnicode_FromString("isComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10949,7 +10949,7 @@ void PythonQtShell_QWizardPage::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10971,7 +10971,7 @@ void PythonQtShell_QWizardPage::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10993,7 +10993,7 @@ void PythonQtShell_QWizardPage::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11015,7 +11015,7 @@ int PythonQtShell_QWizardPage::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11048,7 +11048,7 @@ QSize PythonQtShell_QWizardPage::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11081,7 +11081,7 @@ void PythonQtShell_QWizardPage::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11103,7 +11103,7 @@ void PythonQtShell_QWizardPage::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11125,7 +11125,7 @@ void PythonQtShell_QWizardPage::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11147,7 +11147,7 @@ void PythonQtShell_QWizardPage::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11169,7 +11169,7 @@ void PythonQtShell_QWizardPage::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11191,7 +11191,7 @@ bool PythonQtShell_QWizardPage::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11224,7 +11224,7 @@ int PythonQtShell_QWizardPage::nextId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11257,7 +11257,7 @@ QPaintEngine* PythonQtShell_QWizardPage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11290,7 +11290,7 @@ void PythonQtShell_QWizardPage::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11312,7 +11312,7 @@ QPaintDevice* PythonQtShell_QWizardPage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11345,7 +11345,7 @@ void PythonQtShell_QWizardPage::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11367,7 +11367,7 @@ void PythonQtShell_QWizardPage::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11389,7 +11389,7 @@ QPainter* PythonQtShell_QWizardPage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11422,7 +11422,7 @@ void PythonQtShell_QWizardPage::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11444,7 +11444,7 @@ QSize PythonQtShell_QWizardPage::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11477,7 +11477,7 @@ void PythonQtShell_QWizardPage::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11499,7 +11499,7 @@ void PythonQtShell_QWizardPage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11521,7 +11521,7 @@ bool PythonQtShell_QWizardPage::validatePage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validatePage"); + static PyObject* name = PyUnicode_FromString("validatePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11554,7 +11554,7 @@ void PythonQtShell_QWizardPage::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp index 5dc9213a7..c17e5fe7f 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp @@ -224,7 +224,7 @@ void PythonQtShell_QFontDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -246,7 +246,7 @@ void PythonQtShell_QFontDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -268,7 +268,7 @@ void PythonQtShell_QFontDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -290,7 +290,7 @@ void PythonQtShell_QFontDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -312,7 +312,7 @@ void PythonQtShell_QFontDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -334,7 +334,7 @@ void PythonQtShell_QFontDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -356,7 +356,7 @@ void PythonQtShell_QFontDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -378,7 +378,7 @@ int PythonQtShell_QFontDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -411,7 +411,7 @@ void PythonQtShell_QFontDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -433,7 +433,7 @@ void PythonQtShell_QFontDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -455,7 +455,7 @@ void PythonQtShell_QFontDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -477,7 +477,7 @@ void PythonQtShell_QFontDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -499,7 +499,7 @@ void PythonQtShell_QFontDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -521,7 +521,7 @@ void PythonQtShell_QFontDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -543,7 +543,7 @@ bool PythonQtShell_QFontDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -576,7 +576,7 @@ bool PythonQtShell_QFontDialog::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -609,7 +609,7 @@ int PythonQtShell_QFontDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -642,7 +642,7 @@ void PythonQtShell_QFontDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -664,7 +664,7 @@ bool PythonQtShell_QFontDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -697,7 +697,7 @@ void PythonQtShell_QFontDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -719,7 +719,7 @@ bool PythonQtShell_QFontDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -752,7 +752,7 @@ int PythonQtShell_QFontDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -785,7 +785,7 @@ void PythonQtShell_QFontDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -807,7 +807,7 @@ void PythonQtShell_QFontDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -829,7 +829,7 @@ void PythonQtShell_QFontDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -851,7 +851,7 @@ QVariant PythonQtShell_QFontDialog::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -884,7 +884,7 @@ void PythonQtShell_QFontDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -906,7 +906,7 @@ void PythonQtShell_QFontDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -928,7 +928,7 @@ void PythonQtShell_QFontDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -950,7 +950,7 @@ int PythonQtShell_QFontDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -983,7 +983,7 @@ QSize PythonQtShell_QFontDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1016,7 +1016,7 @@ void PythonQtShell_QFontDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1038,7 +1038,7 @@ void PythonQtShell_QFontDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1060,7 +1060,7 @@ void PythonQtShell_QFontDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1082,7 +1082,7 @@ void PythonQtShell_QFontDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1104,7 +1104,7 @@ void PythonQtShell_QFontDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1126,7 +1126,7 @@ bool PythonQtShell_QFontDialog::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1159,7 +1159,7 @@ QPaintEngine* PythonQtShell_QFontDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1192,7 +1192,7 @@ void PythonQtShell_QFontDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1214,7 +1214,7 @@ QPaintDevice* PythonQtShell_QFontDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1247,7 +1247,7 @@ void PythonQtShell_QFontDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1269,7 +1269,7 @@ void PythonQtShell_QFontDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1291,7 +1291,7 @@ void PythonQtShell_QFontDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1313,7 +1313,7 @@ QPainter* PythonQtShell_QFontDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1346,7 +1346,7 @@ void PythonQtShell_QFontDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1368,7 +1368,7 @@ QSize PythonQtShell_QFontDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1401,7 +1401,7 @@ void PythonQtShell_QFontDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1423,7 +1423,7 @@ void PythonQtShell_QFontDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1445,7 +1445,7 @@ void PythonQtShell_QFontDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1974,7 +1974,7 @@ void PythonQtShell_QFormLayout::addItem(QLayoutItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -1996,7 +1996,7 @@ void PythonQtShell_QFormLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2018,7 +2018,7 @@ QSizePolicy::ControlTypes PythonQtShell_QFormLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -2051,7 +2051,7 @@ int PythonQtShell_QFormLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2084,7 +2084,7 @@ void PythonQtShell_QFormLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2106,7 +2106,7 @@ bool PythonQtShell_QFormLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2139,7 +2139,7 @@ bool PythonQtShell_QFormLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2172,7 +2172,7 @@ Qt::Orientations PythonQtShell_QFormLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -2205,7 +2205,7 @@ QRect PythonQtShell_QFormLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2238,7 +2238,7 @@ bool PythonQtShell_QFormLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2271,7 +2271,7 @@ int PythonQtShell_QFormLayout::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2304,7 +2304,7 @@ int PythonQtShell_QFormLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -2337,7 +2337,7 @@ void PythonQtShell_QFormLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2359,7 +2359,7 @@ bool PythonQtShell_QFormLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2392,7 +2392,7 @@ QLayoutItem* PythonQtShell_QFormLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2425,7 +2425,7 @@ QLayout* PythonQtShell_QFormLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -2458,7 +2458,7 @@ QSize PythonQtShell_QFormLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2491,7 +2491,7 @@ QSize PythonQtShell_QFormLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2524,7 +2524,7 @@ void PythonQtShell_QFormLayout::setGeometry(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2546,7 +2546,7 @@ QSize PythonQtShell_QFormLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2579,7 +2579,7 @@ QLayoutItem* PythonQtShell_QFormLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2612,7 +2612,7 @@ void PythonQtShell_QFormLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2867,7 +2867,7 @@ void PythonQtShell_QFrame::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2889,7 +2889,7 @@ void PythonQtShell_QFrame::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2911,7 +2911,7 @@ void PythonQtShell_QFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2933,7 +2933,7 @@ void PythonQtShell_QFrame::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2955,7 +2955,7 @@ void PythonQtShell_QFrame::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2977,7 +2977,7 @@ void PythonQtShell_QFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2999,7 +2999,7 @@ int PythonQtShell_QFrame::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3032,7 +3032,7 @@ void PythonQtShell_QFrame::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3054,7 +3054,7 @@ void PythonQtShell_QFrame::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3076,7 +3076,7 @@ void PythonQtShell_QFrame::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3098,7 +3098,7 @@ void PythonQtShell_QFrame::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3120,7 +3120,7 @@ void PythonQtShell_QFrame::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3142,7 +3142,7 @@ bool PythonQtShell_QFrame::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3175,7 +3175,7 @@ bool PythonQtShell_QFrame::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3208,7 +3208,7 @@ void PythonQtShell_QFrame::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3230,7 +3230,7 @@ bool PythonQtShell_QFrame::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3263,7 +3263,7 @@ void PythonQtShell_QFrame::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3285,7 +3285,7 @@ bool PythonQtShell_QFrame::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3318,7 +3318,7 @@ int PythonQtShell_QFrame::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3351,7 +3351,7 @@ void PythonQtShell_QFrame::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3373,7 +3373,7 @@ void PythonQtShell_QFrame::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3395,7 +3395,7 @@ void PythonQtShell_QFrame::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3417,7 +3417,7 @@ QVariant PythonQtShell_QFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3450,7 +3450,7 @@ void PythonQtShell_QFrame::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3472,7 +3472,7 @@ void PythonQtShell_QFrame::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3494,7 +3494,7 @@ void PythonQtShell_QFrame::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3516,7 +3516,7 @@ int PythonQtShell_QFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3549,7 +3549,7 @@ QSize PythonQtShell_QFrame::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3582,7 +3582,7 @@ void PythonQtShell_QFrame::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3604,7 +3604,7 @@ void PythonQtShell_QFrame::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3626,7 +3626,7 @@ void PythonQtShell_QFrame::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3648,7 +3648,7 @@ void PythonQtShell_QFrame::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3670,7 +3670,7 @@ void PythonQtShell_QFrame::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3692,7 +3692,7 @@ bool PythonQtShell_QFrame::nativeEvent(const QByteArray& eventType0, void* me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3725,7 +3725,7 @@ QPaintEngine* PythonQtShell_QFrame::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3758,7 +3758,7 @@ void PythonQtShell_QFrame::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3780,7 +3780,7 @@ QPaintDevice* PythonQtShell_QFrame::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3813,7 +3813,7 @@ void PythonQtShell_QFrame::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3835,7 +3835,7 @@ void PythonQtShell_QFrame::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3857,7 +3857,7 @@ QPainter* PythonQtShell_QFrame::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3890,7 +3890,7 @@ void PythonQtShell_QFrame::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3912,7 +3912,7 @@ QSize PythonQtShell_QFrame::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3945,7 +3945,7 @@ void PythonQtShell_QFrame::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3967,7 +3967,7 @@ void PythonQtShell_QFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3989,7 +3989,7 @@ void PythonQtShell_QFrame::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4114,7 +4114,7 @@ void PythonQtShell_QGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4136,7 +4136,7 @@ void PythonQtShell_QGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4158,7 +4158,7 @@ bool PythonQtShell_QGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4191,7 +4191,7 @@ bool PythonQtShell_QGesture::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4224,7 +4224,7 @@ void PythonQtShell_QGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4404,7 +4404,7 @@ QGesture* PythonQtShell_QGestureRecognizer::create(QObject* target0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGesture*" , "QObject*"}; @@ -4437,7 +4437,7 @@ QGestureRecognizer::Result PythonQtShell_QGestureRecognizer::recognize(QGesture if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("recognize"); + static PyObject* name = PyUnicode_FromString("recognize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGestureRecognizer::Result" , "QGesture*" , "QObject*" , "QEvent*"}; @@ -4470,7 +4470,7 @@ void PythonQtShell_QGestureRecognizer::reset(QGesture* state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGesture*"}; @@ -4750,7 +4750,7 @@ int PythonQtShell_QGraphicsAnchorLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4783,7 +4783,7 @@ void PythonQtShell_QGraphicsAnchorLayout::getContentsMargins(qreal* left0, qrea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -4805,7 +4805,7 @@ void PythonQtShell_QGraphicsAnchorLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4827,7 +4827,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsAnchorLayout::itemAt(int index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -4860,7 +4860,7 @@ void PythonQtShell_QGraphicsAnchorLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4882,7 +4882,7 @@ void PythonQtShell_QGraphicsAnchorLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -4904,7 +4904,7 @@ QSizeF PythonQtShell_QGraphicsAnchorLayout::sizeHint(Qt::SizeHint which0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -4937,7 +4937,7 @@ void PythonQtShell_QGraphicsAnchorLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4959,7 +4959,7 @@ void PythonQtShell_QGraphicsAnchorLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5046,7 +5046,7 @@ QRectF PythonQtShell_QGraphicsBlurEffect::boundingRectFor(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5079,7 +5079,7 @@ void PythonQtShell_QGraphicsBlurEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5101,7 +5101,7 @@ void PythonQtShell_QGraphicsBlurEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5123,7 +5123,7 @@ void PythonQtShell_QGraphicsBlurEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5145,7 +5145,7 @@ bool PythonQtShell_QGraphicsBlurEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5178,7 +5178,7 @@ bool PythonQtShell_QGraphicsBlurEffect::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5211,7 +5211,7 @@ void PythonQtShell_QGraphicsBlurEffect::sourceChanged(QGraphicsEffect::ChangeFla if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5233,7 +5233,7 @@ void PythonQtShell_QGraphicsBlurEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5288,7 +5288,7 @@ QRectF PythonQtShell_QGraphicsColorizeEffect::boundingRectFor(const QRectF& so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5321,7 +5321,7 @@ void PythonQtShell_QGraphicsColorizeEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5343,7 +5343,7 @@ void PythonQtShell_QGraphicsColorizeEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5365,7 +5365,7 @@ void PythonQtShell_QGraphicsColorizeEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5387,7 +5387,7 @@ bool PythonQtShell_QGraphicsColorizeEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5420,7 +5420,7 @@ bool PythonQtShell_QGraphicsColorizeEffect::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5453,7 +5453,7 @@ void PythonQtShell_QGraphicsColorizeEffect::sourceChanged(QGraphicsEffect::Chang if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5475,7 +5475,7 @@ void PythonQtShell_QGraphicsColorizeEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5530,7 +5530,7 @@ QRectF PythonQtShell_QGraphicsDropShadowEffect::boundingRectFor(const QRectF& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5563,7 +5563,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5585,7 +5585,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5607,7 +5607,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5629,7 +5629,7 @@ bool PythonQtShell_QGraphicsDropShadowEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5662,7 +5662,7 @@ bool PythonQtShell_QGraphicsDropShadowEffect::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5695,7 +5695,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::sourceChanged(QGraphicsEffect::Cha if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5717,7 +5717,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5787,7 +5787,7 @@ QRectF PythonQtShell_QGraphicsEffect::boundingRectFor(const QRectF& sourceRect if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5820,7 +5820,7 @@ void PythonQtShell_QGraphicsEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5842,7 +5842,7 @@ void PythonQtShell_QGraphicsEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5864,7 +5864,7 @@ void PythonQtShell_QGraphicsEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5886,7 +5886,7 @@ bool PythonQtShell_QGraphicsEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5919,7 +5919,7 @@ bool PythonQtShell_QGraphicsEffect::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5952,7 +5952,7 @@ void PythonQtShell_QGraphicsEffect::sourceChanged(QGraphicsEffect::ChangeFlags if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5974,7 +5974,7 @@ void PythonQtShell_QGraphicsEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6069,7 +6069,7 @@ QRectF PythonQtShell_QGraphicsEllipseItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -6102,7 +6102,7 @@ bool PythonQtShell_QGraphicsEllipseItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -6135,7 +6135,7 @@ QVariant PythonQtShell_QGraphicsEllipseItem::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -6168,7 +6168,7 @@ bool PythonQtShell_QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6201,7 +6201,7 @@ QPainterPath PythonQtShell_QGraphicsEllipseItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6234,7 +6234,7 @@ void PythonQtShell_QGraphicsEllipseItem::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6256,7 +6256,7 @@ void PythonQtShell_QGraphicsEllipseItem::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6278,7 +6278,7 @@ QPainterPath PythonQtShell_QGraphicsEllipseItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6311,7 +6311,7 @@ bool PythonQtShell_QGraphicsEllipseItem::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6344,7 +6344,7 @@ int PythonQtShell_QGraphicsEllipseItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6470,7 +6470,7 @@ int PythonQtShell_QGraphicsGridLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6503,7 +6503,7 @@ void PythonQtShell_QGraphicsGridLayout::getContentsMargins(qreal* left0, qreal* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -6525,7 +6525,7 @@ void PythonQtShell_QGraphicsGridLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6547,7 +6547,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsGridLayout::itemAt(int index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -6580,7 +6580,7 @@ void PythonQtShell_QGraphicsGridLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6602,7 +6602,7 @@ void PythonQtShell_QGraphicsGridLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -6624,7 +6624,7 @@ QSizeF PythonQtShell_QGraphicsGridLayout::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -6657,7 +6657,7 @@ void PythonQtShell_QGraphicsGridLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6679,7 +6679,7 @@ void PythonQtShell_QGraphicsGridLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6916,7 +6916,7 @@ void PythonQtShell_QGraphicsItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6938,7 +6938,7 @@ QRectF PythonQtShell_QGraphicsItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -6971,7 +6971,7 @@ bool PythonQtShell_QGraphicsItem::collidesWithItem(const QGraphicsItem* other0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -7004,7 +7004,7 @@ bool PythonQtShell_QGraphicsItem::collidesWithPath(const QPainterPath& path0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -7037,7 +7037,7 @@ bool PythonQtShell_QGraphicsItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -7070,7 +7070,7 @@ void PythonQtShell_QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -7092,7 +7092,7 @@ void PythonQtShell_QGraphicsItem::dragEnterEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7114,7 +7114,7 @@ void PythonQtShell_QGraphicsItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7136,7 +7136,7 @@ void PythonQtShell_QGraphicsItem::dragMoveEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7158,7 +7158,7 @@ void PythonQtShell_QGraphicsItem::dropEvent(QGraphicsSceneDragDropEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7180,7 +7180,7 @@ QVariant PythonQtShell_QGraphicsItem::extension(const QVariant& variant0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -7213,7 +7213,7 @@ void PythonQtShell_QGraphicsItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7235,7 +7235,7 @@ void PythonQtShell_QGraphicsItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7257,7 +7257,7 @@ void PythonQtShell_QGraphicsItem::hoverEnterEvent(QGraphicsSceneHoverEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -7279,7 +7279,7 @@ void PythonQtShell_QGraphicsItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -7301,7 +7301,7 @@ void PythonQtShell_QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -7323,7 +7323,7 @@ void PythonQtShell_QGraphicsItem::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7345,7 +7345,7 @@ QVariant PythonQtShell_QGraphicsItem::inputMethodQuery(Qt::InputMethodQuery qu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7378,7 +7378,7 @@ bool PythonQtShell_QGraphicsItem::isObscuredBy(const QGraphicsItem* item0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -7411,7 +7411,7 @@ QVariant PythonQtShell_QGraphicsItem::itemChange(QGraphicsItem::GraphicsItemCha if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -7447,7 +7447,7 @@ void PythonQtShell_QGraphicsItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7469,7 +7469,7 @@ void PythonQtShell_QGraphicsItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7491,7 +7491,7 @@ void PythonQtShell_QGraphicsItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7513,7 +7513,7 @@ void PythonQtShell_QGraphicsItem::mouseMoveEvent(QGraphicsSceneMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7535,7 +7535,7 @@ void PythonQtShell_QGraphicsItem::mousePressEvent(QGraphicsSceneMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7557,7 +7557,7 @@ void PythonQtShell_QGraphicsItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7579,7 +7579,7 @@ QPainterPath PythonQtShell_QGraphicsItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -7612,7 +7612,7 @@ void PythonQtShell_QGraphicsItem::paint(QPainter* painter0, const QStyleOptionG if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -7634,7 +7634,7 @@ bool PythonQtShell_QGraphicsItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7667,7 +7667,7 @@ bool PythonQtShell_QGraphicsItem::sceneEventFilter(QGraphicsItem* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -7700,7 +7700,7 @@ void PythonQtShell_QGraphicsItem::setExtension(QGraphicsItem::Extension extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -7722,7 +7722,7 @@ QPainterPath PythonQtShell_QGraphicsItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -7755,7 +7755,7 @@ bool PythonQtShell_QGraphicsItem::supportsExtension(QGraphicsItem::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -7788,7 +7788,7 @@ int PythonQtShell_QGraphicsItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7821,7 +7821,7 @@ void PythonQtShell_QGraphicsItem::wheelEvent(QGraphicsSceneWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -8895,7 +8895,7 @@ void PythonQtShell_QGraphicsItemAnimation::afterAnimationStep(qreal step0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("afterAnimationStep"); + static PyObject* name = PyUnicode_FromString("afterAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8917,7 +8917,7 @@ void PythonQtShell_QGraphicsItemAnimation::beforeAnimationStep(qreal step0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beforeAnimationStep"); + static PyObject* name = PyUnicode_FromString("beforeAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8939,7 +8939,7 @@ void PythonQtShell_QGraphicsItemAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8961,7 +8961,7 @@ void PythonQtShell_QGraphicsItemAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8983,7 +8983,7 @@ bool PythonQtShell_QGraphicsItemAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9016,7 +9016,7 @@ bool PythonQtShell_QGraphicsItemAnimation::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9049,7 +9049,7 @@ void PythonQtShell_QGraphicsItemAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9224,7 +9224,7 @@ void PythonQtShell_QGraphicsItemGroup::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9246,7 +9246,7 @@ QRectF PythonQtShell_QGraphicsItemGroup::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -9279,7 +9279,7 @@ bool PythonQtShell_QGraphicsItemGroup::collidesWithItem(const QGraphicsItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -9312,7 +9312,7 @@ bool PythonQtShell_QGraphicsItemGroup::collidesWithPath(const QPainterPath& pa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -9345,7 +9345,7 @@ bool PythonQtShell_QGraphicsItemGroup::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -9378,7 +9378,7 @@ void PythonQtShell_QGraphicsItemGroup::contextMenuEvent(QGraphicsSceneContextMen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -9400,7 +9400,7 @@ void PythonQtShell_QGraphicsItemGroup::dragEnterEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9422,7 +9422,7 @@ void PythonQtShell_QGraphicsItemGroup::dragLeaveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9444,7 +9444,7 @@ void PythonQtShell_QGraphicsItemGroup::dragMoveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9466,7 +9466,7 @@ void PythonQtShell_QGraphicsItemGroup::dropEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9488,7 +9488,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -9521,7 +9521,7 @@ void PythonQtShell_QGraphicsItemGroup::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9543,7 +9543,7 @@ void PythonQtShell_QGraphicsItemGroup::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9565,7 +9565,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9587,7 +9587,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9609,7 +9609,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9631,7 +9631,7 @@ void PythonQtShell_QGraphicsItemGroup::inputMethodEvent(QInputMethodEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9653,7 +9653,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9686,7 +9686,7 @@ bool PythonQtShell_QGraphicsItemGroup::isObscuredBy(const QGraphicsItem* item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9719,7 +9719,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::itemChange(QGraphicsItem::GraphicsIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9755,7 +9755,7 @@ void PythonQtShell_QGraphicsItemGroup::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9777,7 +9777,7 @@ void PythonQtShell_QGraphicsItemGroup::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9799,7 +9799,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseDoubleClickEvent(QGraphicsSceneMouse if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9821,7 +9821,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9843,7 +9843,7 @@ void PythonQtShell_QGraphicsItemGroup::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9865,7 +9865,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseReleaseEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9887,7 +9887,7 @@ QPainterPath PythonQtShell_QGraphicsItemGroup::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9920,7 +9920,7 @@ void PythonQtShell_QGraphicsItemGroup::paint(QPainter* painter0, const QStyleOp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9942,7 +9942,7 @@ bool PythonQtShell_QGraphicsItemGroup::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9975,7 +9975,7 @@ bool PythonQtShell_QGraphicsItemGroup::sceneEventFilter(QGraphicsItem* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -10008,7 +10008,7 @@ void PythonQtShell_QGraphicsItemGroup::setExtension(QGraphicsItem::Extension ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -10030,7 +10030,7 @@ QPainterPath PythonQtShell_QGraphicsItemGroup::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10063,7 +10063,7 @@ bool PythonQtShell_QGraphicsItemGroup::supportsExtension(QGraphicsItem::Extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -10096,7 +10096,7 @@ int PythonQtShell_QGraphicsItemGroup::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10129,7 +10129,7 @@ void PythonQtShell_QGraphicsItemGroup::wheelEvent(QGraphicsSceneWheelEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -10171,7 +10171,7 @@ int PythonQtShell_QGraphicsLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10204,7 +10204,7 @@ void PythonQtShell_QGraphicsLayout::getContentsMargins(qreal* left0, qreal* to if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10226,7 +10226,7 @@ void PythonQtShell_QGraphicsLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10248,7 +10248,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsLayout::itemAt(int i0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -10281,7 +10281,7 @@ void PythonQtShell_QGraphicsLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10303,7 +10303,7 @@ void PythonQtShell_QGraphicsLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -10325,7 +10325,7 @@ QSizeF PythonQtShell_QGraphicsLayout::sizeHint(Qt::SizeHint which0, const QSiz if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -10358,7 +10358,7 @@ void PythonQtShell_QGraphicsLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10380,7 +10380,7 @@ void PythonQtShell_QGraphicsLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10467,7 +10467,7 @@ void PythonQtShell_QGraphicsLayoutItem::getContentsMargins(qreal* left0, qreal* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10489,7 +10489,7 @@ void PythonQtShell_QGraphicsLayoutItem::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -10511,7 +10511,7 @@ QSizeF PythonQtShell_QGraphicsLayoutItem::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -10544,7 +10544,7 @@ void PythonQtShell_QGraphicsLayoutItem::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10766,7 +10766,7 @@ void PythonQtShell_QGraphicsLineItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10788,7 +10788,7 @@ QRectF PythonQtShell_QGraphicsLineItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10821,7 +10821,7 @@ bool PythonQtShell_QGraphicsLineItem::collidesWithItem(const QGraphicsItem* ot if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10854,7 +10854,7 @@ bool PythonQtShell_QGraphicsLineItem::collidesWithPath(const QPainterPath& pat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10887,7 +10887,7 @@ bool PythonQtShell_QGraphicsLineItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10920,7 +10920,7 @@ void PythonQtShell_QGraphicsLineItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10942,7 +10942,7 @@ void PythonQtShell_QGraphicsLineItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10964,7 +10964,7 @@ void PythonQtShell_QGraphicsLineItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10986,7 +10986,7 @@ void PythonQtShell_QGraphicsLineItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -11008,7 +11008,7 @@ void PythonQtShell_QGraphicsLineItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -11030,7 +11030,7 @@ QVariant PythonQtShell_QGraphicsLineItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -11063,7 +11063,7 @@ void PythonQtShell_QGraphicsLineItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11085,7 +11085,7 @@ void PythonQtShell_QGraphicsLineItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11107,7 +11107,7 @@ void PythonQtShell_QGraphicsLineItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11129,7 +11129,7 @@ void PythonQtShell_QGraphicsLineItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11151,7 +11151,7 @@ void PythonQtShell_QGraphicsLineItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11173,7 +11173,7 @@ void PythonQtShell_QGraphicsLineItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11195,7 +11195,7 @@ QVariant PythonQtShell_QGraphicsLineItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11228,7 +11228,7 @@ bool PythonQtShell_QGraphicsLineItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11261,7 +11261,7 @@ QVariant PythonQtShell_QGraphicsLineItem::itemChange(QGraphicsItem::GraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -11297,7 +11297,7 @@ void PythonQtShell_QGraphicsLineItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11319,7 +11319,7 @@ void PythonQtShell_QGraphicsLineItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11341,7 +11341,7 @@ void PythonQtShell_QGraphicsLineItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11363,7 +11363,7 @@ void PythonQtShell_QGraphicsLineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11385,7 +11385,7 @@ void PythonQtShell_QGraphicsLineItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11407,7 +11407,7 @@ void PythonQtShell_QGraphicsLineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11429,7 +11429,7 @@ QPainterPath PythonQtShell_QGraphicsLineItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11462,7 +11462,7 @@ void PythonQtShell_QGraphicsLineItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -11484,7 +11484,7 @@ bool PythonQtShell_QGraphicsLineItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11517,7 +11517,7 @@ bool PythonQtShell_QGraphicsLineItem::sceneEventFilter(QGraphicsItem* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -11550,7 +11550,7 @@ void PythonQtShell_QGraphicsLineItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -11572,7 +11572,7 @@ QPainterPath PythonQtShell_QGraphicsLineItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11605,7 +11605,7 @@ bool PythonQtShell_QGraphicsLineItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -11638,7 +11638,7 @@ int PythonQtShell_QGraphicsLineItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11671,7 +11671,7 @@ void PythonQtShell_QGraphicsLineItem::wheelEvent(QGraphicsSceneWheelEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -11736,7 +11736,7 @@ int PythonQtShell_QGraphicsLinearLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11769,7 +11769,7 @@ void PythonQtShell_QGraphicsLinearLayout::getContentsMargins(qreal* left0, qrea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -11791,7 +11791,7 @@ void PythonQtShell_QGraphicsLinearLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11813,7 +11813,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsLinearLayout::itemAt(int index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -11846,7 +11846,7 @@ void PythonQtShell_QGraphicsLinearLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11868,7 +11868,7 @@ void PythonQtShell_QGraphicsLinearLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -11890,7 +11890,7 @@ QSizeF PythonQtShell_QGraphicsLinearLayout::sizeHint(Qt::SizeHint which0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -11923,7 +11923,7 @@ void PythonQtShell_QGraphicsLinearLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11945,7 +11945,7 @@ void PythonQtShell_QGraphicsLinearLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12071,7 +12071,7 @@ void PythonQtShell_QGraphicsObject::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12093,7 +12093,7 @@ QRectF PythonQtShell_QGraphicsObject::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -12126,7 +12126,7 @@ void PythonQtShell_QGraphicsObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12148,7 +12148,7 @@ bool PythonQtShell_QGraphicsObject::collidesWithItem(const QGraphicsItem* othe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -12181,7 +12181,7 @@ bool PythonQtShell_QGraphicsObject::collidesWithPath(const QPainterPath& path0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -12214,7 +12214,7 @@ bool PythonQtShell_QGraphicsObject::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -12247,7 +12247,7 @@ void PythonQtShell_QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -12269,7 +12269,7 @@ void PythonQtShell_QGraphicsObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12291,7 +12291,7 @@ void PythonQtShell_QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12313,7 +12313,7 @@ void PythonQtShell_QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12335,7 +12335,7 @@ void PythonQtShell_QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12357,7 +12357,7 @@ void PythonQtShell_QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12379,7 +12379,7 @@ bool PythonQtShell_QGraphicsObject::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12412,7 +12412,7 @@ bool PythonQtShell_QGraphicsObject::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12445,7 +12445,7 @@ QVariant PythonQtShell_QGraphicsObject::extension(const QVariant& variant0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -12478,7 +12478,7 @@ void PythonQtShell_QGraphicsObject::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12500,7 +12500,7 @@ void PythonQtShell_QGraphicsObject::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12522,7 +12522,7 @@ void PythonQtShell_QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12544,7 +12544,7 @@ void PythonQtShell_QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12566,7 +12566,7 @@ void PythonQtShell_QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12588,7 +12588,7 @@ void PythonQtShell_QGraphicsObject::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12610,7 +12610,7 @@ QVariant PythonQtShell_QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12643,7 +12643,7 @@ bool PythonQtShell_QGraphicsObject::isObscuredBy(const QGraphicsItem* item0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -12676,7 +12676,7 @@ QVariant PythonQtShell_QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -12712,7 +12712,7 @@ void PythonQtShell_QGraphicsObject::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12734,7 +12734,7 @@ void PythonQtShell_QGraphicsObject::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12756,7 +12756,7 @@ void PythonQtShell_QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12778,7 +12778,7 @@ void PythonQtShell_QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12800,7 +12800,7 @@ void PythonQtShell_QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12822,7 +12822,7 @@ void PythonQtShell_QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12844,7 +12844,7 @@ QPainterPath PythonQtShell_QGraphicsObject::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -12877,7 +12877,7 @@ void PythonQtShell_QGraphicsObject::paint(QPainter* painter0, const QStyleOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -12899,7 +12899,7 @@ bool PythonQtShell_QGraphicsObject::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12932,7 +12932,7 @@ bool PythonQtShell_QGraphicsObject::sceneEventFilter(QGraphicsItem* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -12965,7 +12965,7 @@ void PythonQtShell_QGraphicsObject::setExtension(QGraphicsItem::Extension exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -12987,7 +12987,7 @@ QPainterPath PythonQtShell_QGraphicsObject::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13020,7 +13020,7 @@ bool PythonQtShell_QGraphicsObject::supportsExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -13053,7 +13053,7 @@ void PythonQtShell_QGraphicsObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13075,7 +13075,7 @@ int PythonQtShell_QGraphicsObject::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13108,7 +13108,7 @@ void PythonQtShell_QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -13170,7 +13170,7 @@ QRectF PythonQtShell_QGraphicsOpacityEffect::boundingRectFor(const QRectF& sou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -13203,7 +13203,7 @@ void PythonQtShell_QGraphicsOpacityEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13225,7 +13225,7 @@ void PythonQtShell_QGraphicsOpacityEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13247,7 +13247,7 @@ void PythonQtShell_QGraphicsOpacityEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13269,7 +13269,7 @@ bool PythonQtShell_QGraphicsOpacityEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13302,7 +13302,7 @@ bool PythonQtShell_QGraphicsOpacityEffect::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13335,7 +13335,7 @@ void PythonQtShell_QGraphicsOpacityEffect::sourceChanged(QGraphicsEffect::Change if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -13357,7 +13357,7 @@ void PythonQtShell_QGraphicsOpacityEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13412,7 +13412,7 @@ QRectF PythonQtShell_QGraphicsPathItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -13445,7 +13445,7 @@ bool PythonQtShell_QGraphicsPathItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -13478,7 +13478,7 @@ QVariant PythonQtShell_QGraphicsPathItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -13511,7 +13511,7 @@ bool PythonQtShell_QGraphicsPathItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -13544,7 +13544,7 @@ QPainterPath PythonQtShell_QGraphicsPathItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13577,7 +13577,7 @@ void PythonQtShell_QGraphicsPathItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -13599,7 +13599,7 @@ void PythonQtShell_QGraphicsPathItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -13621,7 +13621,7 @@ QPainterPath PythonQtShell_QGraphicsPathItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13654,7 +13654,7 @@ bool PythonQtShell_QGraphicsPathItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -13687,7 +13687,7 @@ int PythonQtShell_QGraphicsPathItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp index 0060a648c..c2bc10bd5 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp @@ -89,7 +89,7 @@ void PythonQtShell_QGraphicsPixmapItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -111,7 +111,7 @@ QRectF PythonQtShell_QGraphicsPixmapItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -144,7 +144,7 @@ bool PythonQtShell_QGraphicsPixmapItem::collidesWithItem(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -177,7 +177,7 @@ bool PythonQtShell_QGraphicsPixmapItem::collidesWithPath(const QPainterPath& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -210,7 +210,7 @@ bool PythonQtShell_QGraphicsPixmapItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -243,7 +243,7 @@ void PythonQtShell_QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -265,7 +265,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -287,7 +287,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -309,7 +309,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -331,7 +331,7 @@ void PythonQtShell_QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -353,7 +353,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::extension(const QVariant& variant0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -386,7 +386,7 @@ void PythonQtShell_QGraphicsPixmapItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -408,7 +408,7 @@ void PythonQtShell_QGraphicsPixmapItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -430,7 +430,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -452,7 +452,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -474,7 +474,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -496,7 +496,7 @@ void PythonQtShell_QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -518,7 +518,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -551,7 +551,7 @@ bool PythonQtShell_QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem* item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -584,7 +584,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::itemChange(QGraphicsItem::GraphicsI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -620,7 +620,7 @@ void PythonQtShell_QGraphicsPixmapItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -642,7 +642,7 @@ void PythonQtShell_QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -664,7 +664,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -686,7 +686,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -708,7 +708,7 @@ void PythonQtShell_QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -730,7 +730,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -752,7 +752,7 @@ QPainterPath PythonQtShell_QGraphicsPixmapItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -785,7 +785,7 @@ void PythonQtShell_QGraphicsPixmapItem::paint(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -807,7 +807,7 @@ bool PythonQtShell_QGraphicsPixmapItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -840,7 +840,7 @@ bool PythonQtShell_QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem* watche if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -873,7 +873,7 @@ void PythonQtShell_QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -895,7 +895,7 @@ QPainterPath PythonQtShell_QGraphicsPixmapItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -928,7 +928,7 @@ bool PythonQtShell_QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extens if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -961,7 +961,7 @@ int PythonQtShell_QGraphicsPixmapItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -994,7 +994,7 @@ void PythonQtShell_QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1075,7 +1075,7 @@ QRectF PythonQtShell_QGraphicsPolygonItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1108,7 +1108,7 @@ bool PythonQtShell_QGraphicsPolygonItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1141,7 +1141,7 @@ QVariant PythonQtShell_QGraphicsPolygonItem::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1174,7 +1174,7 @@ bool PythonQtShell_QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1207,7 +1207,7 @@ QPainterPath PythonQtShell_QGraphicsPolygonItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1240,7 +1240,7 @@ void PythonQtShell_QGraphicsPolygonItem::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1262,7 +1262,7 @@ void PythonQtShell_QGraphicsPolygonItem::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -1284,7 +1284,7 @@ QPainterPath PythonQtShell_QGraphicsPolygonItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1317,7 +1317,7 @@ bool PythonQtShell_QGraphicsPolygonItem::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -1350,7 +1350,7 @@ int PythonQtShell_QGraphicsPolygonItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1457,7 +1457,7 @@ QRectF PythonQtShell_QGraphicsProxyWidget::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1490,7 +1490,7 @@ void PythonQtShell_QGraphicsProxyWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1512,7 +1512,7 @@ void PythonQtShell_QGraphicsProxyWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1534,7 +1534,7 @@ void PythonQtShell_QGraphicsProxyWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1556,7 +1556,7 @@ void PythonQtShell_QGraphicsProxyWidget::contextMenuEvent(QGraphicsSceneContextM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1578,7 +1578,7 @@ void PythonQtShell_QGraphicsProxyWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1600,7 +1600,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragEnterEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1622,7 +1622,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragLeaveEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1644,7 +1644,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragMoveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1666,7 +1666,7 @@ void PythonQtShell_QGraphicsProxyWidget::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1688,7 +1688,7 @@ bool PythonQtShell_QGraphicsProxyWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1721,7 +1721,7 @@ bool PythonQtShell_QGraphicsProxyWidget::eventFilter(QObject* object0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1754,7 +1754,7 @@ void PythonQtShell_QGraphicsProxyWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1776,7 +1776,7 @@ bool PythonQtShell_QGraphicsProxyWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1809,7 +1809,7 @@ void PythonQtShell_QGraphicsProxyWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1831,7 +1831,7 @@ void PythonQtShell_QGraphicsProxyWidget::getContentsMargins(qreal* left0, qreal if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -1853,7 +1853,7 @@ void PythonQtShell_QGraphicsProxyWidget::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1875,7 +1875,7 @@ void PythonQtShell_QGraphicsProxyWidget::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1897,7 +1897,7 @@ void PythonQtShell_QGraphicsProxyWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1919,7 +1919,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverEnterEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1941,7 +1941,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverLeaveEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1963,7 +1963,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverMoveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1985,7 +1985,7 @@ void PythonQtShell_QGraphicsProxyWidget::initStyleOption(QStyleOption* option0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -2007,7 +2007,7 @@ void PythonQtShell_QGraphicsProxyWidget::inputMethodEvent(QInputMethodEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2029,7 +2029,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2062,7 +2062,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::itemChange(QGraphicsItem::Graphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -2098,7 +2098,7 @@ void PythonQtShell_QGraphicsProxyWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2120,7 +2120,7 @@ void PythonQtShell_QGraphicsProxyWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2142,7 +2142,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseDoubleClickEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2164,7 +2164,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseMoveEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2186,7 +2186,7 @@ void PythonQtShell_QGraphicsProxyWidget::mousePressEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2208,7 +2208,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseReleaseEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2230,7 +2230,7 @@ void PythonQtShell_QGraphicsProxyWidget::moveEvent(QGraphicsSceneMoveEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -2252,7 +2252,7 @@ void PythonQtShell_QGraphicsProxyWidget::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2274,7 +2274,7 @@ void PythonQtShell_QGraphicsProxyWidget::paintWindowFrame(QPainter* painter0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2296,7 +2296,7 @@ void PythonQtShell_QGraphicsProxyWidget::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2318,7 +2318,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::propertyChange(const QString& pro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -2351,7 +2351,7 @@ void PythonQtShell_QGraphicsProxyWidget::resizeEvent(QGraphicsSceneResizeEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -2373,7 +2373,7 @@ bool PythonQtShell_QGraphicsProxyWidget::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2406,7 +2406,7 @@ void PythonQtShell_QGraphicsProxyWidget::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -2428,7 +2428,7 @@ QPainterPath PythonQtShell_QGraphicsProxyWidget::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2461,7 +2461,7 @@ void PythonQtShell_QGraphicsProxyWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2483,7 +2483,7 @@ QSizeF PythonQtShell_QGraphicsProxyWidget::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -2516,7 +2516,7 @@ void PythonQtShell_QGraphicsProxyWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2538,7 +2538,7 @@ int PythonQtShell_QGraphicsProxyWidget::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2571,7 +2571,7 @@ void PythonQtShell_QGraphicsProxyWidget::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2593,7 +2593,7 @@ void PythonQtShell_QGraphicsProxyWidget::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2615,7 +2615,7 @@ void PythonQtShell_QGraphicsProxyWidget::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2637,7 +2637,7 @@ void PythonQtShell_QGraphicsProxyWidget::wheelEvent(QGraphicsSceneWheelEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2659,7 +2659,7 @@ bool PythonQtShell_QGraphicsProxyWidget::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2692,7 +2692,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsProxyWidget::windowFrameSectionAt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2843,7 +2843,7 @@ QRectF PythonQtShell_QGraphicsRectItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2876,7 +2876,7 @@ bool PythonQtShell_QGraphicsRectItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -2909,7 +2909,7 @@ QVariant PythonQtShell_QGraphicsRectItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -2942,7 +2942,7 @@ bool PythonQtShell_QGraphicsRectItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -2975,7 +2975,7 @@ QPainterPath PythonQtShell_QGraphicsRectItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3008,7 +3008,7 @@ void PythonQtShell_QGraphicsRectItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -3030,7 +3030,7 @@ void PythonQtShell_QGraphicsRectItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -3052,7 +3052,7 @@ QPainterPath PythonQtShell_QGraphicsRectItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3085,7 +3085,7 @@ bool PythonQtShell_QGraphicsRectItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -3118,7 +3118,7 @@ int PythonQtShell_QGraphicsRectItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3224,7 +3224,7 @@ void PythonQtShell_QGraphicsRotation::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -3246,7 +3246,7 @@ void PythonQtShell_QGraphicsRotation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3268,7 +3268,7 @@ void PythonQtShell_QGraphicsRotation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3290,7 +3290,7 @@ bool PythonQtShell_QGraphicsRotation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3323,7 +3323,7 @@ bool PythonQtShell_QGraphicsRotation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3356,7 +3356,7 @@ void PythonQtShell_QGraphicsRotation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3436,7 +3436,7 @@ void PythonQtShell_QGraphicsScale::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -3458,7 +3458,7 @@ void PythonQtShell_QGraphicsScale::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3480,7 +3480,7 @@ void PythonQtShell_QGraphicsScale::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3502,7 +3502,7 @@ bool PythonQtShell_QGraphicsScale::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3535,7 +3535,7 @@ bool PythonQtShell_QGraphicsScale::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3568,7 +3568,7 @@ void PythonQtShell_QGraphicsScale::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3653,7 +3653,7 @@ void PythonQtShell_QGraphicsScene::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3675,7 +3675,7 @@ void PythonQtShell_QGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -3697,7 +3697,7 @@ void PythonQtShell_QGraphicsScene::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3719,7 +3719,7 @@ void PythonQtShell_QGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3741,7 +3741,7 @@ void PythonQtShell_QGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3763,7 +3763,7 @@ void PythonQtShell_QGraphicsScene::dragMoveEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3785,7 +3785,7 @@ void PythonQtShell_QGraphicsScene::drawBackground(QPainter* painter0, const QRe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -3807,7 +3807,7 @@ void PythonQtShell_QGraphicsScene::drawForeground(QPainter* painter0, const QRe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -3829,7 +3829,7 @@ void PythonQtShell_QGraphicsScene::drawItems(QPainter* painter0, int numItems1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -3851,7 +3851,7 @@ void PythonQtShell_QGraphicsScene::dropEvent(QGraphicsSceneDragDropEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3873,7 +3873,7 @@ bool PythonQtShell_QGraphicsScene::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3906,7 +3906,7 @@ bool PythonQtShell_QGraphicsScene::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3939,7 +3939,7 @@ void PythonQtShell_QGraphicsScene::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3961,7 +3961,7 @@ void PythonQtShell_QGraphicsScene::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3983,7 +3983,7 @@ void PythonQtShell_QGraphicsScene::helpEvent(QGraphicsSceneHelpEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHelpEvent*"}; @@ -4005,7 +4005,7 @@ void PythonQtShell_QGraphicsScene::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4027,7 +4027,7 @@ QVariant PythonQtShell_QGraphicsScene::inputMethodQuery(Qt::InputMethodQuery q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4060,7 +4060,7 @@ void PythonQtShell_QGraphicsScene::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4082,7 +4082,7 @@ void PythonQtShell_QGraphicsScene::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4104,7 +4104,7 @@ void PythonQtShell_QGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4126,7 +4126,7 @@ void PythonQtShell_QGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4148,7 +4148,7 @@ void PythonQtShell_QGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4170,7 +4170,7 @@ void PythonQtShell_QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4192,7 +4192,7 @@ void PythonQtShell_QGraphicsScene::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4214,7 +4214,7 @@ void PythonQtShell_QGraphicsScene::wheelEvent(QGraphicsSceneWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -5271,7 +5271,7 @@ QRectF PythonQtShell_QGraphicsSimpleTextItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5304,7 +5304,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::contains(const QPointF& point0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5337,7 +5337,7 @@ QVariant PythonQtShell_QGraphicsSimpleTextItem::extension(const QVariant& vari if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -5370,7 +5370,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5403,7 +5403,7 @@ QPainterPath PythonQtShell_QGraphicsSimpleTextItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5436,7 +5436,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::paint(QPainter* painter0, const QSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -5458,7 +5458,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::setExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -5480,7 +5480,7 @@ QPainterPath PythonQtShell_QGraphicsSimpleTextItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5513,7 +5513,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::supportsExtension(QGraphicsItem::Ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -5546,7 +5546,7 @@ int PythonQtShell_QGraphicsSimpleTextItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5653,7 +5653,7 @@ QRectF PythonQtShell_QGraphicsTextItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5686,7 +5686,7 @@ void PythonQtShell_QGraphicsTextItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5708,7 +5708,7 @@ bool PythonQtShell_QGraphicsTextItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5741,7 +5741,7 @@ void PythonQtShell_QGraphicsTextItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -5763,7 +5763,7 @@ void PythonQtShell_QGraphicsTextItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5785,7 +5785,7 @@ void PythonQtShell_QGraphicsTextItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5807,7 +5807,7 @@ void PythonQtShell_QGraphicsTextItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5829,7 +5829,7 @@ void PythonQtShell_QGraphicsTextItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5851,7 +5851,7 @@ void PythonQtShell_QGraphicsTextItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5873,7 +5873,7 @@ bool PythonQtShell_QGraphicsTextItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5906,7 +5906,7 @@ bool PythonQtShell_QGraphicsTextItem::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5939,7 +5939,7 @@ QVariant PythonQtShell_QGraphicsTextItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -5972,7 +5972,7 @@ void PythonQtShell_QGraphicsTextItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5994,7 +5994,7 @@ void PythonQtShell_QGraphicsTextItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6016,7 +6016,7 @@ void PythonQtShell_QGraphicsTextItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6038,7 +6038,7 @@ void PythonQtShell_QGraphicsTextItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6060,7 +6060,7 @@ void PythonQtShell_QGraphicsTextItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6082,7 +6082,7 @@ void PythonQtShell_QGraphicsTextItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6104,7 +6104,7 @@ QVariant PythonQtShell_QGraphicsTextItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6137,7 +6137,7 @@ bool PythonQtShell_QGraphicsTextItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6170,7 +6170,7 @@ void PythonQtShell_QGraphicsTextItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6192,7 +6192,7 @@ void PythonQtShell_QGraphicsTextItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6214,7 +6214,7 @@ void PythonQtShell_QGraphicsTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6236,7 +6236,7 @@ void PythonQtShell_QGraphicsTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6258,7 +6258,7 @@ void PythonQtShell_QGraphicsTextItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6280,7 +6280,7 @@ void PythonQtShell_QGraphicsTextItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6302,7 +6302,7 @@ QPainterPath PythonQtShell_QGraphicsTextItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6335,7 +6335,7 @@ void PythonQtShell_QGraphicsTextItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6357,7 +6357,7 @@ bool PythonQtShell_QGraphicsTextItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6390,7 +6390,7 @@ void PythonQtShell_QGraphicsTextItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6412,7 +6412,7 @@ QPainterPath PythonQtShell_QGraphicsTextItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6445,7 +6445,7 @@ bool PythonQtShell_QGraphicsTextItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6478,7 +6478,7 @@ void PythonQtShell_QGraphicsTextItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6500,7 +6500,7 @@ int PythonQtShell_QGraphicsTextItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6810,7 +6810,7 @@ void PythonQtShell_QGraphicsTransform::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -6832,7 +6832,7 @@ void PythonQtShell_QGraphicsTransform::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6854,7 +6854,7 @@ void PythonQtShell_QGraphicsTransform::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6876,7 +6876,7 @@ bool PythonQtShell_QGraphicsTransform::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6909,7 +6909,7 @@ bool PythonQtShell_QGraphicsTransform::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6942,7 +6942,7 @@ void PythonQtShell_QGraphicsTransform::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6992,7 +6992,7 @@ void PythonQtShell_QGraphicsView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7014,7 +7014,7 @@ void PythonQtShell_QGraphicsView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7036,7 +7036,7 @@ void PythonQtShell_QGraphicsView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7058,7 +7058,7 @@ void PythonQtShell_QGraphicsView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7080,7 +7080,7 @@ void PythonQtShell_QGraphicsView::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7102,7 +7102,7 @@ void PythonQtShell_QGraphicsView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7124,7 +7124,7 @@ int PythonQtShell_QGraphicsView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7157,7 +7157,7 @@ void PythonQtShell_QGraphicsView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7179,7 +7179,7 @@ void PythonQtShell_QGraphicsView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7201,7 +7201,7 @@ void PythonQtShell_QGraphicsView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7223,7 +7223,7 @@ void PythonQtShell_QGraphicsView::drawBackground(QPainter* painter0, const QRec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -7245,7 +7245,7 @@ void PythonQtShell_QGraphicsView::drawForeground(QPainter* painter0, const QRec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -7267,7 +7267,7 @@ void PythonQtShell_QGraphicsView::drawItems(QPainter* painter0, int numItems1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*"}; @@ -7289,7 +7289,7 @@ void PythonQtShell_QGraphicsView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7311,7 +7311,7 @@ void PythonQtShell_QGraphicsView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7333,7 +7333,7 @@ bool PythonQtShell_QGraphicsView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7366,7 +7366,7 @@ bool PythonQtShell_QGraphicsView::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7399,7 +7399,7 @@ void PythonQtShell_QGraphicsView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7421,7 +7421,7 @@ bool PythonQtShell_QGraphicsView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7454,7 +7454,7 @@ void PythonQtShell_QGraphicsView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7476,7 +7476,7 @@ bool PythonQtShell_QGraphicsView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7509,7 +7509,7 @@ int PythonQtShell_QGraphicsView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7542,7 +7542,7 @@ void PythonQtShell_QGraphicsView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7564,7 +7564,7 @@ void PythonQtShell_QGraphicsView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7586,7 +7586,7 @@ void PythonQtShell_QGraphicsView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7608,7 +7608,7 @@ QVariant PythonQtShell_QGraphicsView::inputMethodQuery(Qt::InputMethodQuery qu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7641,7 +7641,7 @@ void PythonQtShell_QGraphicsView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7663,7 +7663,7 @@ void PythonQtShell_QGraphicsView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7685,7 +7685,7 @@ void PythonQtShell_QGraphicsView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7707,7 +7707,7 @@ int PythonQtShell_QGraphicsView::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7740,7 +7740,7 @@ QSize PythonQtShell_QGraphicsView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7773,7 +7773,7 @@ void PythonQtShell_QGraphicsView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7795,7 +7795,7 @@ void PythonQtShell_QGraphicsView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7817,7 +7817,7 @@ void PythonQtShell_QGraphicsView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7839,7 +7839,7 @@ void PythonQtShell_QGraphicsView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7861,7 +7861,7 @@ void PythonQtShell_QGraphicsView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7883,7 +7883,7 @@ bool PythonQtShell_QGraphicsView::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7916,7 +7916,7 @@ QPaintEngine* PythonQtShell_QGraphicsView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7949,7 +7949,7 @@ void PythonQtShell_QGraphicsView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7971,7 +7971,7 @@ QPaintDevice* PythonQtShell_QGraphicsView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8004,7 +8004,7 @@ void PythonQtShell_QGraphicsView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8026,7 +8026,7 @@ void PythonQtShell_QGraphicsView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8048,7 +8048,7 @@ void PythonQtShell_QGraphicsView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8070,7 +8070,7 @@ void PythonQtShell_QGraphicsView::setupViewport(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8092,7 +8092,7 @@ QPainter* PythonQtShell_QGraphicsView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8125,7 +8125,7 @@ void PythonQtShell_QGraphicsView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8147,7 +8147,7 @@ QSize PythonQtShell_QGraphicsView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8180,7 +8180,7 @@ void PythonQtShell_QGraphicsView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8202,7 +8202,7 @@ void PythonQtShell_QGraphicsView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8224,7 +8224,7 @@ bool PythonQtShell_QGraphicsView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8257,7 +8257,7 @@ QSize PythonQtShell_QGraphicsView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8290,7 +8290,7 @@ void PythonQtShell_QGraphicsView::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8734,7 +8734,7 @@ QRectF PythonQtShell_QGraphicsWidget::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -8767,7 +8767,7 @@ void PythonQtShell_QGraphicsWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8789,7 +8789,7 @@ void PythonQtShell_QGraphicsWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8811,7 +8811,7 @@ void PythonQtShell_QGraphicsWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8833,7 +8833,7 @@ void PythonQtShell_QGraphicsWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8855,7 +8855,7 @@ bool PythonQtShell_QGraphicsWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8888,7 +8888,7 @@ bool PythonQtShell_QGraphicsWidget::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8921,7 +8921,7 @@ void PythonQtShell_QGraphicsWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8943,7 +8943,7 @@ bool PythonQtShell_QGraphicsWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8976,7 +8976,7 @@ void PythonQtShell_QGraphicsWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8998,7 +8998,7 @@ void PythonQtShell_QGraphicsWidget::getContentsMargins(qreal* left0, qreal* to if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -9020,7 +9020,7 @@ void PythonQtShell_QGraphicsWidget::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9042,7 +9042,7 @@ void PythonQtShell_QGraphicsWidget::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9064,7 +9064,7 @@ void PythonQtShell_QGraphicsWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9086,7 +9086,7 @@ void PythonQtShell_QGraphicsWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9108,7 +9108,7 @@ void PythonQtShell_QGraphicsWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9130,7 +9130,7 @@ void PythonQtShell_QGraphicsWidget::initStyleOption(QStyleOption* option0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -9152,7 +9152,7 @@ QVariant PythonQtShell_QGraphicsWidget::itemChange(QGraphicsItem::GraphicsItemC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9188,7 +9188,7 @@ void PythonQtShell_QGraphicsWidget::moveEvent(QGraphicsSceneMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -9210,7 +9210,7 @@ void PythonQtShell_QGraphicsWidget::paint(QPainter* painter0, const QStyleOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9232,7 +9232,7 @@ void PythonQtShell_QGraphicsWidget::paintWindowFrame(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9254,7 +9254,7 @@ void PythonQtShell_QGraphicsWidget::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9276,7 +9276,7 @@ QVariant PythonQtShell_QGraphicsWidget::propertyChange(const QString& property if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -9309,7 +9309,7 @@ void PythonQtShell_QGraphicsWidget::resizeEvent(QGraphicsSceneResizeEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -9331,7 +9331,7 @@ bool PythonQtShell_QGraphicsWidget::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9364,7 +9364,7 @@ void PythonQtShell_QGraphicsWidget::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9386,7 +9386,7 @@ QPainterPath PythonQtShell_QGraphicsWidget::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9419,7 +9419,7 @@ void PythonQtShell_QGraphicsWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9441,7 +9441,7 @@ QSizeF PythonQtShell_QGraphicsWidget::sizeHint(Qt::SizeHint which0, const QSiz if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9474,7 +9474,7 @@ void PythonQtShell_QGraphicsWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9496,7 +9496,7 @@ int PythonQtShell_QGraphicsWidget::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9529,7 +9529,7 @@ void PythonQtShell_QGraphicsWidget::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9551,7 +9551,7 @@ void PythonQtShell_QGraphicsWidget::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9573,7 +9573,7 @@ void PythonQtShell_QGraphicsWidget::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9595,7 +9595,7 @@ bool PythonQtShell_QGraphicsWidget::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9628,7 +9628,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsWidget::windowFrameSectionAt(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -10054,7 +10054,7 @@ void PythonQtShell_QGridLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -10076,7 +10076,7 @@ void PythonQtShell_QGridLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10098,7 +10098,7 @@ QSizePolicy::ControlTypes PythonQtShell_QGridLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10131,7 +10131,7 @@ int PythonQtShell_QGridLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10164,7 +10164,7 @@ void PythonQtShell_QGridLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10186,7 +10186,7 @@ bool PythonQtShell_QGridLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10219,7 +10219,7 @@ bool PythonQtShell_QGridLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10252,7 +10252,7 @@ Qt::Orientations PythonQtShell_QGridLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10285,7 +10285,7 @@ QRect PythonQtShell_QGridLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10318,7 +10318,7 @@ bool PythonQtShell_QGridLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10351,7 +10351,7 @@ int PythonQtShell_QGridLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10384,7 +10384,7 @@ int PythonQtShell_QGridLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -10417,7 +10417,7 @@ void PythonQtShell_QGridLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10439,7 +10439,7 @@ bool PythonQtShell_QGridLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10472,7 +10472,7 @@ QLayoutItem* PythonQtShell_QGridLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10505,7 +10505,7 @@ QLayout* PythonQtShell_QGridLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10538,7 +10538,7 @@ QSize PythonQtShell_QGridLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10571,7 +10571,7 @@ int PythonQtShell_QGridLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10604,7 +10604,7 @@ QSize PythonQtShell_QGridLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10637,7 +10637,7 @@ void PythonQtShell_QGridLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10659,7 +10659,7 @@ QSize PythonQtShell_QGridLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10692,7 +10692,7 @@ QLayoutItem* PythonQtShell_QGridLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10725,7 +10725,7 @@ void PythonQtShell_QGridLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10924,7 +10924,7 @@ void PythonQtShell_QGroupBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10946,7 +10946,7 @@ void PythonQtShell_QGroupBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10968,7 +10968,7 @@ void PythonQtShell_QGroupBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10990,7 +10990,7 @@ void PythonQtShell_QGroupBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11012,7 +11012,7 @@ void PythonQtShell_QGroupBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11034,7 +11034,7 @@ void PythonQtShell_QGroupBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11056,7 +11056,7 @@ int PythonQtShell_QGroupBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11089,7 +11089,7 @@ void PythonQtShell_QGroupBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11111,7 +11111,7 @@ void PythonQtShell_QGroupBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11133,7 +11133,7 @@ void PythonQtShell_QGroupBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11155,7 +11155,7 @@ void PythonQtShell_QGroupBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11177,7 +11177,7 @@ void PythonQtShell_QGroupBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11199,7 +11199,7 @@ bool PythonQtShell_QGroupBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11232,7 +11232,7 @@ bool PythonQtShell_QGroupBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11265,7 +11265,7 @@ void PythonQtShell_QGroupBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11287,7 +11287,7 @@ bool PythonQtShell_QGroupBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11320,7 +11320,7 @@ void PythonQtShell_QGroupBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11342,7 +11342,7 @@ bool PythonQtShell_QGroupBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11375,7 +11375,7 @@ int PythonQtShell_QGroupBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11408,7 +11408,7 @@ void PythonQtShell_QGroupBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11430,7 +11430,7 @@ void PythonQtShell_QGroupBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11452,7 +11452,7 @@ void PythonQtShell_QGroupBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11474,7 +11474,7 @@ QVariant PythonQtShell_QGroupBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11507,7 +11507,7 @@ void PythonQtShell_QGroupBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11529,7 +11529,7 @@ void PythonQtShell_QGroupBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11551,7 +11551,7 @@ void PythonQtShell_QGroupBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11573,7 +11573,7 @@ int PythonQtShell_QGroupBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11606,7 +11606,7 @@ QSize PythonQtShell_QGroupBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11639,7 +11639,7 @@ void PythonQtShell_QGroupBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11661,7 +11661,7 @@ void PythonQtShell_QGroupBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11683,7 +11683,7 @@ void PythonQtShell_QGroupBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11705,7 +11705,7 @@ void PythonQtShell_QGroupBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11727,7 +11727,7 @@ void PythonQtShell_QGroupBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11749,7 +11749,7 @@ bool PythonQtShell_QGroupBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11782,7 +11782,7 @@ QPaintEngine* PythonQtShell_QGroupBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11815,7 +11815,7 @@ void PythonQtShell_QGroupBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11837,7 +11837,7 @@ QPaintDevice* PythonQtShell_QGroupBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11870,7 +11870,7 @@ void PythonQtShell_QGroupBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11892,7 +11892,7 @@ void PythonQtShell_QGroupBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11914,7 +11914,7 @@ QPainter* PythonQtShell_QGroupBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11947,7 +11947,7 @@ void PythonQtShell_QGroupBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11969,7 +11969,7 @@ QSize PythonQtShell_QGroupBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12002,7 +12002,7 @@ void PythonQtShell_QGroupBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12024,7 +12024,7 @@ void PythonQtShell_QGroupBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12046,7 +12046,7 @@ void PythonQtShell_QGroupBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12392,7 +12392,7 @@ void PythonQtShell_QHBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -12414,7 +12414,7 @@ void PythonQtShell_QHBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12436,7 +12436,7 @@ QSizePolicy::ControlTypes PythonQtShell_QHBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -12469,7 +12469,7 @@ int PythonQtShell_QHBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12502,7 +12502,7 @@ void PythonQtShell_QHBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12524,7 +12524,7 @@ bool PythonQtShell_QHBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12557,7 +12557,7 @@ bool PythonQtShell_QHBoxLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12590,7 +12590,7 @@ Qt::Orientations PythonQtShell_QHBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -12623,7 +12623,7 @@ QRect PythonQtShell_QHBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -12656,7 +12656,7 @@ bool PythonQtShell_QHBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12689,7 +12689,7 @@ int PythonQtShell_QHBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12722,7 +12722,7 @@ int PythonQtShell_QHBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -12755,7 +12755,7 @@ void PythonQtShell_QHBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12777,7 +12777,7 @@ bool PythonQtShell_QHBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12810,7 +12810,7 @@ QLayoutItem* PythonQtShell_QHBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -12843,7 +12843,7 @@ QLayout* PythonQtShell_QHBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -12876,7 +12876,7 @@ QSize PythonQtShell_QHBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12909,7 +12909,7 @@ int PythonQtShell_QHBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12942,7 +12942,7 @@ QSize PythonQtShell_QHBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12975,7 +12975,7 @@ void PythonQtShell_QHBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -12997,7 +12997,7 @@ QSize PythonQtShell_QHBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13030,7 +13030,7 @@ QLayoutItem* PythonQtShell_QHBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13063,7 +13063,7 @@ void PythonQtShell_QHBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13112,7 +13112,7 @@ void PythonQtShell_QHeaderView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13134,7 +13134,7 @@ void PythonQtShell_QHeaderView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13156,7 +13156,7 @@ void PythonQtShell_QHeaderView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13178,7 +13178,7 @@ void PythonQtShell_QHeaderView::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -13200,7 +13200,7 @@ void PythonQtShell_QHeaderView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13222,7 +13222,7 @@ void PythonQtShell_QHeaderView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13244,7 +13244,7 @@ void PythonQtShell_QHeaderView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13266,7 +13266,7 @@ void PythonQtShell_QHeaderView::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -13288,7 +13288,7 @@ void PythonQtShell_QHeaderView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13310,7 +13310,7 @@ void PythonQtShell_QHeaderView::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -13332,7 +13332,7 @@ int PythonQtShell_QHeaderView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13365,7 +13365,7 @@ void PythonQtShell_QHeaderView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13387,7 +13387,7 @@ void PythonQtShell_QHeaderView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13409,7 +13409,7 @@ void PythonQtShell_QHeaderView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13431,7 +13431,7 @@ void PythonQtShell_QHeaderView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13453,7 +13453,7 @@ void PythonQtShell_QHeaderView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13475,7 +13475,7 @@ bool PythonQtShell_QHeaderView::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -13508,7 +13508,7 @@ void PythonQtShell_QHeaderView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -13530,7 +13530,7 @@ void PythonQtShell_QHeaderView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13552,7 +13552,7 @@ bool PythonQtShell_QHeaderView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13585,7 +13585,7 @@ bool PythonQtShell_QHeaderView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13618,7 +13618,7 @@ void PythonQtShell_QHeaderView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13640,7 +13640,7 @@ bool PythonQtShell_QHeaderView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13673,7 +13673,7 @@ void PythonQtShell_QHeaderView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13695,7 +13695,7 @@ bool PythonQtShell_QHeaderView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13728,7 +13728,7 @@ int PythonQtShell_QHeaderView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13761,7 +13761,7 @@ void PythonQtShell_QHeaderView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13783,7 +13783,7 @@ int PythonQtShell_QHeaderView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13816,7 +13816,7 @@ void PythonQtShell_QHeaderView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13838,7 +13838,7 @@ void PythonQtShell_QHeaderView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13860,7 +13860,7 @@ QModelIndex PythonQtShell_QHeaderView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -13893,7 +13893,7 @@ void PythonQtShell_QHeaderView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13915,7 +13915,7 @@ void PythonQtShell_QHeaderView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13937,7 +13937,7 @@ QVariant PythonQtShell_QHeaderView::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13970,7 +13970,7 @@ bool PythonQtShell_QHeaderView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14003,7 +14003,7 @@ void PythonQtShell_QHeaderView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14025,7 +14025,7 @@ void PythonQtShell_QHeaderView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14047,7 +14047,7 @@ void PythonQtShell_QHeaderView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -14069,7 +14069,7 @@ void PythonQtShell_QHeaderView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14091,7 +14091,7 @@ int PythonQtShell_QHeaderView::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14124,7 +14124,7 @@ QSize PythonQtShell_QHeaderView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14157,7 +14157,7 @@ void PythonQtShell_QHeaderView::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14179,7 +14179,7 @@ void PythonQtShell_QHeaderView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14201,7 +14201,7 @@ void PythonQtShell_QHeaderView::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14223,7 +14223,7 @@ void PythonQtShell_QHeaderView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14245,7 +14245,7 @@ QModelIndex PythonQtShell_QHeaderView::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -14278,7 +14278,7 @@ void PythonQtShell_QHeaderView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14300,7 +14300,7 @@ bool PythonQtShell_QHeaderView::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14333,7 +14333,7 @@ QPaintEngine* PythonQtShell_QHeaderView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14366,7 +14366,7 @@ void PythonQtShell_QHeaderView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14388,7 +14388,7 @@ void PythonQtShell_QHeaderView::paintSection(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintSection"); + static PyObject* name = PyUnicode_FromString("paintSection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int"}; @@ -14410,7 +14410,7 @@ QPaintDevice* PythonQtShell_QHeaderView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14443,7 +14443,7 @@ void PythonQtShell_QHeaderView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14465,7 +14465,7 @@ void PythonQtShell_QHeaderView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14487,7 +14487,7 @@ void PythonQtShell_QHeaderView::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -14509,7 +14509,7 @@ void PythonQtShell_QHeaderView::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -14531,7 +14531,7 @@ void PythonQtShell_QHeaderView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -14553,7 +14553,7 @@ void PythonQtShell_QHeaderView::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -14575,7 +14575,7 @@ QSize PythonQtShell_QHeaderView::sectionSizeFromContents(int logicalIndex0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sectionSizeFromContents"); + static PyObject* name = PyUnicode_FromString("sectionSizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -14608,7 +14608,7 @@ void PythonQtShell_QHeaderView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14630,7 +14630,7 @@ QList PythonQtShell_QHeaderView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -14663,7 +14663,7 @@ void PythonQtShell_QHeaderView::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -14685,7 +14685,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QHeaderView::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -14718,7 +14718,7 @@ void PythonQtShell_QHeaderView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -14740,7 +14740,7 @@ void PythonQtShell_QHeaderView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14762,7 +14762,7 @@ void PythonQtShell_QHeaderView::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -14784,7 +14784,7 @@ void PythonQtShell_QHeaderView::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -14806,7 +14806,7 @@ void PythonQtShell_QHeaderView::setVisible(bool v0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14828,7 +14828,7 @@ void PythonQtShell_QHeaderView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14850,7 +14850,7 @@ QPainter* PythonQtShell_QHeaderView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14883,7 +14883,7 @@ void PythonQtShell_QHeaderView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14905,7 +14905,7 @@ QSize PythonQtShell_QHeaderView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14938,7 +14938,7 @@ int PythonQtShell_QHeaderView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14971,7 +14971,7 @@ int PythonQtShell_QHeaderView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15004,7 +15004,7 @@ void PythonQtShell_QHeaderView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -15026,7 +15026,7 @@ void PythonQtShell_QHeaderView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15048,7 +15048,7 @@ void PythonQtShell_QHeaderView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15070,7 +15070,7 @@ void PythonQtShell_QHeaderView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15092,7 +15092,7 @@ void PythonQtShell_QHeaderView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15114,7 +15114,7 @@ void PythonQtShell_QHeaderView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15136,7 +15136,7 @@ int PythonQtShell_QHeaderView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15169,7 +15169,7 @@ void PythonQtShell_QHeaderView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15191,7 +15191,7 @@ void PythonQtShell_QHeaderView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15213,7 +15213,7 @@ QStyleOptionViewItem PythonQtShell_QHeaderView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -15246,7 +15246,7 @@ bool PythonQtShell_QHeaderView::viewportEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15279,7 +15279,7 @@ QSize PythonQtShell_QHeaderView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15312,7 +15312,7 @@ QRect PythonQtShell_QHeaderView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -15345,7 +15345,7 @@ QRegion PythonQtShell_QHeaderView::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -15378,7 +15378,7 @@ void PythonQtShell_QHeaderView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp index 4e24e8c89..c5c50f28d 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp @@ -91,7 +91,7 @@ QSize PythonQtShell_QIconEngine::actualSize(const QSize& size0, QIcon::Mode m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actualSize"); + static PyObject* name = PyUnicode_FromString("actualSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -124,7 +124,7 @@ void PythonQtShell_QIconEngine::addFile(const QString& fileName0, const QSize& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addFile"); + static PyObject* name = PyUnicode_FromString("addFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -146,7 +146,7 @@ void PythonQtShell_QIconEngine::addPixmap(const QPixmap& pixmap0, QIcon::Mode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addPixmap"); + static PyObject* name = PyUnicode_FromString("addPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPixmap&" , "QIcon::Mode" , "QIcon::State"}; @@ -168,7 +168,7 @@ QList PythonQtShell_QIconEngine::availableSizes(QIcon::Mode mode0, QIc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableSizes"); + static PyObject* name = PyUnicode_FromString("availableSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QIcon::Mode" , "QIcon::State"}; @@ -201,7 +201,7 @@ QIconEngine* PythonQtShell_QIconEngine::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIconEngine*"}; @@ -234,7 +234,7 @@ QString PythonQtShell_QIconEngine::iconName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("iconName"); + static PyObject* name = PyUnicode_FromString("iconName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -267,7 +267,7 @@ QString PythonQtShell_QIconEngine::key() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("key"); + static PyObject* name = PyUnicode_FromString("key"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -300,7 +300,7 @@ void PythonQtShell_QIconEngine::paint(QPainter* painter0, const QRect& rect1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "QIcon::Mode" , "QIcon::State"}; @@ -322,7 +322,7 @@ QPixmap PythonQtShell_QIconEngine::pixmap(const QSize& size0, QIcon::Mode mod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixmap"); + static PyObject* name = PyUnicode_FromString("pixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -355,7 +355,7 @@ bool PythonQtShell_QIconEngine::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -388,7 +388,7 @@ void PythonQtShell_QIconEngine::virtual_hook(int id0, void* data1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -410,7 +410,7 @@ bool PythonQtShell_QIconEngine::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -527,7 +527,7 @@ bool PythonQtShell_QImageIOHandler::canRead() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canRead"); + static PyObject* name = PyUnicode_FromString("canRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -560,7 +560,7 @@ int PythonQtShell_QImageIOHandler::currentImageNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentImageNumber"); + static PyObject* name = PyUnicode_FromString("currentImageNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -593,7 +593,7 @@ QRect PythonQtShell_QImageIOHandler::currentImageRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentImageRect"); + static PyObject* name = PyUnicode_FromString("currentImageRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -626,7 +626,7 @@ int PythonQtShell_QImageIOHandler::imageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageCount"); + static PyObject* name = PyUnicode_FromString("imageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -659,7 +659,7 @@ bool PythonQtShell_QImageIOHandler::jumpToImage(int imageNumber0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("jumpToImage"); + static PyObject* name = PyUnicode_FromString("jumpToImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -692,7 +692,7 @@ bool PythonQtShell_QImageIOHandler::jumpToNextImage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("jumpToNextImage"); + static PyObject* name = PyUnicode_FromString("jumpToNextImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -725,7 +725,7 @@ int PythonQtShell_QImageIOHandler::loopCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loopCount"); + static PyObject* name = PyUnicode_FromString("loopCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -758,7 +758,7 @@ int PythonQtShell_QImageIOHandler::nextImageDelay() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextImageDelay"); + static PyObject* name = PyUnicode_FromString("nextImageDelay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -791,7 +791,7 @@ QVariant PythonQtShell_QImageIOHandler::option(QImageIOHandler::ImageOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("option"); + static PyObject* name = PyUnicode_FromString("option"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QImageIOHandler::ImageOption"}; @@ -824,7 +824,7 @@ bool PythonQtShell_QImageIOHandler::read(QImage* image0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImage*"}; @@ -857,7 +857,7 @@ void PythonQtShell_QImageIOHandler::setOption(QImageIOHandler::ImageOption opti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOption"); + static PyObject* name = PyUnicode_FromString("setOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QImageIOHandler::ImageOption" , "const QVariant&"}; @@ -879,7 +879,7 @@ bool PythonQtShell_QImageIOHandler::supportsOption(QImageIOHandler::ImageOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsOption"); + static PyObject* name = PyUnicode_FromString("supportsOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImageIOHandler::ImageOption"}; @@ -912,7 +912,7 @@ bool PythonQtShell_QImageIOHandler::write(const QImage& image0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QImage&"}; @@ -1040,7 +1040,7 @@ QImageIOPlugin::Capabilities PythonQtShell_QImageIOPlugin::capabilities(QIODevi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("capabilities"); + static PyObject* name = PyUnicode_FromString("capabilities"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOPlugin::Capabilities" , "QIODevice*" , "const QByteArray&"}; @@ -1073,7 +1073,7 @@ void PythonQtShell_QImageIOPlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1095,7 +1095,7 @@ QImageIOHandler* PythonQtShell_QImageIOPlugin::create(QIODevice* device0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOHandler*" , "QIODevice*" , "const QByteArray&"}; @@ -1128,7 +1128,7 @@ void PythonQtShell_QImageIOPlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1150,7 +1150,7 @@ bool PythonQtShell_QImageIOPlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1183,7 +1183,7 @@ bool PythonQtShell_QImageIOPlugin::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1216,7 +1216,7 @@ void PythonQtShell_QImageIOPlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1689,7 +1689,7 @@ void PythonQtShell_QInputDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1711,7 +1711,7 @@ void PythonQtShell_QInputDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1733,7 +1733,7 @@ void PythonQtShell_QInputDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1755,7 +1755,7 @@ void PythonQtShell_QInputDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1777,7 +1777,7 @@ void PythonQtShell_QInputDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1799,7 +1799,7 @@ void PythonQtShell_QInputDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1821,7 +1821,7 @@ void PythonQtShell_QInputDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1843,7 +1843,7 @@ int PythonQtShell_QInputDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1876,7 +1876,7 @@ void PythonQtShell_QInputDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1898,7 +1898,7 @@ void PythonQtShell_QInputDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1920,7 +1920,7 @@ void PythonQtShell_QInputDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1942,7 +1942,7 @@ void PythonQtShell_QInputDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1964,7 +1964,7 @@ void PythonQtShell_QInputDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1986,7 +1986,7 @@ void PythonQtShell_QInputDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2008,7 +2008,7 @@ bool PythonQtShell_QInputDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2041,7 +2041,7 @@ bool PythonQtShell_QInputDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2074,7 +2074,7 @@ int PythonQtShell_QInputDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2107,7 +2107,7 @@ void PythonQtShell_QInputDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2129,7 +2129,7 @@ bool PythonQtShell_QInputDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2162,7 +2162,7 @@ void PythonQtShell_QInputDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2184,7 +2184,7 @@ bool PythonQtShell_QInputDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2217,7 +2217,7 @@ int PythonQtShell_QInputDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2250,7 +2250,7 @@ void PythonQtShell_QInputDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2272,7 +2272,7 @@ void PythonQtShell_QInputDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2294,7 +2294,7 @@ void PythonQtShell_QInputDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2316,7 +2316,7 @@ QVariant PythonQtShell_QInputDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2349,7 +2349,7 @@ void PythonQtShell_QInputDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2371,7 +2371,7 @@ void PythonQtShell_QInputDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2393,7 +2393,7 @@ void PythonQtShell_QInputDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2415,7 +2415,7 @@ int PythonQtShell_QInputDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2448,7 +2448,7 @@ QSize PythonQtShell_QInputDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2481,7 +2481,7 @@ void PythonQtShell_QInputDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2503,7 +2503,7 @@ void PythonQtShell_QInputDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2525,7 +2525,7 @@ void PythonQtShell_QInputDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2547,7 +2547,7 @@ void PythonQtShell_QInputDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2569,7 +2569,7 @@ void PythonQtShell_QInputDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2591,7 +2591,7 @@ bool PythonQtShell_QInputDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2624,7 +2624,7 @@ QPaintEngine* PythonQtShell_QInputDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2657,7 +2657,7 @@ void PythonQtShell_QInputDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2679,7 +2679,7 @@ QPaintDevice* PythonQtShell_QInputDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2712,7 +2712,7 @@ void PythonQtShell_QInputDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2734,7 +2734,7 @@ void PythonQtShell_QInputDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2756,7 +2756,7 @@ void PythonQtShell_QInputDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2778,7 +2778,7 @@ QPainter* PythonQtShell_QInputDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2811,7 +2811,7 @@ void PythonQtShell_QInputDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2833,7 +2833,7 @@ QSize PythonQtShell_QInputDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2866,7 +2866,7 @@ void PythonQtShell_QInputDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2888,7 +2888,7 @@ void PythonQtShell_QInputDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2910,7 +2910,7 @@ void PythonQtShell_QInputDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3371,7 +3371,7 @@ void PythonQtShell_QIntValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3393,7 +3393,7 @@ void PythonQtShell_QIntValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3415,7 +3415,7 @@ bool PythonQtShell_QIntValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3448,7 +3448,7 @@ bool PythonQtShell_QIntValidator::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3481,7 +3481,7 @@ void PythonQtShell_QIntValidator::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3503,7 +3503,7 @@ void PythonQtShell_QIntValidator::setRange(int bottom0, int top1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3525,7 +3525,7 @@ void PythonQtShell_QIntValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3547,7 +3547,7 @@ QValidator::State PythonQtShell_QIntValidator::validate(QString& arg__1, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3632,7 +3632,7 @@ void PythonQtShell_QItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3654,7 +3654,7 @@ QWidget* PythonQtShell_QItemDelegate::createEditor(QWidget* parent0, const QSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3687,7 +3687,7 @@ void PythonQtShell_QItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3709,7 +3709,7 @@ void PythonQtShell_QItemDelegate::destroyEditor(QWidget* editor0, const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3731,7 +3731,7 @@ void PythonQtShell_QItemDelegate::drawCheck(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawCheck"); + static PyObject* name = PyUnicode_FromString("drawCheck"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "Qt::CheckState"}; @@ -3753,7 +3753,7 @@ void PythonQtShell_QItemDelegate::drawDecoration(QPainter* painter0, const QSty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawDecoration"); + static PyObject* name = PyUnicode_FromString("drawDecoration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QPixmap&"}; @@ -3775,7 +3775,7 @@ void PythonQtShell_QItemDelegate::drawDisplay(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawDisplay"); + static PyObject* name = PyUnicode_FromString("drawDisplay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QString&"}; @@ -3797,7 +3797,7 @@ void PythonQtShell_QItemDelegate::drawFocus(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawFocus"); + static PyObject* name = PyUnicode_FromString("drawFocus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&"}; @@ -3819,7 +3819,7 @@ bool PythonQtShell_QItemDelegate::editorEvent(QEvent* event0, QAbstractItemMod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3852,7 +3852,7 @@ bool PythonQtShell_QItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3885,7 +3885,7 @@ bool PythonQtShell_QItemDelegate::eventFilter(QObject* object0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3918,7 +3918,7 @@ bool PythonQtShell_QItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3951,7 +3951,7 @@ void PythonQtShell_QItemDelegate::paint(QPainter* painter0, const QStyleOptionV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3973,7 +3973,7 @@ QVector PythonQtShell_QItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -4006,7 +4006,7 @@ void PythonQtShell_QItemDelegate::setEditorData(QWidget* editor0, const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -4028,7 +4028,7 @@ void PythonQtShell_QItemDelegate::setModelData(QWidget* editor0, QAbstractItemM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -4050,7 +4050,7 @@ QSize PythonQtShell_QItemDelegate::sizeHint(const QStyleOptionViewItem& option if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4083,7 +4083,7 @@ void PythonQtShell_QItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4105,7 +4105,7 @@ void PythonQtShell_QItemDelegate::updateEditorGeometry(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4220,7 +4220,7 @@ QWidget* PythonQtShell_QItemEditorCreatorBase::createWidget(QWidget* parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -4253,7 +4253,7 @@ QByteArray PythonQtShell_QItemEditorCreatorBase::valuePropertyName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -4306,7 +4306,7 @@ QWidget* PythonQtShell_QItemEditorFactory::createEditor(int userType0, QWidget if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "int" , "QWidget*"}; @@ -4339,7 +4339,7 @@ QByteArray PythonQtShell_QItemEditorFactory::valuePropertyName(int userType0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "int"}; @@ -4442,7 +4442,7 @@ void PythonQtShell_QItemSelectionModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4464,7 +4464,7 @@ void PythonQtShell_QItemSelectionModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4486,7 +4486,7 @@ void PythonQtShell_QItemSelectionModel::clearCurrentIndex() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clearCurrentIndex"); + static PyObject* name = PyUnicode_FromString("clearCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4508,7 +4508,7 @@ void PythonQtShell_QItemSelectionModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4530,7 +4530,7 @@ bool PythonQtShell_QItemSelectionModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4563,7 +4563,7 @@ bool PythonQtShell_QItemSelectionModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4596,7 +4596,7 @@ void PythonQtShell_QItemSelectionModel::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4618,7 +4618,7 @@ void PythonQtShell_QItemSelectionModel::select(const QItemSelection& selection0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "QItemSelectionModel::SelectionFlags"}; @@ -4640,7 +4640,7 @@ void PythonQtShell_QItemSelectionModel::select(const QModelIndex& index0, QItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4662,7 +4662,7 @@ void PythonQtShell_QItemSelectionModel::setCurrentIndex(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4684,7 +4684,7 @@ void PythonQtShell_QItemSelectionModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5002,7 +5002,7 @@ void PythonQtShell_QKeyEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5024,7 +5024,7 @@ void PythonQtShell_QKeyEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5046,7 +5046,7 @@ bool PythonQtShell_QKeyEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5079,7 +5079,7 @@ bool PythonQtShell_QKeyEventTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5112,7 +5112,7 @@ bool PythonQtShell_QKeyEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5145,7 +5145,7 @@ void PythonQtShell_QKeyEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5167,7 +5167,7 @@ void PythonQtShell_QKeyEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5236,7 +5236,7 @@ void PythonQtShell_QKeySequenceEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5258,7 +5258,7 @@ void PythonQtShell_QKeySequenceEdit::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5280,7 +5280,7 @@ void PythonQtShell_QKeySequenceEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5302,7 +5302,7 @@ void PythonQtShell_QKeySequenceEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5324,7 +5324,7 @@ void PythonQtShell_QKeySequenceEdit::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5346,7 +5346,7 @@ void PythonQtShell_QKeySequenceEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5368,7 +5368,7 @@ int PythonQtShell_QKeySequenceEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5401,7 +5401,7 @@ void PythonQtShell_QKeySequenceEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5423,7 +5423,7 @@ void PythonQtShell_QKeySequenceEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5445,7 +5445,7 @@ void PythonQtShell_QKeySequenceEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5467,7 +5467,7 @@ void PythonQtShell_QKeySequenceEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5489,7 +5489,7 @@ void PythonQtShell_QKeySequenceEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5511,7 +5511,7 @@ bool PythonQtShell_QKeySequenceEdit::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5544,7 +5544,7 @@ bool PythonQtShell_QKeySequenceEdit::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5577,7 +5577,7 @@ void PythonQtShell_QKeySequenceEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5599,7 +5599,7 @@ bool PythonQtShell_QKeySequenceEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5632,7 +5632,7 @@ void PythonQtShell_QKeySequenceEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5654,7 +5654,7 @@ bool PythonQtShell_QKeySequenceEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5687,7 +5687,7 @@ int PythonQtShell_QKeySequenceEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5720,7 +5720,7 @@ void PythonQtShell_QKeySequenceEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5742,7 +5742,7 @@ void PythonQtShell_QKeySequenceEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5764,7 +5764,7 @@ void PythonQtShell_QKeySequenceEdit::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5786,7 +5786,7 @@ QVariant PythonQtShell_QKeySequenceEdit::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5819,7 +5819,7 @@ void PythonQtShell_QKeySequenceEdit::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5841,7 +5841,7 @@ void PythonQtShell_QKeySequenceEdit::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5863,7 +5863,7 @@ void PythonQtShell_QKeySequenceEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5885,7 +5885,7 @@ int PythonQtShell_QKeySequenceEdit::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5918,7 +5918,7 @@ QSize PythonQtShell_QKeySequenceEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5951,7 +5951,7 @@ void PythonQtShell_QKeySequenceEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5973,7 +5973,7 @@ void PythonQtShell_QKeySequenceEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5995,7 +5995,7 @@ void PythonQtShell_QKeySequenceEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QKeySequenceEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6039,7 +6039,7 @@ void PythonQtShell_QKeySequenceEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6061,7 +6061,7 @@ bool PythonQtShell_QKeySequenceEdit::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6094,7 +6094,7 @@ QPaintEngine* PythonQtShell_QKeySequenceEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6127,7 +6127,7 @@ void PythonQtShell_QKeySequenceEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6149,7 +6149,7 @@ QPaintDevice* PythonQtShell_QKeySequenceEdit::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6182,7 +6182,7 @@ void PythonQtShell_QKeySequenceEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6204,7 +6204,7 @@ void PythonQtShell_QKeySequenceEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6226,7 +6226,7 @@ QPainter* PythonQtShell_QKeySequenceEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6259,7 +6259,7 @@ void PythonQtShell_QKeySequenceEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6281,7 +6281,7 @@ QSize PythonQtShell_QKeySequenceEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6314,7 +6314,7 @@ void PythonQtShell_QKeySequenceEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6336,7 +6336,7 @@ void PythonQtShell_QKeySequenceEdit::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6358,7 +6358,7 @@ void PythonQtShell_QKeySequenceEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6412,7 +6412,7 @@ void PythonQtShell_QLCDNumber::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6434,7 +6434,7 @@ void PythonQtShell_QLCDNumber::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6456,7 +6456,7 @@ void PythonQtShell_QLCDNumber::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6478,7 +6478,7 @@ void PythonQtShell_QLCDNumber::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6500,7 +6500,7 @@ void PythonQtShell_QLCDNumber::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6522,7 +6522,7 @@ void PythonQtShell_QLCDNumber::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6544,7 +6544,7 @@ int PythonQtShell_QLCDNumber::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6577,7 +6577,7 @@ void PythonQtShell_QLCDNumber::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6599,7 +6599,7 @@ void PythonQtShell_QLCDNumber::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6621,7 +6621,7 @@ void PythonQtShell_QLCDNumber::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6643,7 +6643,7 @@ void PythonQtShell_QLCDNumber::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6665,7 +6665,7 @@ void PythonQtShell_QLCDNumber::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6687,7 +6687,7 @@ bool PythonQtShell_QLCDNumber::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6720,7 +6720,7 @@ bool PythonQtShell_QLCDNumber::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6753,7 +6753,7 @@ void PythonQtShell_QLCDNumber::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6775,7 +6775,7 @@ bool PythonQtShell_QLCDNumber::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6808,7 +6808,7 @@ void PythonQtShell_QLCDNumber::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6830,7 +6830,7 @@ bool PythonQtShell_QLCDNumber::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6863,7 +6863,7 @@ int PythonQtShell_QLCDNumber::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6896,7 +6896,7 @@ void PythonQtShell_QLCDNumber::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6918,7 +6918,7 @@ void PythonQtShell_QLCDNumber::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6940,7 +6940,7 @@ void PythonQtShell_QLCDNumber::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6962,7 +6962,7 @@ QVariant PythonQtShell_QLCDNumber::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6995,7 +6995,7 @@ void PythonQtShell_QLCDNumber::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7017,7 +7017,7 @@ void PythonQtShell_QLCDNumber::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7039,7 +7039,7 @@ void PythonQtShell_QLCDNumber::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7061,7 +7061,7 @@ int PythonQtShell_QLCDNumber::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7094,7 +7094,7 @@ QSize PythonQtShell_QLCDNumber::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7127,7 +7127,7 @@ void PythonQtShell_QLCDNumber::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7149,7 +7149,7 @@ void PythonQtShell_QLCDNumber::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7171,7 +7171,7 @@ void PythonQtShell_QLCDNumber::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7193,7 +7193,7 @@ void PythonQtShell_QLCDNumber::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7215,7 +7215,7 @@ void PythonQtShell_QLCDNumber::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7237,7 +7237,7 @@ bool PythonQtShell_QLCDNumber::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7270,7 +7270,7 @@ QPaintEngine* PythonQtShell_QLCDNumber::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7303,7 +7303,7 @@ void PythonQtShell_QLCDNumber::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7325,7 +7325,7 @@ QPaintDevice* PythonQtShell_QLCDNumber::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7358,7 +7358,7 @@ void PythonQtShell_QLCDNumber::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7380,7 +7380,7 @@ void PythonQtShell_QLCDNumber::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7402,7 +7402,7 @@ QPainter* PythonQtShell_QLCDNumber::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7435,7 +7435,7 @@ void PythonQtShell_QLCDNumber::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7457,7 +7457,7 @@ QSize PythonQtShell_QLCDNumber::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7490,7 +7490,7 @@ void PythonQtShell_QLCDNumber::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7512,7 +7512,7 @@ void PythonQtShell_QLCDNumber::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7534,7 +7534,7 @@ void PythonQtShell_QLCDNumber::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7638,7 +7638,7 @@ void PythonQtShell_QLabel::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7660,7 +7660,7 @@ void PythonQtShell_QLabel::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7682,7 +7682,7 @@ void PythonQtShell_QLabel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7704,7 +7704,7 @@ void PythonQtShell_QLabel::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7726,7 +7726,7 @@ void PythonQtShell_QLabel::contextMenuEvent(QContextMenuEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7748,7 +7748,7 @@ void PythonQtShell_QLabel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7770,7 +7770,7 @@ int PythonQtShell_QLabel::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7803,7 +7803,7 @@ void PythonQtShell_QLabel::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7825,7 +7825,7 @@ void PythonQtShell_QLabel::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7847,7 +7847,7 @@ void PythonQtShell_QLabel::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7869,7 +7869,7 @@ void PythonQtShell_QLabel::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7891,7 +7891,7 @@ void PythonQtShell_QLabel::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7913,7 +7913,7 @@ bool PythonQtShell_QLabel::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7946,7 +7946,7 @@ bool PythonQtShell_QLabel::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7979,7 +7979,7 @@ void PythonQtShell_QLabel::focusInEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8001,7 +8001,7 @@ bool PythonQtShell_QLabel::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8034,7 +8034,7 @@ void PythonQtShell_QLabel::focusOutEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8056,7 +8056,7 @@ bool PythonQtShell_QLabel::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8089,7 +8089,7 @@ int PythonQtShell_QLabel::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8122,7 +8122,7 @@ void PythonQtShell_QLabel::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8144,7 +8144,7 @@ void PythonQtShell_QLabel::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8166,7 +8166,7 @@ void PythonQtShell_QLabel::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8188,7 +8188,7 @@ QVariant PythonQtShell_QLabel::inputMethodQuery(Qt::InputMethodQuery arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8221,7 +8221,7 @@ void PythonQtShell_QLabel::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8243,7 +8243,7 @@ void PythonQtShell_QLabel::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8265,7 +8265,7 @@ void PythonQtShell_QLabel::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8287,7 +8287,7 @@ int PythonQtShell_QLabel::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8320,7 +8320,7 @@ QSize PythonQtShell_QLabel::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8353,7 +8353,7 @@ void PythonQtShell_QLabel::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8375,7 +8375,7 @@ void PythonQtShell_QLabel::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8397,7 +8397,7 @@ void PythonQtShell_QLabel::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8419,7 +8419,7 @@ void PythonQtShell_QLabel::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8441,7 +8441,7 @@ void PythonQtShell_QLabel::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8463,7 +8463,7 @@ bool PythonQtShell_QLabel::nativeEvent(const QByteArray& eventType0, void* me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8496,7 +8496,7 @@ QPaintEngine* PythonQtShell_QLabel::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8529,7 +8529,7 @@ void PythonQtShell_QLabel::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8551,7 +8551,7 @@ QPaintDevice* PythonQtShell_QLabel::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8584,7 +8584,7 @@ void PythonQtShell_QLabel::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8606,7 +8606,7 @@ void PythonQtShell_QLabel::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8628,7 +8628,7 @@ QPainter* PythonQtShell_QLabel::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8661,7 +8661,7 @@ void PythonQtShell_QLabel::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8683,7 +8683,7 @@ QSize PythonQtShell_QLabel::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8716,7 +8716,7 @@ void PythonQtShell_QLabel::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8738,7 +8738,7 @@ void PythonQtShell_QLabel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8760,7 +8760,7 @@ void PythonQtShell_QLabel::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8944,7 +8944,7 @@ void PythonQtShell_QLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -8966,7 +8966,7 @@ void PythonQtShell_QLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8988,7 +8988,7 @@ QSizePolicy::ControlTypes PythonQtShell_QLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9021,7 +9021,7 @@ int PythonQtShell_QLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9054,7 +9054,7 @@ void PythonQtShell_QLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9076,7 +9076,7 @@ bool PythonQtShell_QLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9109,7 +9109,7 @@ bool PythonQtShell_QLayout::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9142,7 +9142,7 @@ Qt::Orientations PythonQtShell_QLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -9175,7 +9175,7 @@ QRect PythonQtShell_QLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -9208,7 +9208,7 @@ bool PythonQtShell_QLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9241,7 +9241,7 @@ int PythonQtShell_QLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9274,7 +9274,7 @@ int PythonQtShell_QLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -9307,7 +9307,7 @@ void PythonQtShell_QLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9329,7 +9329,7 @@ bool PythonQtShell_QLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9362,7 +9362,7 @@ QLayoutItem* PythonQtShell_QLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9395,7 +9395,7 @@ QLayout* PythonQtShell_QLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -9428,7 +9428,7 @@ QSize PythonQtShell_QLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9461,7 +9461,7 @@ int PythonQtShell_QLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9494,7 +9494,7 @@ QSize PythonQtShell_QLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9527,7 +9527,7 @@ void PythonQtShell_QLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -9549,7 +9549,7 @@ QSize PythonQtShell_QLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9582,7 +9582,7 @@ QSpacerItem* PythonQtShell_QLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -9615,7 +9615,7 @@ QLayoutItem* PythonQtShell_QLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9648,7 +9648,7 @@ void PythonQtShell_QLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9670,7 +9670,7 @@ QWidget* PythonQtShell_QLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -9915,7 +9915,7 @@ QSizePolicy::ControlTypes PythonQtShell_QLayoutItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9948,7 +9948,7 @@ Qt::Orientations PythonQtShell_QLayoutItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -9981,7 +9981,7 @@ QRect PythonQtShell_QLayoutItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10014,7 +10014,7 @@ bool PythonQtShell_QLayoutItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10047,7 +10047,7 @@ int PythonQtShell_QLayoutItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10080,7 +10080,7 @@ void PythonQtShell_QLayoutItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10102,7 +10102,7 @@ bool PythonQtShell_QLayoutItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10135,7 +10135,7 @@ QLayout* PythonQtShell_QLayoutItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10168,7 +10168,7 @@ QSize PythonQtShell_QLayoutItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10201,7 +10201,7 @@ int PythonQtShell_QLayoutItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10234,7 +10234,7 @@ QSize PythonQtShell_QLayoutItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10267,7 +10267,7 @@ void PythonQtShell_QLayoutItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10289,7 +10289,7 @@ QSize PythonQtShell_QLayoutItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10322,7 +10322,7 @@ QSpacerItem* PythonQtShell_QLayoutItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -10355,7 +10355,7 @@ QWidget* PythonQtShell_QLayoutItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -10483,7 +10483,7 @@ void PythonQtShell_QLineEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10505,7 +10505,7 @@ void PythonQtShell_QLineEdit::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10527,7 +10527,7 @@ void PythonQtShell_QLineEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10549,7 +10549,7 @@ void PythonQtShell_QLineEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10571,7 +10571,7 @@ void PythonQtShell_QLineEdit::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10593,7 +10593,7 @@ void PythonQtShell_QLineEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10615,7 +10615,7 @@ int PythonQtShell_QLineEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10648,7 +10648,7 @@ void PythonQtShell_QLineEdit::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10670,7 +10670,7 @@ void PythonQtShell_QLineEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10692,7 +10692,7 @@ void PythonQtShell_QLineEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10714,7 +10714,7 @@ void PythonQtShell_QLineEdit::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10736,7 +10736,7 @@ void PythonQtShell_QLineEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10758,7 +10758,7 @@ bool PythonQtShell_QLineEdit::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10791,7 +10791,7 @@ bool PythonQtShell_QLineEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10824,7 +10824,7 @@ void PythonQtShell_QLineEdit::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10846,7 +10846,7 @@ bool PythonQtShell_QLineEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10879,7 +10879,7 @@ void PythonQtShell_QLineEdit::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10901,7 +10901,7 @@ bool PythonQtShell_QLineEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10934,7 +10934,7 @@ int PythonQtShell_QLineEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10967,7 +10967,7 @@ void PythonQtShell_QLineEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10989,7 +10989,7 @@ void PythonQtShell_QLineEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11011,7 +11011,7 @@ void PythonQtShell_QLineEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11033,7 +11033,7 @@ QVariant PythonQtShell_QLineEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11066,7 +11066,7 @@ void PythonQtShell_QLineEdit::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11088,7 +11088,7 @@ void PythonQtShell_QLineEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11110,7 +11110,7 @@ void PythonQtShell_QLineEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11132,7 +11132,7 @@ int PythonQtShell_QLineEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11165,7 +11165,7 @@ QSize PythonQtShell_QLineEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11198,7 +11198,7 @@ void PythonQtShell_QLineEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11220,7 +11220,7 @@ void PythonQtShell_QLineEdit::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11242,7 +11242,7 @@ void PythonQtShell_QLineEdit::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11264,7 +11264,7 @@ void PythonQtShell_QLineEdit::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11286,7 +11286,7 @@ void PythonQtShell_QLineEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11308,7 +11308,7 @@ bool PythonQtShell_QLineEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11341,7 +11341,7 @@ QPaintEngine* PythonQtShell_QLineEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11374,7 +11374,7 @@ void PythonQtShell_QLineEdit::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11396,7 +11396,7 @@ QPaintDevice* PythonQtShell_QLineEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11429,7 +11429,7 @@ void PythonQtShell_QLineEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11451,7 +11451,7 @@ void PythonQtShell_QLineEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11473,7 +11473,7 @@ QPainter* PythonQtShell_QLineEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11506,7 +11506,7 @@ void PythonQtShell_QLineEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11528,7 +11528,7 @@ QSize PythonQtShell_QLineEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11561,7 +11561,7 @@ void PythonQtShell_QLineEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11583,7 +11583,7 @@ void PythonQtShell_QLineEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11605,7 +11605,7 @@ void PythonQtShell_QLineEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12008,7 +12008,7 @@ void PythonQtShell_QListView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12030,7 +12030,7 @@ void PythonQtShell_QListView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12052,7 +12052,7 @@ void PythonQtShell_QListView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12074,7 +12074,7 @@ void PythonQtShell_QListView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -12096,7 +12096,7 @@ void PythonQtShell_QListView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12118,7 +12118,7 @@ void PythonQtShell_QListView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12140,7 +12140,7 @@ void PythonQtShell_QListView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12162,7 +12162,7 @@ void PythonQtShell_QListView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -12184,7 +12184,7 @@ void PythonQtShell_QListView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12206,7 +12206,7 @@ void PythonQtShell_QListView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -12228,7 +12228,7 @@ int PythonQtShell_QListView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12261,7 +12261,7 @@ void PythonQtShell_QListView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12283,7 +12283,7 @@ void PythonQtShell_QListView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12305,7 +12305,7 @@ void PythonQtShell_QListView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12327,7 +12327,7 @@ void PythonQtShell_QListView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12349,7 +12349,7 @@ void PythonQtShell_QListView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12371,7 +12371,7 @@ bool PythonQtShell_QListView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -12404,7 +12404,7 @@ void PythonQtShell_QListView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -12426,7 +12426,7 @@ void PythonQtShell_QListView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12448,7 +12448,7 @@ bool PythonQtShell_QListView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12481,7 +12481,7 @@ bool PythonQtShell_QListView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12514,7 +12514,7 @@ void PythonQtShell_QListView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12536,7 +12536,7 @@ bool PythonQtShell_QListView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12569,7 +12569,7 @@ void PythonQtShell_QListView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12591,7 +12591,7 @@ bool PythonQtShell_QListView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12624,7 +12624,7 @@ int PythonQtShell_QListView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12657,7 +12657,7 @@ void PythonQtShell_QListView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12679,7 +12679,7 @@ int PythonQtShell_QListView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12712,7 +12712,7 @@ void PythonQtShell_QListView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12734,7 +12734,7 @@ void PythonQtShell_QListView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12756,7 +12756,7 @@ QModelIndex PythonQtShell_QListView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -12789,7 +12789,7 @@ void PythonQtShell_QListView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12811,7 +12811,7 @@ void PythonQtShell_QListView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12833,7 +12833,7 @@ QVariant PythonQtShell_QListView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12866,7 +12866,7 @@ bool PythonQtShell_QListView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12899,7 +12899,7 @@ void PythonQtShell_QListView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12921,7 +12921,7 @@ void PythonQtShell_QListView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12943,7 +12943,7 @@ void PythonQtShell_QListView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -12965,7 +12965,7 @@ void PythonQtShell_QListView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12987,7 +12987,7 @@ int PythonQtShell_QListView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13020,7 +13020,7 @@ QSize PythonQtShell_QListView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13053,7 +13053,7 @@ void PythonQtShell_QListView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13075,7 +13075,7 @@ void PythonQtShell_QListView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13097,7 +13097,7 @@ void PythonQtShell_QListView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13119,7 +13119,7 @@ void PythonQtShell_QListView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13141,7 +13141,7 @@ QModelIndex PythonQtShell_QListView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -13174,7 +13174,7 @@ void PythonQtShell_QListView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13196,7 +13196,7 @@ bool PythonQtShell_QListView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13229,7 +13229,7 @@ QPaintEngine* PythonQtShell_QListView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13262,7 +13262,7 @@ void PythonQtShell_QListView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13284,7 +13284,7 @@ QPaintDevice* PythonQtShell_QListView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13317,7 +13317,7 @@ void PythonQtShell_QListView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13339,7 +13339,7 @@ void PythonQtShell_QListView::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13361,7 +13361,7 @@ void PythonQtShell_QListView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13383,7 +13383,7 @@ void PythonQtShell_QListView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13405,7 +13405,7 @@ void PythonQtShell_QListView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13427,7 +13427,7 @@ void PythonQtShell_QListView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -13449,7 +13449,7 @@ void PythonQtShell_QListView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13471,7 +13471,7 @@ QList PythonQtShell_QListView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -13504,7 +13504,7 @@ void PythonQtShell_QListView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -13526,7 +13526,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QListView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -13559,7 +13559,7 @@ void PythonQtShell_QListView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -13581,7 +13581,7 @@ void PythonQtShell_QListView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -13603,7 +13603,7 @@ void PythonQtShell_QListView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -13625,7 +13625,7 @@ void PythonQtShell_QListView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -13647,7 +13647,7 @@ void PythonQtShell_QListView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13669,7 +13669,7 @@ void PythonQtShell_QListView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13691,7 +13691,7 @@ QPainter* PythonQtShell_QListView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13724,7 +13724,7 @@ void PythonQtShell_QListView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13746,7 +13746,7 @@ QSize PythonQtShell_QListView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13779,7 +13779,7 @@ int PythonQtShell_QListView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13812,7 +13812,7 @@ int PythonQtShell_QListView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13845,7 +13845,7 @@ void PythonQtShell_QListView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -13867,7 +13867,7 @@ void PythonQtShell_QListView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13889,7 +13889,7 @@ void PythonQtShell_QListView::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13911,7 +13911,7 @@ void PythonQtShell_QListView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13933,7 +13933,7 @@ void PythonQtShell_QListView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13955,7 +13955,7 @@ void PythonQtShell_QListView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13977,7 +13977,7 @@ int PythonQtShell_QListView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14010,7 +14010,7 @@ void PythonQtShell_QListView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -14032,7 +14032,7 @@ void PythonQtShell_QListView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -14054,7 +14054,7 @@ QStyleOptionViewItem PythonQtShell_QListView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -14087,7 +14087,7 @@ bool PythonQtShell_QListView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14120,7 +14120,7 @@ QSize PythonQtShell_QListView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14153,7 +14153,7 @@ QRect PythonQtShell_QListView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -14186,7 +14186,7 @@ QRegion PythonQtShell_QListView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -14219,7 +14219,7 @@ void PythonQtShell_QListView::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14429,7 +14429,7 @@ void PythonQtShell_QListWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14451,7 +14451,7 @@ void PythonQtShell_QListWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14473,7 +14473,7 @@ void PythonQtShell_QListWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14495,7 +14495,7 @@ void PythonQtShell_QListWidget::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -14517,7 +14517,7 @@ void PythonQtShell_QListWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14539,7 +14539,7 @@ void PythonQtShell_QListWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14561,7 +14561,7 @@ void PythonQtShell_QListWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14583,7 +14583,7 @@ void PythonQtShell_QListWidget::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -14605,7 +14605,7 @@ void PythonQtShell_QListWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14627,7 +14627,7 @@ void PythonQtShell_QListWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -14649,7 +14649,7 @@ int PythonQtShell_QListWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14682,7 +14682,7 @@ void PythonQtShell_QListWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14704,7 +14704,7 @@ void PythonQtShell_QListWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14726,7 +14726,7 @@ void PythonQtShell_QListWidget::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14748,7 +14748,7 @@ void PythonQtShell_QListWidget::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14770,7 +14770,7 @@ void PythonQtShell_QListWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14792,7 +14792,7 @@ bool PythonQtShell_QListWidget::dropMimeData(int index0, const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -14825,7 +14825,7 @@ bool PythonQtShell_QListWidget::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -14858,7 +14858,7 @@ void PythonQtShell_QListWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -14880,7 +14880,7 @@ void PythonQtShell_QListWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14902,7 +14902,7 @@ bool PythonQtShell_QListWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14935,7 +14935,7 @@ bool PythonQtShell_QListWidget::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14968,7 +14968,7 @@ void PythonQtShell_QListWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14990,7 +14990,7 @@ bool PythonQtShell_QListWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15023,7 +15023,7 @@ void PythonQtShell_QListWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15045,7 +15045,7 @@ bool PythonQtShell_QListWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15078,7 +15078,7 @@ int PythonQtShell_QListWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15111,7 +15111,7 @@ void PythonQtShell_QListWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15133,7 +15133,7 @@ int PythonQtShell_QListWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15166,7 +15166,7 @@ void PythonQtShell_QListWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15188,7 +15188,7 @@ void PythonQtShell_QListWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15210,7 +15210,7 @@ QModelIndex PythonQtShell_QListWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -15243,7 +15243,7 @@ void PythonQtShell_QListWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15265,7 +15265,7 @@ void PythonQtShell_QListWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15287,7 +15287,7 @@ QVariant PythonQtShell_QListWidget::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15320,7 +15320,7 @@ bool PythonQtShell_QListWidget::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -15353,7 +15353,7 @@ void PythonQtShell_QListWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15375,7 +15375,7 @@ void PythonQtShell_QListWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15397,7 +15397,7 @@ void PythonQtShell_QListWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -15419,7 +15419,7 @@ void PythonQtShell_QListWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15441,7 +15441,7 @@ int PythonQtShell_QListWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15474,7 +15474,7 @@ QMimeData* PythonQtShell_QListWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -15507,7 +15507,7 @@ QStringList PythonQtShell_QListWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -15540,7 +15540,7 @@ QSize PythonQtShell_QListWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15573,7 +15573,7 @@ void PythonQtShell_QListWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15595,7 +15595,7 @@ void PythonQtShell_QListWidget::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15617,7 +15617,7 @@ void PythonQtShell_QListWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15639,7 +15639,7 @@ void PythonQtShell_QListWidget::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15661,7 +15661,7 @@ QModelIndex PythonQtShell_QListWidget::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -15694,7 +15694,7 @@ void PythonQtShell_QListWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15716,7 +15716,7 @@ bool PythonQtShell_QListWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15749,7 +15749,7 @@ QPaintEngine* PythonQtShell_QListWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15782,7 +15782,7 @@ void PythonQtShell_QListWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15804,7 +15804,7 @@ QPaintDevice* PythonQtShell_QListWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15837,7 +15837,7 @@ void PythonQtShell_QListWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15859,7 +15859,7 @@ void PythonQtShell_QListWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15881,7 +15881,7 @@ void PythonQtShell_QListWidget::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -15903,7 +15903,7 @@ void PythonQtShell_QListWidget::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -15925,7 +15925,7 @@ void PythonQtShell_QListWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -15947,7 +15947,7 @@ void PythonQtShell_QListWidget::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -15969,7 +15969,7 @@ void PythonQtShell_QListWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15991,7 +15991,7 @@ QList PythonQtShell_QListWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -16024,7 +16024,7 @@ void PythonQtShell_QListWidget::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -16046,7 +16046,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QListWidget::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -16079,7 +16079,7 @@ void PythonQtShell_QListWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -16101,7 +16101,7 @@ void PythonQtShell_QListWidget::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -16123,7 +16123,7 @@ void PythonQtShell_QListWidget::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -16145,7 +16145,7 @@ void PythonQtShell_QListWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -16167,7 +16167,7 @@ void PythonQtShell_QListWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -16189,7 +16189,7 @@ QPainter* PythonQtShell_QListWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16222,7 +16222,7 @@ void PythonQtShell_QListWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16244,7 +16244,7 @@ QSize PythonQtShell_QListWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16277,7 +16277,7 @@ int PythonQtShell_QListWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16310,7 +16310,7 @@ int PythonQtShell_QListWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16343,7 +16343,7 @@ void PythonQtShell_QListWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -16365,7 +16365,7 @@ Qt::DropActions PythonQtShell_QListWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16398,7 +16398,7 @@ void PythonQtShell_QListWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16420,7 +16420,7 @@ void PythonQtShell_QListWidget::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16442,7 +16442,7 @@ void PythonQtShell_QListWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16464,7 +16464,7 @@ void PythonQtShell_QListWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16486,7 +16486,7 @@ void PythonQtShell_QListWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16508,7 +16508,7 @@ int PythonQtShell_QListWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16541,7 +16541,7 @@ void PythonQtShell_QListWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16563,7 +16563,7 @@ void PythonQtShell_QListWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16585,7 +16585,7 @@ QStyleOptionViewItem PythonQtShell_QListWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -16618,7 +16618,7 @@ bool PythonQtShell_QListWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16651,7 +16651,7 @@ QSize PythonQtShell_QListWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16684,7 +16684,7 @@ QRect PythonQtShell_QListWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -16717,7 +16717,7 @@ QRegion PythonQtShell_QListWidget::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -16750,7 +16750,7 @@ void PythonQtShell_QListWidget::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16990,7 +16990,7 @@ QListWidgetItem* PythonQtShell_QListWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QListWidgetItem*"}; @@ -17023,7 +17023,7 @@ QVariant PythonQtShell_QListWidgetItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -17056,7 +17056,7 @@ void PythonQtShell_QListWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -17078,7 +17078,7 @@ void PythonQtShell_QListWidgetItem::setData(int role0, const QVariant& value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -17100,7 +17100,7 @@ void PythonQtShell_QListWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp index caa26b1f5..0ebec6fb7 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp @@ -100,7 +100,7 @@ void PythonQtShell_QMainWindow::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -122,7 +122,7 @@ void PythonQtShell_QMainWindow::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -144,7 +144,7 @@ void PythonQtShell_QMainWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -166,7 +166,7 @@ void PythonQtShell_QMainWindow::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -188,7 +188,7 @@ void PythonQtShell_QMainWindow::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -210,7 +210,7 @@ QMenu* PythonQtShell_QMainWindow::createPopupMenu() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createPopupMenu"); + static PyObject* name = PyUnicode_FromString("createPopupMenu"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMenu*"}; @@ -243,7 +243,7 @@ void PythonQtShell_QMainWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -265,7 +265,7 @@ int PythonQtShell_QMainWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -298,7 +298,7 @@ void PythonQtShell_QMainWindow::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -320,7 +320,7 @@ void PythonQtShell_QMainWindow::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -342,7 +342,7 @@ void PythonQtShell_QMainWindow::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -364,7 +364,7 @@ void PythonQtShell_QMainWindow::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -386,7 +386,7 @@ void PythonQtShell_QMainWindow::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -408,7 +408,7 @@ bool PythonQtShell_QMainWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -441,7 +441,7 @@ bool PythonQtShell_QMainWindow::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -474,7 +474,7 @@ void PythonQtShell_QMainWindow::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -496,7 +496,7 @@ bool PythonQtShell_QMainWindow::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -529,7 +529,7 @@ void PythonQtShell_QMainWindow::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -551,7 +551,7 @@ bool PythonQtShell_QMainWindow::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -584,7 +584,7 @@ int PythonQtShell_QMainWindow::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -617,7 +617,7 @@ void PythonQtShell_QMainWindow::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -639,7 +639,7 @@ void PythonQtShell_QMainWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -661,7 +661,7 @@ void PythonQtShell_QMainWindow::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -683,7 +683,7 @@ QVariant PythonQtShell_QMainWindow::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -716,7 +716,7 @@ void PythonQtShell_QMainWindow::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -738,7 +738,7 @@ void PythonQtShell_QMainWindow::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -760,7 +760,7 @@ void PythonQtShell_QMainWindow::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -782,7 +782,7 @@ int PythonQtShell_QMainWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -815,7 +815,7 @@ QSize PythonQtShell_QMainWindow::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -848,7 +848,7 @@ void PythonQtShell_QMainWindow::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -870,7 +870,7 @@ void PythonQtShell_QMainWindow::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -892,7 +892,7 @@ void PythonQtShell_QMainWindow::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -914,7 +914,7 @@ void PythonQtShell_QMainWindow::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -936,7 +936,7 @@ void PythonQtShell_QMainWindow::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -958,7 +958,7 @@ bool PythonQtShell_QMainWindow::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -991,7 +991,7 @@ QPaintEngine* PythonQtShell_QMainWindow::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1024,7 +1024,7 @@ void PythonQtShell_QMainWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1046,7 +1046,7 @@ QPaintDevice* PythonQtShell_QMainWindow::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1079,7 +1079,7 @@ void PythonQtShell_QMainWindow::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1101,7 +1101,7 @@ void PythonQtShell_QMainWindow::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1123,7 +1123,7 @@ QPainter* PythonQtShell_QMainWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1156,7 +1156,7 @@ void PythonQtShell_QMainWindow::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1178,7 +1178,7 @@ QSize PythonQtShell_QMainWindow::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1211,7 +1211,7 @@ void PythonQtShell_QMainWindow::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1233,7 +1233,7 @@ void PythonQtShell_QMainWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1255,7 +1255,7 @@ void PythonQtShell_QMainWindow::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2055,7 +2055,7 @@ void PythonQtShell_QMdiArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2077,7 +2077,7 @@ void PythonQtShell_QMdiArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2099,7 +2099,7 @@ void PythonQtShell_QMdiArea::childEvent(QChildEvent* childEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2121,7 +2121,7 @@ void PythonQtShell_QMdiArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2143,7 +2143,7 @@ void PythonQtShell_QMdiArea::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2165,7 +2165,7 @@ void PythonQtShell_QMdiArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2187,7 +2187,7 @@ int PythonQtShell_QMdiArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2220,7 +2220,7 @@ void PythonQtShell_QMdiArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2242,7 +2242,7 @@ void PythonQtShell_QMdiArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2264,7 +2264,7 @@ void PythonQtShell_QMdiArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2286,7 +2286,7 @@ void PythonQtShell_QMdiArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2308,7 +2308,7 @@ void PythonQtShell_QMdiArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2330,7 +2330,7 @@ bool PythonQtShell_QMdiArea::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2363,7 +2363,7 @@ bool PythonQtShell_QMdiArea::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2396,7 +2396,7 @@ void PythonQtShell_QMdiArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2418,7 +2418,7 @@ bool PythonQtShell_QMdiArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2451,7 +2451,7 @@ void PythonQtShell_QMdiArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2473,7 +2473,7 @@ bool PythonQtShell_QMdiArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2506,7 +2506,7 @@ int PythonQtShell_QMdiArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2539,7 +2539,7 @@ void PythonQtShell_QMdiArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2561,7 +2561,7 @@ void PythonQtShell_QMdiArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2583,7 +2583,7 @@ void PythonQtShell_QMdiArea::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2605,7 +2605,7 @@ QVariant PythonQtShell_QMdiArea::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2638,7 +2638,7 @@ void PythonQtShell_QMdiArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2660,7 +2660,7 @@ void PythonQtShell_QMdiArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2682,7 +2682,7 @@ void PythonQtShell_QMdiArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2704,7 +2704,7 @@ int PythonQtShell_QMdiArea::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2737,7 +2737,7 @@ QSize PythonQtShell_QMdiArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2770,7 +2770,7 @@ void PythonQtShell_QMdiArea::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2792,7 +2792,7 @@ void PythonQtShell_QMdiArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2814,7 +2814,7 @@ void PythonQtShell_QMdiArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2836,7 +2836,7 @@ void PythonQtShell_QMdiArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2858,7 +2858,7 @@ void PythonQtShell_QMdiArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2880,7 +2880,7 @@ bool PythonQtShell_QMdiArea::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2913,7 +2913,7 @@ QPaintEngine* PythonQtShell_QMdiArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2946,7 +2946,7 @@ void PythonQtShell_QMdiArea::paintEvent(QPaintEvent* paintEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2968,7 +2968,7 @@ QPaintDevice* PythonQtShell_QMdiArea::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3001,7 +3001,7 @@ void PythonQtShell_QMdiArea::resizeEvent(QResizeEvent* resizeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3023,7 +3023,7 @@ void PythonQtShell_QMdiArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3045,7 +3045,7 @@ void PythonQtShell_QMdiArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3067,7 +3067,7 @@ void PythonQtShell_QMdiArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3089,7 +3089,7 @@ QPainter* PythonQtShell_QMdiArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3122,7 +3122,7 @@ void PythonQtShell_QMdiArea::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3144,7 +3144,7 @@ QSize PythonQtShell_QMdiArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3177,7 +3177,7 @@ void PythonQtShell_QMdiArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3199,7 +3199,7 @@ void PythonQtShell_QMdiArea::timerEvent(QTimerEvent* timerEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3221,7 +3221,7 @@ bool PythonQtShell_QMdiArea::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3254,7 +3254,7 @@ QSize PythonQtShell_QMdiArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3287,7 +3287,7 @@ void PythonQtShell_QMdiArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3447,7 +3447,7 @@ void PythonQtShell_QMdiSubWindow::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3469,7 +3469,7 @@ void PythonQtShell_QMdiSubWindow::changeEvent(QEvent* changeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3491,7 +3491,7 @@ void PythonQtShell_QMdiSubWindow::childEvent(QChildEvent* childEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3513,7 +3513,7 @@ void PythonQtShell_QMdiSubWindow::closeEvent(QCloseEvent* closeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3535,7 +3535,7 @@ void PythonQtShell_QMdiSubWindow::contextMenuEvent(QContextMenuEvent* contextMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3557,7 +3557,7 @@ void PythonQtShell_QMdiSubWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3579,7 +3579,7 @@ int PythonQtShell_QMdiSubWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3612,7 +3612,7 @@ void PythonQtShell_QMdiSubWindow::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3634,7 +3634,7 @@ void PythonQtShell_QMdiSubWindow::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3656,7 +3656,7 @@ void PythonQtShell_QMdiSubWindow::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3678,7 +3678,7 @@ void PythonQtShell_QMdiSubWindow::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3700,7 +3700,7 @@ void PythonQtShell_QMdiSubWindow::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3722,7 +3722,7 @@ bool PythonQtShell_QMdiSubWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3755,7 +3755,7 @@ bool PythonQtShell_QMdiSubWindow::eventFilter(QObject* object0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3788,7 +3788,7 @@ void PythonQtShell_QMdiSubWindow::focusInEvent(QFocusEvent* focusInEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3810,7 +3810,7 @@ bool PythonQtShell_QMdiSubWindow::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3843,7 +3843,7 @@ void PythonQtShell_QMdiSubWindow::focusOutEvent(QFocusEvent* focusOutEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3865,7 +3865,7 @@ bool PythonQtShell_QMdiSubWindow::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3898,7 +3898,7 @@ int PythonQtShell_QMdiSubWindow::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3931,7 +3931,7 @@ void PythonQtShell_QMdiSubWindow::hideEvent(QHideEvent* hideEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3953,7 +3953,7 @@ void PythonQtShell_QMdiSubWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3975,7 +3975,7 @@ void PythonQtShell_QMdiSubWindow::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3997,7 +3997,7 @@ QVariant PythonQtShell_QMdiSubWindow::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4030,7 +4030,7 @@ void PythonQtShell_QMdiSubWindow::keyPressEvent(QKeyEvent* keyEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4052,7 +4052,7 @@ void PythonQtShell_QMdiSubWindow::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4074,7 +4074,7 @@ void PythonQtShell_QMdiSubWindow::leaveEvent(QEvent* leaveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4096,7 +4096,7 @@ int PythonQtShell_QMdiSubWindow::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4129,7 +4129,7 @@ QSize PythonQtShell_QMdiSubWindow::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4162,7 +4162,7 @@ void PythonQtShell_QMdiSubWindow::mouseDoubleClickEvent(QMouseEvent* mouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4184,7 +4184,7 @@ void PythonQtShell_QMdiSubWindow::mouseMoveEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4206,7 +4206,7 @@ void PythonQtShell_QMdiSubWindow::mousePressEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4228,7 +4228,7 @@ void PythonQtShell_QMdiSubWindow::mouseReleaseEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4250,7 +4250,7 @@ void PythonQtShell_QMdiSubWindow::moveEvent(QMoveEvent* moveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4272,7 +4272,7 @@ bool PythonQtShell_QMdiSubWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4305,7 +4305,7 @@ QPaintEngine* PythonQtShell_QMdiSubWindow::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4338,7 +4338,7 @@ void PythonQtShell_QMdiSubWindow::paintEvent(QPaintEvent* paintEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4360,7 +4360,7 @@ QPaintDevice* PythonQtShell_QMdiSubWindow::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4393,7 +4393,7 @@ void PythonQtShell_QMdiSubWindow::resizeEvent(QResizeEvent* resizeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4415,7 +4415,7 @@ void PythonQtShell_QMdiSubWindow::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4437,7 +4437,7 @@ QPainter* PythonQtShell_QMdiSubWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4470,7 +4470,7 @@ void PythonQtShell_QMdiSubWindow::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4492,7 +4492,7 @@ QSize PythonQtShell_QMdiSubWindow::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4525,7 +4525,7 @@ void PythonQtShell_QMdiSubWindow::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4547,7 +4547,7 @@ void PythonQtShell_QMdiSubWindow::timerEvent(QTimerEvent* timerEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4569,7 +4569,7 @@ void PythonQtShell_QMdiSubWindow::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4694,7 +4694,7 @@ void PythonQtShell_QMenu::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4716,7 +4716,7 @@ void PythonQtShell_QMenu::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4738,7 +4738,7 @@ void PythonQtShell_QMenu::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4760,7 +4760,7 @@ void PythonQtShell_QMenu::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4782,7 +4782,7 @@ void PythonQtShell_QMenu::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4804,7 +4804,7 @@ void PythonQtShell_QMenu::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4826,7 +4826,7 @@ int PythonQtShell_QMenu::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4859,7 +4859,7 @@ void PythonQtShell_QMenu::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4881,7 +4881,7 @@ void PythonQtShell_QMenu::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4903,7 +4903,7 @@ void PythonQtShell_QMenu::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4925,7 +4925,7 @@ void PythonQtShell_QMenu::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4947,7 +4947,7 @@ void PythonQtShell_QMenu::enterEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4969,7 +4969,7 @@ bool PythonQtShell_QMenu::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5002,7 +5002,7 @@ bool PythonQtShell_QMenu::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5035,7 +5035,7 @@ void PythonQtShell_QMenu::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5057,7 +5057,7 @@ bool PythonQtShell_QMenu::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5090,7 +5090,7 @@ void PythonQtShell_QMenu::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5112,7 +5112,7 @@ bool PythonQtShell_QMenu::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5145,7 +5145,7 @@ int PythonQtShell_QMenu::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5178,7 +5178,7 @@ void PythonQtShell_QMenu::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5200,7 +5200,7 @@ void PythonQtShell_QMenu::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5222,7 +5222,7 @@ void PythonQtShell_QMenu::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5244,7 +5244,7 @@ QVariant PythonQtShell_QMenu::inputMethodQuery(Qt::InputMethodQuery arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5277,7 +5277,7 @@ void PythonQtShell_QMenu::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5299,7 +5299,7 @@ void PythonQtShell_QMenu::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5321,7 +5321,7 @@ void PythonQtShell_QMenu::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5343,7 +5343,7 @@ int PythonQtShell_QMenu::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5376,7 +5376,7 @@ QSize PythonQtShell_QMenu::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5409,7 +5409,7 @@ void PythonQtShell_QMenu::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5431,7 +5431,7 @@ void PythonQtShell_QMenu::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5453,7 +5453,7 @@ void PythonQtShell_QMenu::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5475,7 +5475,7 @@ void PythonQtShell_QMenu::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5497,7 +5497,7 @@ void PythonQtShell_QMenu::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5519,7 +5519,7 @@ bool PythonQtShell_QMenu::nativeEvent(const QByteArray& eventType0, void* mes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5552,7 +5552,7 @@ QPaintEngine* PythonQtShell_QMenu::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5585,7 +5585,7 @@ void PythonQtShell_QMenu::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5607,7 +5607,7 @@ QPaintDevice* PythonQtShell_QMenu::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5640,7 +5640,7 @@ void PythonQtShell_QMenu::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5662,7 +5662,7 @@ void PythonQtShell_QMenu::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5684,7 +5684,7 @@ QPainter* PythonQtShell_QMenu::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5717,7 +5717,7 @@ void PythonQtShell_QMenu::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5739,7 +5739,7 @@ QSize PythonQtShell_QMenu::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5772,7 +5772,7 @@ void PythonQtShell_QMenu::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5794,7 +5794,7 @@ void PythonQtShell_QMenu::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5816,7 +5816,7 @@ void PythonQtShell_QMenu::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6085,7 +6085,7 @@ void PythonQtShell_QMenuBar::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6107,7 +6107,7 @@ void PythonQtShell_QMenuBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6129,7 +6129,7 @@ void PythonQtShell_QMenuBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6151,7 +6151,7 @@ void PythonQtShell_QMenuBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6173,7 +6173,7 @@ void PythonQtShell_QMenuBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6195,7 +6195,7 @@ void PythonQtShell_QMenuBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6217,7 +6217,7 @@ int PythonQtShell_QMenuBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6250,7 +6250,7 @@ void PythonQtShell_QMenuBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6272,7 +6272,7 @@ void PythonQtShell_QMenuBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6294,7 +6294,7 @@ void PythonQtShell_QMenuBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6316,7 +6316,7 @@ void PythonQtShell_QMenuBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6338,7 +6338,7 @@ void PythonQtShell_QMenuBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6360,7 +6360,7 @@ bool PythonQtShell_QMenuBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6393,7 +6393,7 @@ bool PythonQtShell_QMenuBar::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6426,7 +6426,7 @@ void PythonQtShell_QMenuBar::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6448,7 +6448,7 @@ bool PythonQtShell_QMenuBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6481,7 +6481,7 @@ void PythonQtShell_QMenuBar::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6503,7 +6503,7 @@ bool PythonQtShell_QMenuBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6536,7 +6536,7 @@ int PythonQtShell_QMenuBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6569,7 +6569,7 @@ void PythonQtShell_QMenuBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6591,7 +6591,7 @@ void PythonQtShell_QMenuBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6613,7 +6613,7 @@ void PythonQtShell_QMenuBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6635,7 +6635,7 @@ QVariant PythonQtShell_QMenuBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6668,7 +6668,7 @@ void PythonQtShell_QMenuBar::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6690,7 +6690,7 @@ void PythonQtShell_QMenuBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6712,7 +6712,7 @@ void PythonQtShell_QMenuBar::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6734,7 +6734,7 @@ int PythonQtShell_QMenuBar::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6767,7 +6767,7 @@ QSize PythonQtShell_QMenuBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6800,7 +6800,7 @@ void PythonQtShell_QMenuBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6822,7 +6822,7 @@ void PythonQtShell_QMenuBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6844,7 +6844,7 @@ void PythonQtShell_QMenuBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6866,7 +6866,7 @@ void PythonQtShell_QMenuBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6888,7 +6888,7 @@ void PythonQtShell_QMenuBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6910,7 +6910,7 @@ bool PythonQtShell_QMenuBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6943,7 +6943,7 @@ QPaintEngine* PythonQtShell_QMenuBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6976,7 +6976,7 @@ void PythonQtShell_QMenuBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6998,7 +6998,7 @@ QPaintDevice* PythonQtShell_QMenuBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7031,7 +7031,7 @@ void PythonQtShell_QMenuBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7053,7 +7053,7 @@ void PythonQtShell_QMenuBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7075,7 +7075,7 @@ QPainter* PythonQtShell_QMenuBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7108,7 +7108,7 @@ void PythonQtShell_QMenuBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7130,7 +7130,7 @@ QSize PythonQtShell_QMenuBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7163,7 +7163,7 @@ void PythonQtShell_QMenuBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7185,7 +7185,7 @@ void PythonQtShell_QMenuBar::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7207,7 +7207,7 @@ void PythonQtShell_QMenuBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7362,7 +7362,7 @@ void PythonQtShell_QMessageBox::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7384,7 +7384,7 @@ void PythonQtShell_QMessageBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7406,7 +7406,7 @@ void PythonQtShell_QMessageBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7428,7 +7428,7 @@ void PythonQtShell_QMessageBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7450,7 +7450,7 @@ void PythonQtShell_QMessageBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7472,7 +7472,7 @@ void PythonQtShell_QMessageBox::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7494,7 +7494,7 @@ void PythonQtShell_QMessageBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7516,7 +7516,7 @@ int PythonQtShell_QMessageBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7549,7 +7549,7 @@ void PythonQtShell_QMessageBox::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7571,7 +7571,7 @@ void PythonQtShell_QMessageBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7593,7 +7593,7 @@ void PythonQtShell_QMessageBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7615,7 +7615,7 @@ void PythonQtShell_QMessageBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7637,7 +7637,7 @@ void PythonQtShell_QMessageBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7659,7 +7659,7 @@ void PythonQtShell_QMessageBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7681,7 +7681,7 @@ bool PythonQtShell_QMessageBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7714,7 +7714,7 @@ bool PythonQtShell_QMessageBox::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7747,7 +7747,7 @@ int PythonQtShell_QMessageBox::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7780,7 +7780,7 @@ void PythonQtShell_QMessageBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7802,7 +7802,7 @@ bool PythonQtShell_QMessageBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7835,7 +7835,7 @@ void PythonQtShell_QMessageBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7857,7 +7857,7 @@ bool PythonQtShell_QMessageBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7890,7 +7890,7 @@ int PythonQtShell_QMessageBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7923,7 +7923,7 @@ void PythonQtShell_QMessageBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7945,7 +7945,7 @@ void PythonQtShell_QMessageBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7967,7 +7967,7 @@ void PythonQtShell_QMessageBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7989,7 +7989,7 @@ QVariant PythonQtShell_QMessageBox::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8022,7 +8022,7 @@ void PythonQtShell_QMessageBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8044,7 +8044,7 @@ void PythonQtShell_QMessageBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8066,7 +8066,7 @@ void PythonQtShell_QMessageBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8088,7 +8088,7 @@ int PythonQtShell_QMessageBox::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8121,7 +8121,7 @@ QSize PythonQtShell_QMessageBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8154,7 +8154,7 @@ void PythonQtShell_QMessageBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8176,7 +8176,7 @@ void PythonQtShell_QMessageBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8198,7 +8198,7 @@ void PythonQtShell_QMessageBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8220,7 +8220,7 @@ void PythonQtShell_QMessageBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8242,7 +8242,7 @@ void PythonQtShell_QMessageBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8264,7 +8264,7 @@ bool PythonQtShell_QMessageBox::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8297,7 +8297,7 @@ QPaintEngine* PythonQtShell_QMessageBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8330,7 +8330,7 @@ void PythonQtShell_QMessageBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8352,7 +8352,7 @@ QPaintDevice* PythonQtShell_QMessageBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8385,7 +8385,7 @@ void PythonQtShell_QMessageBox::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8407,7 +8407,7 @@ void PythonQtShell_QMessageBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8429,7 +8429,7 @@ void PythonQtShell_QMessageBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8451,7 +8451,7 @@ QPainter* PythonQtShell_QMessageBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8484,7 +8484,7 @@ void PythonQtShell_QMessageBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8506,7 +8506,7 @@ QSize PythonQtShell_QMessageBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8539,7 +8539,7 @@ void PythonQtShell_QMessageBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8561,7 +8561,7 @@ void PythonQtShell_QMessageBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8583,7 +8583,7 @@ void PythonQtShell_QMessageBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8944,7 +8944,7 @@ void PythonQtShell_QMouseEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8966,7 +8966,7 @@ void PythonQtShell_QMouseEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8988,7 +8988,7 @@ bool PythonQtShell_QMouseEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9021,7 +9021,7 @@ bool PythonQtShell_QMouseEventTransition::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9054,7 +9054,7 @@ bool PythonQtShell_QMouseEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9087,7 +9087,7 @@ void PythonQtShell_QMouseEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9109,7 +9109,7 @@ void PythonQtShell_QMouseEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9208,7 +9208,7 @@ void PythonQtShell_QMovie::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9230,7 +9230,7 @@ void PythonQtShell_QMovie::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9252,7 +9252,7 @@ bool PythonQtShell_QMovie::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9285,7 +9285,7 @@ bool PythonQtShell_QMovie::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9318,7 +9318,7 @@ void PythonQtShell_QMovie::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9555,7 +9555,7 @@ void PythonQtShell_QOffscreenSurface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9577,7 +9577,7 @@ void PythonQtShell_QOffscreenSurface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9599,7 +9599,7 @@ bool PythonQtShell_QOffscreenSurface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9632,7 +9632,7 @@ bool PythonQtShell_QOffscreenSurface::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9665,7 +9665,7 @@ QSurfaceFormat PythonQtShell_QOffscreenSurface::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -9698,7 +9698,7 @@ QSize PythonQtShell_QOffscreenSurface::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9731,7 +9731,7 @@ QSurface::SurfaceType PythonQtShell_QOffscreenSurface::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -9764,7 +9764,7 @@ void PythonQtShell_QOffscreenSurface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9962,7 +9962,7 @@ void PythonQtShell_QOpenGLContext::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9984,7 +9984,7 @@ void PythonQtShell_QOpenGLContext::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10006,7 +10006,7 @@ bool PythonQtShell_QOpenGLContext::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10039,7 +10039,7 @@ bool PythonQtShell_QOpenGLContext::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10072,7 +10072,7 @@ void PythonQtShell_QOpenGLContext::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10518,7 +10518,7 @@ int PythonQtShell_QOpenGLPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10551,7 +10551,7 @@ void PythonQtShell_QOpenGLPaintDevice::ensureActiveTarget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ensureActiveTarget"); + static PyObject* name = PyUnicode_FromString("ensureActiveTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10573,7 +10573,7 @@ void PythonQtShell_QOpenGLPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10595,7 +10595,7 @@ int PythonQtShell_QOpenGLPaintDevice::metric(QPaintDevice::PaintDeviceMetric m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10628,7 +10628,7 @@ QPaintEngine* PythonQtShell_QOpenGLPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10661,7 +10661,7 @@ QPaintDevice* PythonQtShell_QOpenGLPaintDevice::redirected(QPoint* offset0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10694,7 +10694,7 @@ QPainter* PythonQtShell_QOpenGLPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10800,7 +10800,7 @@ void PythonQtShell_QOpenGLShader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10822,7 +10822,7 @@ void PythonQtShell_QOpenGLShader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10844,7 +10844,7 @@ bool PythonQtShell_QOpenGLShader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10877,7 +10877,7 @@ bool PythonQtShell_QOpenGLShader::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10910,7 +10910,7 @@ void PythonQtShell_QOpenGLShader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11005,7 +11005,7 @@ void PythonQtShell_QOpenGLShaderProgram::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11027,7 +11027,7 @@ void PythonQtShell_QOpenGLShaderProgram::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11049,7 +11049,7 @@ bool PythonQtShell_QOpenGLShaderProgram::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11082,7 +11082,7 @@ bool PythonQtShell_QOpenGLShaderProgram::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11115,7 +11115,7 @@ bool PythonQtShell_QOpenGLShaderProgram::link() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11148,7 +11148,7 @@ void PythonQtShell_QOpenGLShaderProgram::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12256,7 +12256,7 @@ void PythonQtShell_QOpenGLTimeMonitor::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12278,7 +12278,7 @@ void PythonQtShell_QOpenGLTimeMonitor::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12300,7 +12300,7 @@ bool PythonQtShell_QOpenGLTimeMonitor::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12333,7 +12333,7 @@ bool PythonQtShell_QOpenGLTimeMonitor::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12366,7 +12366,7 @@ void PythonQtShell_QOpenGLTimeMonitor::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12466,7 +12466,7 @@ void PythonQtShell_QOpenGLTimerQuery::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12488,7 +12488,7 @@ void PythonQtShell_QOpenGLTimerQuery::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12510,7 +12510,7 @@ bool PythonQtShell_QOpenGLTimerQuery::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12543,7 +12543,7 @@ bool PythonQtShell_QOpenGLTimerQuery::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12576,7 +12576,7 @@ void PythonQtShell_QOpenGLTimerQuery::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12737,7 +12737,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12759,7 +12759,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12781,7 +12781,7 @@ bool PythonQtShell_QOpenGLVertexArrayObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12814,7 +12814,7 @@ bool PythonQtShell_QOpenGLVertexArrayObject::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12847,7 +12847,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12922,7 +12922,7 @@ void PythonQtShell_QOpenGLWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12944,7 +12944,7 @@ void PythonQtShell_QOpenGLWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12966,7 +12966,7 @@ void PythonQtShell_QOpenGLWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12988,7 +12988,7 @@ void PythonQtShell_QOpenGLWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13010,7 +13010,7 @@ void PythonQtShell_QOpenGLWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13032,7 +13032,7 @@ void PythonQtShell_QOpenGLWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13054,7 +13054,7 @@ int PythonQtShell_QOpenGLWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13087,7 +13087,7 @@ void PythonQtShell_QOpenGLWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13109,7 +13109,7 @@ void PythonQtShell_QOpenGLWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13131,7 +13131,7 @@ void PythonQtShell_QOpenGLWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13153,7 +13153,7 @@ void PythonQtShell_QOpenGLWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13175,7 +13175,7 @@ void PythonQtShell_QOpenGLWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13197,7 +13197,7 @@ bool PythonQtShell_QOpenGLWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13230,7 +13230,7 @@ bool PythonQtShell_QOpenGLWidget::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13263,7 +13263,7 @@ void PythonQtShell_QOpenGLWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13285,7 +13285,7 @@ bool PythonQtShell_QOpenGLWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13318,7 +13318,7 @@ void PythonQtShell_QOpenGLWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13340,7 +13340,7 @@ bool PythonQtShell_QOpenGLWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13373,7 +13373,7 @@ int PythonQtShell_QOpenGLWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13406,7 +13406,7 @@ void PythonQtShell_QOpenGLWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13428,7 +13428,7 @@ void PythonQtShell_QOpenGLWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13450,7 +13450,7 @@ void PythonQtShell_QOpenGLWidget::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13472,7 +13472,7 @@ void PythonQtShell_QOpenGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13494,7 +13494,7 @@ QVariant PythonQtShell_QOpenGLWidget::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13527,7 +13527,7 @@ void PythonQtShell_QOpenGLWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13549,7 +13549,7 @@ void PythonQtShell_QOpenGLWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13571,7 +13571,7 @@ void PythonQtShell_QOpenGLWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13593,7 +13593,7 @@ int PythonQtShell_QOpenGLWidget::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13626,7 +13626,7 @@ QSize PythonQtShell_QOpenGLWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13659,7 +13659,7 @@ void PythonQtShell_QOpenGLWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13681,7 +13681,7 @@ void PythonQtShell_QOpenGLWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13703,7 +13703,7 @@ void PythonQtShell_QOpenGLWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13725,7 +13725,7 @@ void PythonQtShell_QOpenGLWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13747,7 +13747,7 @@ void PythonQtShell_QOpenGLWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13769,7 +13769,7 @@ bool PythonQtShell_QOpenGLWidget::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13802,7 +13802,7 @@ QPaintEngine* PythonQtShell_QOpenGLWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13835,7 +13835,7 @@ void PythonQtShell_QOpenGLWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13857,7 +13857,7 @@ void PythonQtShell_QOpenGLWidget::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13879,7 +13879,7 @@ QPaintDevice* PythonQtShell_QOpenGLWidget::redirected(QPoint* p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13912,7 +13912,7 @@ void PythonQtShell_QOpenGLWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13934,7 +13934,7 @@ void PythonQtShell_QOpenGLWidget::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13956,7 +13956,7 @@ void PythonQtShell_QOpenGLWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13978,7 +13978,7 @@ QPainter* PythonQtShell_QOpenGLWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14011,7 +14011,7 @@ void PythonQtShell_QOpenGLWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14033,7 +14033,7 @@ QSize PythonQtShell_QOpenGLWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14066,7 +14066,7 @@ void PythonQtShell_QOpenGLWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14088,7 +14088,7 @@ void PythonQtShell_QOpenGLWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14110,7 +14110,7 @@ void PythonQtShell_QOpenGLWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14230,7 +14230,7 @@ void PythonQtShell_QOpenGLWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14252,7 +14252,7 @@ void PythonQtShell_QOpenGLWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14274,7 +14274,7 @@ bool PythonQtShell_QOpenGLWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14307,7 +14307,7 @@ bool PythonQtShell_QOpenGLWindow::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14340,7 +14340,7 @@ void PythonQtShell_QOpenGLWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -14362,7 +14362,7 @@ void PythonQtShell_QOpenGLWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14384,7 +14384,7 @@ QObject* PythonQtShell_QOpenGLWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -14417,7 +14417,7 @@ void PythonQtShell_QOpenGLWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14439,7 +14439,7 @@ QSurfaceFormat PythonQtShell_QOpenGLWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -14472,7 +14472,7 @@ void PythonQtShell_QOpenGLWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14494,7 +14494,7 @@ void PythonQtShell_QOpenGLWindow::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14516,7 +14516,7 @@ void PythonQtShell_QOpenGLWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14538,7 +14538,7 @@ void PythonQtShell_QOpenGLWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14560,7 +14560,7 @@ int PythonQtShell_QOpenGLWindow::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14593,7 +14593,7 @@ void PythonQtShell_QOpenGLWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14615,7 +14615,7 @@ void PythonQtShell_QOpenGLWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14637,7 +14637,7 @@ void PythonQtShell_QOpenGLWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14659,7 +14659,7 @@ void PythonQtShell_QOpenGLWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14681,7 +14681,7 @@ void PythonQtShell_QOpenGLWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14703,7 +14703,7 @@ bool PythonQtShell_QOpenGLWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14736,7 +14736,7 @@ void PythonQtShell_QOpenGLWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14758,7 +14758,7 @@ void PythonQtShell_QOpenGLWindow::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14780,7 +14780,7 @@ void PythonQtShell_QOpenGLWindow::paintOverGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintOverGL"); + static PyObject* name = PyUnicode_FromString("paintOverGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14802,7 +14802,7 @@ void PythonQtShell_QOpenGLWindow::paintUnderGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintUnderGL"); + static PyObject* name = PyUnicode_FromString("paintUnderGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14824,7 +14824,7 @@ QPaintDevice* PythonQtShell_QOpenGLWindow::redirected(QPoint* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14857,7 +14857,7 @@ void PythonQtShell_QOpenGLWindow::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14879,7 +14879,7 @@ void PythonQtShell_QOpenGLWindow::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -14901,7 +14901,7 @@ void PythonQtShell_QOpenGLWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14923,7 +14923,7 @@ QSize PythonQtShell_QOpenGLWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14956,7 +14956,7 @@ QSurface::SurfaceType PythonQtShell_QOpenGLWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -14989,7 +14989,7 @@ void PythonQtShell_QOpenGLWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15011,7 +15011,7 @@ void PythonQtShell_QOpenGLWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15033,7 +15033,7 @@ void PythonQtShell_QOpenGLWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -15055,7 +15055,7 @@ void PythonQtShell_QOpenGLWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp index a6a95c579..965a97ef3 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp @@ -276,7 +276,7 @@ void PythonQtShell_QPageSetupDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -298,7 +298,7 @@ void PythonQtShell_QPageSetupDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -320,7 +320,7 @@ void PythonQtShell_QPageSetupDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -342,7 +342,7 @@ void PythonQtShell_QPageSetupDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -364,7 +364,7 @@ void PythonQtShell_QPageSetupDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -386,7 +386,7 @@ void PythonQtShell_QPageSetupDialog::contextMenuEvent(QContextMenuEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -408,7 +408,7 @@ void PythonQtShell_QPageSetupDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -430,7 +430,7 @@ int PythonQtShell_QPageSetupDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -463,7 +463,7 @@ void PythonQtShell_QPageSetupDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -485,7 +485,7 @@ void PythonQtShell_QPageSetupDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -507,7 +507,7 @@ void PythonQtShell_QPageSetupDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -529,7 +529,7 @@ void PythonQtShell_QPageSetupDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -551,7 +551,7 @@ void PythonQtShell_QPageSetupDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -573,7 +573,7 @@ void PythonQtShell_QPageSetupDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -595,7 +595,7 @@ bool PythonQtShell_QPageSetupDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -628,7 +628,7 @@ bool PythonQtShell_QPageSetupDialog::eventFilter(QObject* arg__1, QEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -661,7 +661,7 @@ int PythonQtShell_QPageSetupDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -694,7 +694,7 @@ void PythonQtShell_QPageSetupDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -716,7 +716,7 @@ bool PythonQtShell_QPageSetupDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -749,7 +749,7 @@ void PythonQtShell_QPageSetupDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -771,7 +771,7 @@ bool PythonQtShell_QPageSetupDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -804,7 +804,7 @@ int PythonQtShell_QPageSetupDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -837,7 +837,7 @@ void PythonQtShell_QPageSetupDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -859,7 +859,7 @@ void PythonQtShell_QPageSetupDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -881,7 +881,7 @@ void PythonQtShell_QPageSetupDialog::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -903,7 +903,7 @@ QVariant PythonQtShell_QPageSetupDialog::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -936,7 +936,7 @@ void PythonQtShell_QPageSetupDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -958,7 +958,7 @@ void PythonQtShell_QPageSetupDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -980,7 +980,7 @@ void PythonQtShell_QPageSetupDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1002,7 +1002,7 @@ int PythonQtShell_QPageSetupDialog::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1035,7 +1035,7 @@ QSize PythonQtShell_QPageSetupDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1068,7 +1068,7 @@ void PythonQtShell_QPageSetupDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1090,7 +1090,7 @@ void PythonQtShell_QPageSetupDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1112,7 +1112,7 @@ void PythonQtShell_QPageSetupDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1134,7 +1134,7 @@ void PythonQtShell_QPageSetupDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1156,7 +1156,7 @@ void PythonQtShell_QPageSetupDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1178,7 +1178,7 @@ bool PythonQtShell_QPageSetupDialog::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1211,7 +1211,7 @@ QPaintEngine* PythonQtShell_QPageSetupDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1244,7 +1244,7 @@ void PythonQtShell_QPageSetupDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1266,7 +1266,7 @@ QPaintDevice* PythonQtShell_QPageSetupDialog::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1299,7 +1299,7 @@ void PythonQtShell_QPageSetupDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1321,7 +1321,7 @@ void PythonQtShell_QPageSetupDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1343,7 +1343,7 @@ void PythonQtShell_QPageSetupDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1365,7 +1365,7 @@ QPainter* PythonQtShell_QPageSetupDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1398,7 +1398,7 @@ void PythonQtShell_QPageSetupDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1420,7 +1420,7 @@ QSize PythonQtShell_QPageSetupDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1453,7 +1453,7 @@ void PythonQtShell_QPageSetupDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1475,7 +1475,7 @@ void PythonQtShell_QPageSetupDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1497,7 +1497,7 @@ void PythonQtShell_QPageSetupDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1725,7 +1725,7 @@ int PythonQtShell_QPagedPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1758,7 +1758,7 @@ void PythonQtShell_QPagedPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1780,7 +1780,7 @@ int PythonQtShell_QPagedPaintDevice::metric(QPaintDevice::PaintDeviceMetric me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1813,7 +1813,7 @@ bool PythonQtShell_QPagedPaintDevice::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1846,7 +1846,7 @@ QPaintEngine* PythonQtShell_QPagedPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1879,7 +1879,7 @@ QPaintDevice* PythonQtShell_QPagedPaintDevice::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1912,7 +1912,7 @@ void PythonQtShell_QPagedPaintDevice::setMargins(const QPagedPaintDevice::Margin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -1934,7 +1934,7 @@ void PythonQtShell_QPagedPaintDevice::setPageSize(QPagedPaintDevice::PageSize s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -1956,7 +1956,7 @@ void PythonQtShell_QPagedPaintDevice::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -1978,7 +1978,7 @@ QPainter* PythonQtShell_QPagedPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2101,7 +2101,7 @@ int PythonQtShell_QPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2134,7 +2134,7 @@ void PythonQtShell_QPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2156,7 +2156,7 @@ int PythonQtShell_QPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2189,7 +2189,7 @@ QPaintEngine* PythonQtShell_QPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2222,7 +2222,7 @@ QPaintDevice* PythonQtShell_QPaintDevice::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2255,7 +2255,7 @@ QPainter* PythonQtShell_QPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2415,7 +2415,7 @@ bool PythonQtShell_QPaintEngine::begin(QPaintDevice* pdev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("begin"); + static PyObject* name = PyUnicode_FromString("begin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QPaintDevice*"}; @@ -2448,7 +2448,7 @@ QPoint PythonQtShell_QPaintEngine::coordinateOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("coordinateOffset"); + static PyObject* name = PyUnicode_FromString("coordinateOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPoint"}; @@ -2481,7 +2481,7 @@ void PythonQtShell_QPaintEngine::drawEllipse(const QRect& r0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2503,7 +2503,7 @@ void PythonQtShell_QPaintEngine::drawEllipse(const QRectF& r0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -2525,7 +2525,7 @@ void PythonQtShell_QPaintEngine::drawImage(const QRectF& r0, const QImage& pm1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawImage"); + static PyObject* name = PyUnicode_FromString("drawImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QImage&" , "const QRectF&" , "Qt::ImageConversionFlags"}; @@ -2547,7 +2547,7 @@ void PythonQtShell_QPaintEngine::drawLines(const QLine* lines0, int lineCount1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLine*" , "int"}; @@ -2569,7 +2569,7 @@ void PythonQtShell_QPaintEngine::drawLines(const QLineF* lines0, int lineCount if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLineF*" , "int"}; @@ -2591,7 +2591,7 @@ void PythonQtShell_QPaintEngine::drawPath(const QPainterPath& path0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPath"); + static PyObject* name = PyUnicode_FromString("drawPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPainterPath&"}; @@ -2613,7 +2613,7 @@ void PythonQtShell_QPaintEngine::drawPixmap(const QRectF& r0, const QPixmap& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPixmap"); + static PyObject* name = PyUnicode_FromString("drawPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QRectF&"}; @@ -2635,7 +2635,7 @@ void PythonQtShell_QPaintEngine::drawPoints(const QPoint* points0, int pointCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int"}; @@ -2657,7 +2657,7 @@ void PythonQtShell_QPaintEngine::drawPoints(const QPointF* points0, int pointC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int"}; @@ -2679,7 +2679,7 @@ void PythonQtShell_QPaintEngine::drawPolygon(const QPoint* points0, int pointC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -2701,7 +2701,7 @@ void PythonQtShell_QPaintEngine::drawPolygon(const QPointF* points0, int point if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -2723,7 +2723,7 @@ void PythonQtShell_QPaintEngine::drawRects(const QRect* rects0, int rectCount1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect*" , "int"}; @@ -2745,7 +2745,7 @@ void PythonQtShell_QPaintEngine::drawRects(const QRectF* rects0, int rectCount if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF*" , "int"}; @@ -2767,7 +2767,7 @@ void PythonQtShell_QPaintEngine::drawTextItem(const QPointF& p0, const QTextIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawTextItem"); + static PyObject* name = PyUnicode_FromString("drawTextItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&" , "const QTextItem&"}; @@ -2789,7 +2789,7 @@ void PythonQtShell_QPaintEngine::drawTiledPixmap(const QRectF& r0, const QPixma if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawTiledPixmap"); + static PyObject* name = PyUnicode_FromString("drawTiledPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QPointF&"}; @@ -2811,7 +2811,7 @@ bool PythonQtShell_QPaintEngine::end() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("end"); + static PyObject* name = PyUnicode_FromString("end"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2844,7 +2844,7 @@ QPaintEngine::Type PythonQtShell_QPaintEngine::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine::Type"}; @@ -2877,7 +2877,7 @@ void PythonQtShell_QPaintEngine::updateState(const QPaintEngineState& state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPaintEngineState&"}; @@ -4719,7 +4719,7 @@ void PythonQtShell_QPanGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4741,7 +4741,7 @@ void PythonQtShell_QPanGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4763,7 +4763,7 @@ bool PythonQtShell_QPanGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4796,7 +4796,7 @@ bool PythonQtShell_QPanGesture::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4829,7 +4829,7 @@ void PythonQtShell_QPanGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4909,7 +4909,7 @@ void PythonQtShell_QPdfWriter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4931,7 +4931,7 @@ void PythonQtShell_QPdfWriter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4953,7 +4953,7 @@ int PythonQtShell_QPdfWriter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4986,7 +4986,7 @@ bool PythonQtShell_QPdfWriter::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5019,7 +5019,7 @@ bool PythonQtShell_QPdfWriter::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5052,7 +5052,7 @@ void PythonQtShell_QPdfWriter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5074,7 +5074,7 @@ int PythonQtShell_QPdfWriter::metric(QPaintDevice::PaintDeviceMetric id0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5107,7 +5107,7 @@ bool PythonQtShell_QPdfWriter::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5140,7 +5140,7 @@ QPaintEngine* PythonQtShell_QPdfWriter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5173,7 +5173,7 @@ QPaintDevice* PythonQtShell_QPdfWriter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5206,7 +5206,7 @@ void PythonQtShell_QPdfWriter::setMargins(const QPagedPaintDevice::Margins& m0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -5228,7 +5228,7 @@ void PythonQtShell_QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -5250,7 +5250,7 @@ void PythonQtShell_QPdfWriter::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -5272,7 +5272,7 @@ QPainter* PythonQtShell_QPdfWriter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5305,7 +5305,7 @@ void PythonQtShell_QPdfWriter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5394,7 +5394,7 @@ int PythonQtShell_QPicture::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5427,7 +5427,7 @@ void PythonQtShell_QPicture::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5449,7 +5449,7 @@ int PythonQtShell_QPicture::metric(QPaintDevice::PaintDeviceMetric m0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5482,7 +5482,7 @@ QPaintEngine* PythonQtShell_QPicture::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5515,7 +5515,7 @@ QPaintDevice* PythonQtShell_QPicture::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5548,7 +5548,7 @@ QPainter* PythonQtShell_QPicture::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5660,7 +5660,7 @@ void PythonQtShell_QPictureFormatPlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5682,7 +5682,7 @@ void PythonQtShell_QPictureFormatPlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5704,7 +5704,7 @@ bool PythonQtShell_QPictureFormatPlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5737,7 +5737,7 @@ bool PythonQtShell_QPictureFormatPlugin::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5770,7 +5770,7 @@ bool PythonQtShell_QPictureFormatPlugin::installIOHandler(const QString& forma if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("installIOHandler"); + static PyObject* name = PyUnicode_FromString("installIOHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5803,7 +5803,7 @@ bool PythonQtShell_QPictureFormatPlugin::loadPicture(const QString& format0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadPicture"); + static PyObject* name = PyUnicode_FromString("loadPicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QPicture*"}; @@ -5836,7 +5836,7 @@ bool PythonQtShell_QPictureFormatPlugin::savePicture(const QString& format0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("savePicture"); + static PyObject* name = PyUnicode_FromString("savePicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QPicture&"}; @@ -5869,7 +5869,7 @@ void PythonQtShell_QPictureFormatPlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6063,7 +6063,7 @@ void PythonQtShell_QPinchGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6085,7 +6085,7 @@ void PythonQtShell_QPinchGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6107,7 +6107,7 @@ bool PythonQtShell_QPinchGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6140,7 +6140,7 @@ bool PythonQtShell_QPinchGesture::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6173,7 +6173,7 @@ void PythonQtShell_QPinchGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6543,7 +6543,7 @@ QRectF PythonQtShell_QPlainTextDocumentLayout::blockBoundingRect(const QTextBlo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -6576,7 +6576,7 @@ void PythonQtShell_QPlainTextDocumentLayout::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6598,7 +6598,7 @@ void PythonQtShell_QPlainTextDocumentLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6620,7 +6620,7 @@ void PythonQtShell_QPlainTextDocumentLayout::documentChanged(int from0, int ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -6642,7 +6642,7 @@ QSizeF PythonQtShell_QPlainTextDocumentLayout::documentSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -6675,7 +6675,7 @@ void PythonQtShell_QPlainTextDocumentLayout::draw(QPainter* arg__1, const QAbst if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -6697,7 +6697,7 @@ void PythonQtShell_QPlainTextDocumentLayout::drawInlineObject(QPainter* painter if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -6719,7 +6719,7 @@ bool PythonQtShell_QPlainTextDocumentLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6752,7 +6752,7 @@ bool PythonQtShell_QPlainTextDocumentLayout::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6785,7 +6785,7 @@ QRectF PythonQtShell_QPlainTextDocumentLayout::frameBoundingRect(QTextFrame* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -6818,7 +6818,7 @@ int PythonQtShell_QPlainTextDocumentLayout::hitTest(const QPointF& arg__1, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -6851,7 +6851,7 @@ int PythonQtShell_QPlainTextDocumentLayout::pageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6884,7 +6884,7 @@ void PythonQtShell_QPlainTextDocumentLayout::positionInlineObject(QTextInlineObj if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -6906,7 +6906,7 @@ void PythonQtShell_QPlainTextDocumentLayout::resizeInlineObject(QTextInlineObjec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -6928,7 +6928,7 @@ void PythonQtShell_QPlainTextDocumentLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6993,7 +6993,7 @@ void PythonQtShell_QPlainTextEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7015,7 +7015,7 @@ bool PythonQtShell_QPlainTextEdit::canInsertFromMimeData(const QMimeData* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -7048,7 +7048,7 @@ void PythonQtShell_QPlainTextEdit::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7070,7 +7070,7 @@ void PythonQtShell_QPlainTextEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7092,7 +7092,7 @@ void PythonQtShell_QPlainTextEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7114,7 +7114,7 @@ void PythonQtShell_QPlainTextEdit::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7136,7 +7136,7 @@ QMimeData* PythonQtShell_QPlainTextEdit::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -7169,7 +7169,7 @@ void PythonQtShell_QPlainTextEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7191,7 +7191,7 @@ int PythonQtShell_QPlainTextEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7224,7 +7224,7 @@ void PythonQtShell_QPlainTextEdit::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -7246,7 +7246,7 @@ void PythonQtShell_QPlainTextEdit::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7268,7 +7268,7 @@ void PythonQtShell_QPlainTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7290,7 +7290,7 @@ void PythonQtShell_QPlainTextEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7312,7 +7312,7 @@ void PythonQtShell_QPlainTextEdit::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7334,7 +7334,7 @@ void PythonQtShell_QPlainTextEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7356,7 +7356,7 @@ bool PythonQtShell_QPlainTextEdit::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7389,7 +7389,7 @@ bool PythonQtShell_QPlainTextEdit::eventFilter(QObject* arg__1, QEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7422,7 +7422,7 @@ void PythonQtShell_QPlainTextEdit::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7444,7 +7444,7 @@ bool PythonQtShell_QPlainTextEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7477,7 +7477,7 @@ void PythonQtShell_QPlainTextEdit::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7499,7 +7499,7 @@ bool PythonQtShell_QPlainTextEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7532,7 +7532,7 @@ int PythonQtShell_QPlainTextEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7565,7 +7565,7 @@ void PythonQtShell_QPlainTextEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7587,7 +7587,7 @@ void PythonQtShell_QPlainTextEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7609,7 +7609,7 @@ void PythonQtShell_QPlainTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7631,7 +7631,7 @@ QVariant PythonQtShell_QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7664,7 +7664,7 @@ void PythonQtShell_QPlainTextEdit::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -7686,7 +7686,7 @@ void PythonQtShell_QPlainTextEdit::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7708,7 +7708,7 @@ void PythonQtShell_QPlainTextEdit::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7730,7 +7730,7 @@ void PythonQtShell_QPlainTextEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7752,7 +7752,7 @@ QVariant PythonQtShell_QPlainTextEdit::loadResource(int type0, const QUrl& na if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -7785,7 +7785,7 @@ int PythonQtShell_QPlainTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7818,7 +7818,7 @@ QSize PythonQtShell_QPlainTextEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7851,7 +7851,7 @@ void PythonQtShell_QPlainTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7873,7 +7873,7 @@ void PythonQtShell_QPlainTextEdit::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7895,7 +7895,7 @@ void PythonQtShell_QPlainTextEdit::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7917,7 +7917,7 @@ void PythonQtShell_QPlainTextEdit::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7939,7 +7939,7 @@ void PythonQtShell_QPlainTextEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7961,7 +7961,7 @@ bool PythonQtShell_QPlainTextEdit::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7994,7 +7994,7 @@ QPaintEngine* PythonQtShell_QPlainTextEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8027,7 +8027,7 @@ void PythonQtShell_QPlainTextEdit::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8049,7 +8049,7 @@ QPaintDevice* PythonQtShell_QPlainTextEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8082,7 +8082,7 @@ void PythonQtShell_QPlainTextEdit::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8104,7 +8104,7 @@ void PythonQtShell_QPlainTextEdit::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8126,7 +8126,7 @@ void PythonQtShell_QPlainTextEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8148,7 +8148,7 @@ void PythonQtShell_QPlainTextEdit::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8170,7 +8170,7 @@ QPainter* PythonQtShell_QPlainTextEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8203,7 +8203,7 @@ void PythonQtShell_QPlainTextEdit::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8225,7 +8225,7 @@ QSize PythonQtShell_QPlainTextEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8258,7 +8258,7 @@ void PythonQtShell_QPlainTextEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8280,7 +8280,7 @@ void PythonQtShell_QPlainTextEdit::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8302,7 +8302,7 @@ bool PythonQtShell_QPlainTextEdit::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8335,7 +8335,7 @@ QSize PythonQtShell_QPlainTextEdit::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8368,7 +8368,7 @@ void PythonQtShell_QPlainTextEdit::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9140,7 +9140,7 @@ void PythonQtShell_QPrintDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9162,7 +9162,7 @@ void PythonQtShell_QPrintDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9184,7 +9184,7 @@ void PythonQtShell_QPrintDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9206,7 +9206,7 @@ void PythonQtShell_QPrintDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9228,7 +9228,7 @@ void PythonQtShell_QPrintDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9250,7 +9250,7 @@ void PythonQtShell_QPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9272,7 +9272,7 @@ void PythonQtShell_QPrintDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9294,7 +9294,7 @@ int PythonQtShell_QPrintDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9327,7 +9327,7 @@ void PythonQtShell_QPrintDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9349,7 +9349,7 @@ void PythonQtShell_QPrintDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9371,7 +9371,7 @@ void PythonQtShell_QPrintDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9393,7 +9393,7 @@ void PythonQtShell_QPrintDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9415,7 +9415,7 @@ void PythonQtShell_QPrintDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9437,7 +9437,7 @@ void PythonQtShell_QPrintDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9459,7 +9459,7 @@ bool PythonQtShell_QPrintDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9492,7 +9492,7 @@ bool PythonQtShell_QPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9525,7 +9525,7 @@ int PythonQtShell_QPrintDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9558,7 +9558,7 @@ void PythonQtShell_QPrintDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9580,7 +9580,7 @@ bool PythonQtShell_QPrintDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9613,7 +9613,7 @@ void PythonQtShell_QPrintDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9635,7 +9635,7 @@ bool PythonQtShell_QPrintDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9668,7 +9668,7 @@ int PythonQtShell_QPrintDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9701,7 +9701,7 @@ void PythonQtShell_QPrintDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9723,7 +9723,7 @@ void PythonQtShell_QPrintDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9745,7 +9745,7 @@ void PythonQtShell_QPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9767,7 +9767,7 @@ QVariant PythonQtShell_QPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9800,7 +9800,7 @@ void PythonQtShell_QPrintDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9822,7 +9822,7 @@ void PythonQtShell_QPrintDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9844,7 +9844,7 @@ void PythonQtShell_QPrintDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9866,7 +9866,7 @@ int PythonQtShell_QPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9899,7 +9899,7 @@ QSize PythonQtShell_QPrintDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9932,7 +9932,7 @@ void PythonQtShell_QPrintDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9954,7 +9954,7 @@ void PythonQtShell_QPrintDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9976,7 +9976,7 @@ void PythonQtShell_QPrintDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9998,7 +9998,7 @@ void PythonQtShell_QPrintDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10020,7 +10020,7 @@ void PythonQtShell_QPrintDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10042,7 +10042,7 @@ bool PythonQtShell_QPrintDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10075,7 +10075,7 @@ QPaintEngine* PythonQtShell_QPrintDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10108,7 +10108,7 @@ void PythonQtShell_QPrintDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10130,7 +10130,7 @@ QPaintDevice* PythonQtShell_QPrintDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10163,7 +10163,7 @@ void PythonQtShell_QPrintDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10185,7 +10185,7 @@ void PythonQtShell_QPrintDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10207,7 +10207,7 @@ void PythonQtShell_QPrintDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10229,7 +10229,7 @@ QPainter* PythonQtShell_QPrintDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10262,7 +10262,7 @@ void PythonQtShell_QPrintDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10284,7 +10284,7 @@ QSize PythonQtShell_QPrintDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10317,7 +10317,7 @@ void PythonQtShell_QPrintDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10339,7 +10339,7 @@ void PythonQtShell_QPrintDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10361,7 +10361,7 @@ void PythonQtShell_QPrintDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10435,7 +10435,7 @@ bool PythonQtShell_QPrintEngine::abort() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10468,7 +10468,7 @@ int PythonQtShell_QPrintEngine::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10501,7 +10501,7 @@ bool PythonQtShell_QPrintEngine::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10534,7 +10534,7 @@ QPrinter::PrinterState PythonQtShell_QPrintEngine::printerState() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("printerState"); + static PyObject* name = PyUnicode_FromString("printerState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPrinter::PrinterState"}; @@ -10567,7 +10567,7 @@ QVariant PythonQtShell_QPrintEngine::property(QPrintEngine::PrintEngineProperty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QPrintEngine::PrintEnginePropertyKey"}; @@ -10600,7 +10600,7 @@ void PythonQtShell_QPrintEngine::setProperty(QPrintEngine::PrintEnginePropertyKe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPrintEngine::PrintEnginePropertyKey" , "const QVariant&"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp index 47ee1f7d9..f9ef3c73a 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp @@ -87,7 +87,7 @@ void PythonQtShell_QPrintPreviewDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -109,7 +109,7 @@ void PythonQtShell_QPrintPreviewDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -131,7 +131,7 @@ void PythonQtShell_QPrintPreviewDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -153,7 +153,7 @@ void PythonQtShell_QPrintPreviewDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -175,7 +175,7 @@ void PythonQtShell_QPrintPreviewDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -197,7 +197,7 @@ void PythonQtShell_QPrintPreviewDialog::contextMenuEvent(QContextMenuEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -219,7 +219,7 @@ void PythonQtShell_QPrintPreviewDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -241,7 +241,7 @@ int PythonQtShell_QPrintPreviewDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -274,7 +274,7 @@ void PythonQtShell_QPrintPreviewDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -296,7 +296,7 @@ void PythonQtShell_QPrintPreviewDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -318,7 +318,7 @@ void PythonQtShell_QPrintPreviewDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -340,7 +340,7 @@ void PythonQtShell_QPrintPreviewDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -362,7 +362,7 @@ void PythonQtShell_QPrintPreviewDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -384,7 +384,7 @@ void PythonQtShell_QPrintPreviewDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -406,7 +406,7 @@ bool PythonQtShell_QPrintPreviewDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -439,7 +439,7 @@ bool PythonQtShell_QPrintPreviewDialog::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -472,7 +472,7 @@ int PythonQtShell_QPrintPreviewDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -505,7 +505,7 @@ void PythonQtShell_QPrintPreviewDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -527,7 +527,7 @@ bool PythonQtShell_QPrintPreviewDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -560,7 +560,7 @@ void PythonQtShell_QPrintPreviewDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -582,7 +582,7 @@ bool PythonQtShell_QPrintPreviewDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -615,7 +615,7 @@ int PythonQtShell_QPrintPreviewDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -648,7 +648,7 @@ void PythonQtShell_QPrintPreviewDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -670,7 +670,7 @@ void PythonQtShell_QPrintPreviewDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -692,7 +692,7 @@ void PythonQtShell_QPrintPreviewDialog::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -714,7 +714,7 @@ QVariant PythonQtShell_QPrintPreviewDialog::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -747,7 +747,7 @@ void PythonQtShell_QPrintPreviewDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -769,7 +769,7 @@ void PythonQtShell_QPrintPreviewDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -791,7 +791,7 @@ void PythonQtShell_QPrintPreviewDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -813,7 +813,7 @@ int PythonQtShell_QPrintPreviewDialog::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -846,7 +846,7 @@ QSize PythonQtShell_QPrintPreviewDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -879,7 +879,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseDoubleClickEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -901,7 +901,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -923,7 +923,7 @@ void PythonQtShell_QPrintPreviewDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -945,7 +945,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -967,7 +967,7 @@ void PythonQtShell_QPrintPreviewDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -989,7 +989,7 @@ bool PythonQtShell_QPrintPreviewDialog::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1022,7 +1022,7 @@ QPaintEngine* PythonQtShell_QPrintPreviewDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1055,7 +1055,7 @@ void PythonQtShell_QPrintPreviewDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1077,7 +1077,7 @@ QPaintDevice* PythonQtShell_QPrintPreviewDialog::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1110,7 +1110,7 @@ void PythonQtShell_QPrintPreviewDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1132,7 +1132,7 @@ void PythonQtShell_QPrintPreviewDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1154,7 +1154,7 @@ void PythonQtShell_QPrintPreviewDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1176,7 +1176,7 @@ QPainter* PythonQtShell_QPrintPreviewDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1209,7 +1209,7 @@ void PythonQtShell_QPrintPreviewDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1231,7 +1231,7 @@ QSize PythonQtShell_QPrintPreviewDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1264,7 +1264,7 @@ void PythonQtShell_QPrintPreviewDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1286,7 +1286,7 @@ void PythonQtShell_QPrintPreviewDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1308,7 +1308,7 @@ void PythonQtShell_QPrintPreviewDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1367,7 +1367,7 @@ void PythonQtShell_QPrintPreviewWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1389,7 +1389,7 @@ void PythonQtShell_QPrintPreviewWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1411,7 +1411,7 @@ void PythonQtShell_QPrintPreviewWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1433,7 +1433,7 @@ void PythonQtShell_QPrintPreviewWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1455,7 +1455,7 @@ void PythonQtShell_QPrintPreviewWidget::contextMenuEvent(QContextMenuEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1477,7 +1477,7 @@ void PythonQtShell_QPrintPreviewWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1499,7 +1499,7 @@ int PythonQtShell_QPrintPreviewWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1532,7 +1532,7 @@ void PythonQtShell_QPrintPreviewWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1554,7 +1554,7 @@ void PythonQtShell_QPrintPreviewWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1576,7 +1576,7 @@ void PythonQtShell_QPrintPreviewWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1598,7 +1598,7 @@ void PythonQtShell_QPrintPreviewWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1620,7 +1620,7 @@ void PythonQtShell_QPrintPreviewWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1642,7 +1642,7 @@ bool PythonQtShell_QPrintPreviewWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1675,7 +1675,7 @@ bool PythonQtShell_QPrintPreviewWidget::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1708,7 +1708,7 @@ void PythonQtShell_QPrintPreviewWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1730,7 +1730,7 @@ bool PythonQtShell_QPrintPreviewWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1763,7 +1763,7 @@ void PythonQtShell_QPrintPreviewWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1785,7 +1785,7 @@ bool PythonQtShell_QPrintPreviewWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1818,7 +1818,7 @@ int PythonQtShell_QPrintPreviewWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1851,7 +1851,7 @@ void PythonQtShell_QPrintPreviewWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1873,7 +1873,7 @@ void PythonQtShell_QPrintPreviewWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1895,7 +1895,7 @@ void PythonQtShell_QPrintPreviewWidget::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1917,7 +1917,7 @@ QVariant PythonQtShell_QPrintPreviewWidget::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1950,7 +1950,7 @@ void PythonQtShell_QPrintPreviewWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1972,7 +1972,7 @@ void PythonQtShell_QPrintPreviewWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1994,7 +1994,7 @@ void PythonQtShell_QPrintPreviewWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2016,7 +2016,7 @@ int PythonQtShell_QPrintPreviewWidget::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2049,7 +2049,7 @@ QSize PythonQtShell_QPrintPreviewWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2082,7 +2082,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseDoubleClickEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2104,7 +2104,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2126,7 +2126,7 @@ void PythonQtShell_QPrintPreviewWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2148,7 +2148,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2170,7 +2170,7 @@ void PythonQtShell_QPrintPreviewWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2192,7 +2192,7 @@ bool PythonQtShell_QPrintPreviewWidget::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2225,7 +2225,7 @@ QPaintEngine* PythonQtShell_QPrintPreviewWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2258,7 +2258,7 @@ void PythonQtShell_QPrintPreviewWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2280,7 +2280,7 @@ QPaintDevice* PythonQtShell_QPrintPreviewWidget::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2313,7 +2313,7 @@ void PythonQtShell_QPrintPreviewWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2335,7 +2335,7 @@ void PythonQtShell_QPrintPreviewWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2357,7 +2357,7 @@ QPainter* PythonQtShell_QPrintPreviewWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2390,7 +2390,7 @@ void PythonQtShell_QPrintPreviewWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2412,7 +2412,7 @@ QSize PythonQtShell_QPrintPreviewWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2445,7 +2445,7 @@ void PythonQtShell_QPrintPreviewWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2467,7 +2467,7 @@ void PythonQtShell_QPrintPreviewWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2489,7 +2489,7 @@ void PythonQtShell_QPrintPreviewWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2568,7 +2568,7 @@ int PythonQtShell_QPrinter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2601,7 +2601,7 @@ void PythonQtShell_QPrinter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2623,7 +2623,7 @@ int PythonQtShell_QPrinter::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2656,7 +2656,7 @@ bool PythonQtShell_QPrinter::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2689,7 +2689,7 @@ QPaintEngine* PythonQtShell_QPrinter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2722,7 +2722,7 @@ QPaintDevice* PythonQtShell_QPrinter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2755,7 +2755,7 @@ void PythonQtShell_QPrinter::setMargins(const QPagedPaintDevice::Margins& m0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -2777,7 +2777,7 @@ void PythonQtShell_QPrinter::setPageSize(QPagedPaintDevice::PageSize arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -2799,7 +2799,7 @@ void PythonQtShell_QPrinter::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -2821,7 +2821,7 @@ QPainter* PythonQtShell_QPrinter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3327,7 +3327,7 @@ void PythonQtShell_QProgressBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3349,7 +3349,7 @@ void PythonQtShell_QProgressBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3371,7 +3371,7 @@ void PythonQtShell_QProgressBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3393,7 +3393,7 @@ void PythonQtShell_QProgressBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3415,7 +3415,7 @@ void PythonQtShell_QProgressBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3437,7 +3437,7 @@ void PythonQtShell_QProgressBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3459,7 +3459,7 @@ int PythonQtShell_QProgressBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3492,7 +3492,7 @@ void PythonQtShell_QProgressBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3514,7 +3514,7 @@ void PythonQtShell_QProgressBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3536,7 +3536,7 @@ void PythonQtShell_QProgressBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3558,7 +3558,7 @@ void PythonQtShell_QProgressBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3580,7 +3580,7 @@ void PythonQtShell_QProgressBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3602,7 +3602,7 @@ bool PythonQtShell_QProgressBar::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3635,7 +3635,7 @@ bool PythonQtShell_QProgressBar::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3668,7 +3668,7 @@ void PythonQtShell_QProgressBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3690,7 +3690,7 @@ bool PythonQtShell_QProgressBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3723,7 +3723,7 @@ void PythonQtShell_QProgressBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3745,7 +3745,7 @@ bool PythonQtShell_QProgressBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3778,7 +3778,7 @@ int PythonQtShell_QProgressBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3811,7 +3811,7 @@ void PythonQtShell_QProgressBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3833,7 +3833,7 @@ void PythonQtShell_QProgressBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3855,7 +3855,7 @@ void PythonQtShell_QProgressBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3877,7 +3877,7 @@ QVariant PythonQtShell_QProgressBar::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3910,7 +3910,7 @@ void PythonQtShell_QProgressBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3932,7 +3932,7 @@ void PythonQtShell_QProgressBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3954,7 +3954,7 @@ void PythonQtShell_QProgressBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3976,7 +3976,7 @@ int PythonQtShell_QProgressBar::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4009,7 +4009,7 @@ QSize PythonQtShell_QProgressBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4042,7 +4042,7 @@ void PythonQtShell_QProgressBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4064,7 +4064,7 @@ void PythonQtShell_QProgressBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4086,7 +4086,7 @@ void PythonQtShell_QProgressBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4108,7 +4108,7 @@ void PythonQtShell_QProgressBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4130,7 +4130,7 @@ void PythonQtShell_QProgressBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4152,7 +4152,7 @@ bool PythonQtShell_QProgressBar::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4185,7 +4185,7 @@ QPaintEngine* PythonQtShell_QProgressBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4218,7 +4218,7 @@ void PythonQtShell_QProgressBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4240,7 +4240,7 @@ QPaintDevice* PythonQtShell_QProgressBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4273,7 +4273,7 @@ void PythonQtShell_QProgressBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4295,7 +4295,7 @@ void PythonQtShell_QProgressBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4317,7 +4317,7 @@ QPainter* PythonQtShell_QProgressBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4350,7 +4350,7 @@ void PythonQtShell_QProgressBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4372,7 +4372,7 @@ QSize PythonQtShell_QProgressBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4405,7 +4405,7 @@ void PythonQtShell_QProgressBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4427,7 +4427,7 @@ QString PythonQtShell_QProgressBar::text() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("text"); + static PyObject* name = PyUnicode_FromString("text"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4460,7 +4460,7 @@ void PythonQtShell_QProgressBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4482,7 +4482,7 @@ void PythonQtShell_QProgressBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4622,7 +4622,7 @@ void PythonQtShell_QProgressDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4644,7 +4644,7 @@ void PythonQtShell_QProgressDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4666,7 +4666,7 @@ void PythonQtShell_QProgressDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4688,7 +4688,7 @@ void PythonQtShell_QProgressDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4710,7 +4710,7 @@ void PythonQtShell_QProgressDialog::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4732,7 +4732,7 @@ void PythonQtShell_QProgressDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4754,7 +4754,7 @@ void PythonQtShell_QProgressDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4776,7 +4776,7 @@ int PythonQtShell_QProgressDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4809,7 +4809,7 @@ void PythonQtShell_QProgressDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4831,7 +4831,7 @@ void PythonQtShell_QProgressDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4853,7 +4853,7 @@ void PythonQtShell_QProgressDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4875,7 +4875,7 @@ void PythonQtShell_QProgressDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4897,7 +4897,7 @@ void PythonQtShell_QProgressDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4919,7 +4919,7 @@ void PythonQtShell_QProgressDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4941,7 +4941,7 @@ bool PythonQtShell_QProgressDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4974,7 +4974,7 @@ bool PythonQtShell_QProgressDialog::eventFilter(QObject* arg__1, QEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5007,7 +5007,7 @@ int PythonQtShell_QProgressDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5040,7 +5040,7 @@ void PythonQtShell_QProgressDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5062,7 +5062,7 @@ bool PythonQtShell_QProgressDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5095,7 +5095,7 @@ void PythonQtShell_QProgressDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5117,7 +5117,7 @@ bool PythonQtShell_QProgressDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5150,7 +5150,7 @@ int PythonQtShell_QProgressDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5183,7 +5183,7 @@ void PythonQtShell_QProgressDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5205,7 +5205,7 @@ void PythonQtShell_QProgressDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5227,7 +5227,7 @@ void PythonQtShell_QProgressDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5249,7 +5249,7 @@ QVariant PythonQtShell_QProgressDialog::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5282,7 +5282,7 @@ void PythonQtShell_QProgressDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5304,7 +5304,7 @@ void PythonQtShell_QProgressDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5326,7 +5326,7 @@ void PythonQtShell_QProgressDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5348,7 +5348,7 @@ int PythonQtShell_QProgressDialog::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5381,7 +5381,7 @@ QSize PythonQtShell_QProgressDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5414,7 +5414,7 @@ void PythonQtShell_QProgressDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5436,7 +5436,7 @@ void PythonQtShell_QProgressDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5458,7 +5458,7 @@ void PythonQtShell_QProgressDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5480,7 +5480,7 @@ void PythonQtShell_QProgressDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5502,7 +5502,7 @@ void PythonQtShell_QProgressDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5524,7 +5524,7 @@ bool PythonQtShell_QProgressDialog::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5557,7 +5557,7 @@ QPaintEngine* PythonQtShell_QProgressDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5590,7 +5590,7 @@ void PythonQtShell_QProgressDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5612,7 +5612,7 @@ QPaintDevice* PythonQtShell_QProgressDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5645,7 +5645,7 @@ void PythonQtShell_QProgressDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5667,7 +5667,7 @@ void PythonQtShell_QProgressDialog::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5689,7 +5689,7 @@ void PythonQtShell_QProgressDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5711,7 +5711,7 @@ QPainter* PythonQtShell_QProgressDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5744,7 +5744,7 @@ void PythonQtShell_QProgressDialog::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5766,7 +5766,7 @@ QSize PythonQtShell_QProgressDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5799,7 +5799,7 @@ void PythonQtShell_QProgressDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5821,7 +5821,7 @@ void PythonQtShell_QProgressDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5843,7 +5843,7 @@ void PythonQtShell_QProgressDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5962,7 +5962,7 @@ void PythonQtShell_QProxyStyle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5984,7 +5984,7 @@ void PythonQtShell_QProxyStyle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6006,7 +6006,7 @@ void PythonQtShell_QProxyStyle::drawComplexControl(QStyle::ComplexControl contr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -6028,7 +6028,7 @@ void PythonQtShell_QProxyStyle::drawControl(QStyle::ControlElement element0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -6050,7 +6050,7 @@ void PythonQtShell_QProxyStyle::drawItemPixmap(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QProxyStyle::drawItemText(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -6094,7 +6094,7 @@ void PythonQtShell_QProxyStyle::drawPrimitive(QStyle::PrimitiveElement element0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -6116,7 +6116,7 @@ bool PythonQtShell_QProxyStyle::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6149,7 +6149,7 @@ bool PythonQtShell_QProxyStyle::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6182,7 +6182,7 @@ QPixmap PythonQtShell_QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -6215,7 +6215,7 @@ QStyle::SubControl PythonQtShell_QProxyStyle::hitTestComplexControl(QStyle::Com if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -6248,7 +6248,7 @@ QRect PythonQtShell_QProxyStyle::itemPixmapRect(const QRect& r0, int flags1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -6281,7 +6281,7 @@ QRect PythonQtShell_QProxyStyle::itemTextRect(const QFontMetrics& fm0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemTextRect"); + static PyObject* name = PyUnicode_FromString("itemTextRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QFontMetrics&" , "const QRect&" , "int" , "bool" , "const QString&"}; @@ -6314,7 +6314,7 @@ int PythonQtShell_QProxyStyle::layoutSpacing(QSizePolicy::ControlType control1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -6347,7 +6347,7 @@ int PythonQtShell_QProxyStyle::pixelMetric(QStyle::PixelMetric metric0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -6380,7 +6380,7 @@ void PythonQtShell_QProxyStyle::polish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -6402,7 +6402,7 @@ void PythonQtShell_QProxyStyle::polish(QPalette& pal0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -6424,7 +6424,7 @@ void PythonQtShell_QProxyStyle::polish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6446,7 +6446,7 @@ QSize PythonQtShell_QProxyStyle::sizeFromContents(QStyle::ContentsType type0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -6479,7 +6479,7 @@ QIcon PythonQtShell_QProxyStyle::standardIcon(QStyle::StandardPixmap standardI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -6512,7 +6512,7 @@ QPalette PythonQtShell_QProxyStyle::standardPalette() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -6545,7 +6545,7 @@ QPixmap PythonQtShell_QProxyStyle::standardPixmap(QStyle::StandardPixmap stand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -6578,7 +6578,7 @@ int PythonQtShell_QProxyStyle::styleHint(QStyle::StyleHint hint0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -6611,7 +6611,7 @@ QRect PythonQtShell_QProxyStyle::subControlRect(QStyle::ComplexControl cc0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -6644,7 +6644,7 @@ QRect PythonQtShell_QProxyStyle::subElementRect(QStyle::SubElement element0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -6677,7 +6677,7 @@ void PythonQtShell_QProxyStyle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6699,7 +6699,7 @@ void PythonQtShell_QProxyStyle::unpolish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -6721,7 +6721,7 @@ void PythonQtShell_QProxyStyle::unpolish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6785,7 +6785,7 @@ void PythonQtShell_QPushButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6807,7 +6807,7 @@ void PythonQtShell_QPushButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6829,7 +6829,7 @@ void PythonQtShell_QPushButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6851,7 +6851,7 @@ void PythonQtShell_QPushButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6873,7 +6873,7 @@ void PythonQtShell_QPushButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6895,7 +6895,7 @@ void PythonQtShell_QPushButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6917,7 +6917,7 @@ void PythonQtShell_QPushButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6939,7 +6939,7 @@ int PythonQtShell_QPushButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6972,7 +6972,7 @@ void PythonQtShell_QPushButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6994,7 +6994,7 @@ void PythonQtShell_QPushButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7016,7 +7016,7 @@ void PythonQtShell_QPushButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7038,7 +7038,7 @@ void PythonQtShell_QPushButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7060,7 +7060,7 @@ void PythonQtShell_QPushButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7082,7 +7082,7 @@ bool PythonQtShell_QPushButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7115,7 +7115,7 @@ bool PythonQtShell_QPushButton::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7148,7 +7148,7 @@ void PythonQtShell_QPushButton::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7170,7 +7170,7 @@ bool PythonQtShell_QPushButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7203,7 +7203,7 @@ void PythonQtShell_QPushButton::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7225,7 +7225,7 @@ bool PythonQtShell_QPushButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7258,7 +7258,7 @@ int PythonQtShell_QPushButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7291,7 +7291,7 @@ void PythonQtShell_QPushButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7313,7 +7313,7 @@ bool PythonQtShell_QPushButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -7346,7 +7346,7 @@ void PythonQtShell_QPushButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7368,7 +7368,7 @@ void PythonQtShell_QPushButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7390,7 +7390,7 @@ QVariant PythonQtShell_QPushButton::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7423,7 +7423,7 @@ void PythonQtShell_QPushButton::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7445,7 +7445,7 @@ void PythonQtShell_QPushButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7467,7 +7467,7 @@ void PythonQtShell_QPushButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7489,7 +7489,7 @@ int PythonQtShell_QPushButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7522,7 +7522,7 @@ QSize PythonQtShell_QPushButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7555,7 +7555,7 @@ void PythonQtShell_QPushButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7577,7 +7577,7 @@ void PythonQtShell_QPushButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7599,7 +7599,7 @@ void PythonQtShell_QPushButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7621,7 +7621,7 @@ void PythonQtShell_QPushButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7643,7 +7643,7 @@ void PythonQtShell_QPushButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7665,7 +7665,7 @@ bool PythonQtShell_QPushButton::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7698,7 +7698,7 @@ void PythonQtShell_QPushButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7720,7 +7720,7 @@ QPaintEngine* PythonQtShell_QPushButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7753,7 +7753,7 @@ void PythonQtShell_QPushButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7775,7 +7775,7 @@ QPaintDevice* PythonQtShell_QPushButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7808,7 +7808,7 @@ void PythonQtShell_QPushButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7830,7 +7830,7 @@ void PythonQtShell_QPushButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7852,7 +7852,7 @@ QPainter* PythonQtShell_QPushButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7885,7 +7885,7 @@ void PythonQtShell_QPushButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7907,7 +7907,7 @@ QSize PythonQtShell_QPushButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7940,7 +7940,7 @@ void PythonQtShell_QPushButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7962,7 +7962,7 @@ void PythonQtShell_QPushButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7984,7 +7984,7 @@ void PythonQtShell_QPushButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8462,7 +8462,7 @@ void PythonQtShell_QRadioButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8484,7 +8484,7 @@ void PythonQtShell_QRadioButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8506,7 +8506,7 @@ void PythonQtShell_QRadioButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8528,7 +8528,7 @@ void PythonQtShell_QRadioButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8550,7 +8550,7 @@ void PythonQtShell_QRadioButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8572,7 +8572,7 @@ void PythonQtShell_QRadioButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8594,7 +8594,7 @@ void PythonQtShell_QRadioButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8616,7 +8616,7 @@ int PythonQtShell_QRadioButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8649,7 +8649,7 @@ void PythonQtShell_QRadioButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8671,7 +8671,7 @@ void PythonQtShell_QRadioButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8693,7 +8693,7 @@ void PythonQtShell_QRadioButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8715,7 +8715,7 @@ void PythonQtShell_QRadioButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8737,7 +8737,7 @@ void PythonQtShell_QRadioButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8759,7 +8759,7 @@ bool PythonQtShell_QRadioButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8792,7 +8792,7 @@ bool PythonQtShell_QRadioButton::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8825,7 +8825,7 @@ void PythonQtShell_QRadioButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8847,7 +8847,7 @@ bool PythonQtShell_QRadioButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8880,7 +8880,7 @@ void PythonQtShell_QRadioButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8902,7 +8902,7 @@ bool PythonQtShell_QRadioButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8935,7 +8935,7 @@ int PythonQtShell_QRadioButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8968,7 +8968,7 @@ void PythonQtShell_QRadioButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8990,7 +8990,7 @@ bool PythonQtShell_QRadioButton::hitButton(const QPoint& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -9023,7 +9023,7 @@ void PythonQtShell_QRadioButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9045,7 +9045,7 @@ void PythonQtShell_QRadioButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9067,7 +9067,7 @@ QVariant PythonQtShell_QRadioButton::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9100,7 +9100,7 @@ void PythonQtShell_QRadioButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9122,7 +9122,7 @@ void PythonQtShell_QRadioButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9144,7 +9144,7 @@ void PythonQtShell_QRadioButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9166,7 +9166,7 @@ int PythonQtShell_QRadioButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9199,7 +9199,7 @@ QSize PythonQtShell_QRadioButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9232,7 +9232,7 @@ void PythonQtShell_QRadioButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9254,7 +9254,7 @@ void PythonQtShell_QRadioButton::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9276,7 +9276,7 @@ void PythonQtShell_QRadioButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9298,7 +9298,7 @@ void PythonQtShell_QRadioButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9320,7 +9320,7 @@ void PythonQtShell_QRadioButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9342,7 +9342,7 @@ bool PythonQtShell_QRadioButton::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9375,7 +9375,7 @@ void PythonQtShell_QRadioButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9397,7 +9397,7 @@ QPaintEngine* PythonQtShell_QRadioButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9430,7 +9430,7 @@ void PythonQtShell_QRadioButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9452,7 +9452,7 @@ QPaintDevice* PythonQtShell_QRadioButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9485,7 +9485,7 @@ void PythonQtShell_QRadioButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9507,7 +9507,7 @@ void PythonQtShell_QRadioButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9529,7 +9529,7 @@ QPainter* PythonQtShell_QRadioButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9562,7 +9562,7 @@ void PythonQtShell_QRadioButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9584,7 +9584,7 @@ QSize PythonQtShell_QRadioButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9617,7 +9617,7 @@ void PythonQtShell_QRadioButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9639,7 +9639,7 @@ void PythonQtShell_QRadioButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9661,7 +9661,7 @@ void PythonQtShell_QRadioButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9725,7 +9725,7 @@ void PythonQtShell_QRasterWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9747,7 +9747,7 @@ void PythonQtShell_QRasterWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9769,7 +9769,7 @@ bool PythonQtShell_QRasterWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9802,7 +9802,7 @@ bool PythonQtShell_QRasterWindow::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9835,7 +9835,7 @@ void PythonQtShell_QRasterWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -9857,7 +9857,7 @@ void PythonQtShell_QRasterWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9879,7 +9879,7 @@ QObject* PythonQtShell_QRasterWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -9912,7 +9912,7 @@ void PythonQtShell_QRasterWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9934,7 +9934,7 @@ QSurfaceFormat PythonQtShell_QRasterWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -9967,7 +9967,7 @@ void PythonQtShell_QRasterWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9989,7 +9989,7 @@ void PythonQtShell_QRasterWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10011,7 +10011,7 @@ void PythonQtShell_QRasterWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10033,7 +10033,7 @@ int PythonQtShell_QRasterWindow::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10066,7 +10066,7 @@ void PythonQtShell_QRasterWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10088,7 +10088,7 @@ void PythonQtShell_QRasterWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10110,7 +10110,7 @@ void PythonQtShell_QRasterWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10132,7 +10132,7 @@ void PythonQtShell_QRasterWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10154,7 +10154,7 @@ void PythonQtShell_QRasterWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10176,7 +10176,7 @@ bool PythonQtShell_QRasterWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10209,7 +10209,7 @@ void PythonQtShell_QRasterWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10231,7 +10231,7 @@ QPaintDevice* PythonQtShell_QRasterWindow::redirected(QPoint* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10264,7 +10264,7 @@ void PythonQtShell_QRasterWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10286,7 +10286,7 @@ void PythonQtShell_QRasterWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10308,7 +10308,7 @@ QSize PythonQtShell_QRasterWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10341,7 +10341,7 @@ QSurface::SurfaceType PythonQtShell_QRasterWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -10374,7 +10374,7 @@ void PythonQtShell_QRasterWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10396,7 +10396,7 @@ void PythonQtShell_QRasterWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10418,7 +10418,7 @@ void PythonQtShell_QRasterWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -10440,7 +10440,7 @@ void PythonQtShell_QRasterWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10698,7 +10698,7 @@ void PythonQtShell_QRegExpValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10720,7 +10720,7 @@ void PythonQtShell_QRegExpValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10742,7 +10742,7 @@ bool PythonQtShell_QRegExpValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10775,7 +10775,7 @@ bool PythonQtShell_QRegExpValidator::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10808,7 +10808,7 @@ void PythonQtShell_QRegExpValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -10830,7 +10830,7 @@ void PythonQtShell_QRegExpValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10852,7 +10852,7 @@ QValidator::State PythonQtShell_QRegExpValidator::validate(QString& input0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -10922,7 +10922,7 @@ void PythonQtShell_QRegularExpressionValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10944,7 +10944,7 @@ void PythonQtShell_QRegularExpressionValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10966,7 +10966,7 @@ bool PythonQtShell_QRegularExpressionValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10999,7 +10999,7 @@ bool PythonQtShell_QRegularExpressionValidator::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11032,7 +11032,7 @@ void PythonQtShell_QRegularExpressionValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11054,7 +11054,7 @@ void PythonQtShell_QRegularExpressionValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11076,7 +11076,7 @@ QValidator::State PythonQtShell_QRegularExpressionValidator::validate(QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11278,7 +11278,7 @@ void PythonQtShell_QRubberBand::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11300,7 +11300,7 @@ void PythonQtShell_QRubberBand::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11322,7 +11322,7 @@ void PythonQtShell_QRubberBand::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11344,7 +11344,7 @@ void PythonQtShell_QRubberBand::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11366,7 +11366,7 @@ void PythonQtShell_QRubberBand::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11388,7 +11388,7 @@ void PythonQtShell_QRubberBand::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11410,7 +11410,7 @@ int PythonQtShell_QRubberBand::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11443,7 +11443,7 @@ void PythonQtShell_QRubberBand::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11465,7 +11465,7 @@ void PythonQtShell_QRubberBand::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11487,7 +11487,7 @@ void PythonQtShell_QRubberBand::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11509,7 +11509,7 @@ void PythonQtShell_QRubberBand::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11531,7 +11531,7 @@ void PythonQtShell_QRubberBand::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11553,7 +11553,7 @@ bool PythonQtShell_QRubberBand::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11586,7 +11586,7 @@ bool PythonQtShell_QRubberBand::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11619,7 +11619,7 @@ void PythonQtShell_QRubberBand::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11641,7 +11641,7 @@ bool PythonQtShell_QRubberBand::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11674,7 +11674,7 @@ void PythonQtShell_QRubberBand::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11696,7 +11696,7 @@ bool PythonQtShell_QRubberBand::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11729,7 +11729,7 @@ int PythonQtShell_QRubberBand::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11762,7 +11762,7 @@ void PythonQtShell_QRubberBand::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11784,7 +11784,7 @@ void PythonQtShell_QRubberBand::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11806,7 +11806,7 @@ void PythonQtShell_QRubberBand::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11828,7 +11828,7 @@ QVariant PythonQtShell_QRubberBand::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11861,7 +11861,7 @@ void PythonQtShell_QRubberBand::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11883,7 +11883,7 @@ void PythonQtShell_QRubberBand::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11905,7 +11905,7 @@ void PythonQtShell_QRubberBand::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11927,7 +11927,7 @@ int PythonQtShell_QRubberBand::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11960,7 +11960,7 @@ QSize PythonQtShell_QRubberBand::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11993,7 +11993,7 @@ void PythonQtShell_QRubberBand::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12015,7 +12015,7 @@ void PythonQtShell_QRubberBand::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12037,7 +12037,7 @@ void PythonQtShell_QRubberBand::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12059,7 +12059,7 @@ void PythonQtShell_QRubberBand::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12081,7 +12081,7 @@ void PythonQtShell_QRubberBand::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12103,7 +12103,7 @@ bool PythonQtShell_QRubberBand::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12136,7 +12136,7 @@ QPaintEngine* PythonQtShell_QRubberBand::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12169,7 +12169,7 @@ void PythonQtShell_QRubberBand::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12191,7 +12191,7 @@ QPaintDevice* PythonQtShell_QRubberBand::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12224,7 +12224,7 @@ void PythonQtShell_QRubberBand::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12246,7 +12246,7 @@ void PythonQtShell_QRubberBand::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12268,7 +12268,7 @@ QPainter* PythonQtShell_QRubberBand::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12301,7 +12301,7 @@ void PythonQtShell_QRubberBand::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12323,7 +12323,7 @@ QSize PythonQtShell_QRubberBand::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12356,7 +12356,7 @@ void PythonQtShell_QRubberBand::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12378,7 +12378,7 @@ void PythonQtShell_QRubberBand::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12400,7 +12400,7 @@ void PythonQtShell_QRubberBand::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12680,7 +12680,7 @@ void PythonQtShell_QScrollArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12702,7 +12702,7 @@ void PythonQtShell_QScrollArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12724,7 +12724,7 @@ void PythonQtShell_QScrollArea::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12746,7 +12746,7 @@ void PythonQtShell_QScrollArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12768,7 +12768,7 @@ void PythonQtShell_QScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12790,7 +12790,7 @@ void PythonQtShell_QScrollArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12812,7 +12812,7 @@ int PythonQtShell_QScrollArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12845,7 +12845,7 @@ void PythonQtShell_QScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12867,7 +12867,7 @@ void PythonQtShell_QScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12889,7 +12889,7 @@ void PythonQtShell_QScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12911,7 +12911,7 @@ void PythonQtShell_QScrollArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12933,7 +12933,7 @@ void PythonQtShell_QScrollArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12955,7 +12955,7 @@ bool PythonQtShell_QScrollArea::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12988,7 +12988,7 @@ bool PythonQtShell_QScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13021,7 +13021,7 @@ void PythonQtShell_QScrollArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13043,7 +13043,7 @@ bool PythonQtShell_QScrollArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13076,7 +13076,7 @@ void PythonQtShell_QScrollArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13098,7 +13098,7 @@ bool PythonQtShell_QScrollArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13131,7 +13131,7 @@ int PythonQtShell_QScrollArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13164,7 +13164,7 @@ void PythonQtShell_QScrollArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13186,7 +13186,7 @@ void PythonQtShell_QScrollArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13208,7 +13208,7 @@ void PythonQtShell_QScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13230,7 +13230,7 @@ QVariant PythonQtShell_QScrollArea::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13263,7 +13263,7 @@ void PythonQtShell_QScrollArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13285,7 +13285,7 @@ void PythonQtShell_QScrollArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13307,7 +13307,7 @@ void PythonQtShell_QScrollArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13329,7 +13329,7 @@ int PythonQtShell_QScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13362,7 +13362,7 @@ QSize PythonQtShell_QScrollArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13395,7 +13395,7 @@ void PythonQtShell_QScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13417,7 +13417,7 @@ void PythonQtShell_QScrollArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13439,7 +13439,7 @@ void PythonQtShell_QScrollArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13461,7 +13461,7 @@ void PythonQtShell_QScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13483,7 +13483,7 @@ void PythonQtShell_QScrollArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13505,7 +13505,7 @@ bool PythonQtShell_QScrollArea::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13538,7 +13538,7 @@ QPaintEngine* PythonQtShell_QScrollArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13571,7 +13571,7 @@ void PythonQtShell_QScrollArea::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13593,7 +13593,7 @@ QPaintDevice* PythonQtShell_QScrollArea::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13626,7 +13626,7 @@ void PythonQtShell_QScrollArea::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13648,7 +13648,7 @@ void PythonQtShell_QScrollArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13670,7 +13670,7 @@ void PythonQtShell_QScrollArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13692,7 +13692,7 @@ void PythonQtShell_QScrollArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13714,7 +13714,7 @@ QPainter* PythonQtShell_QScrollArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13747,7 +13747,7 @@ void PythonQtShell_QScrollArea::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13769,7 +13769,7 @@ QSize PythonQtShell_QScrollArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13802,7 +13802,7 @@ void PythonQtShell_QScrollArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13824,7 +13824,7 @@ void PythonQtShell_QScrollArea::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13846,7 +13846,7 @@ bool PythonQtShell_QScrollArea::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13879,7 +13879,7 @@ QSize PythonQtShell_QScrollArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13912,7 +13912,7 @@ void PythonQtShell_QScrollArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14002,7 +14002,7 @@ void PythonQtShell_QScrollBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14024,7 +14024,7 @@ void PythonQtShell_QScrollBar::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14046,7 +14046,7 @@ void PythonQtShell_QScrollBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14068,7 +14068,7 @@ void PythonQtShell_QScrollBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14090,7 +14090,7 @@ void PythonQtShell_QScrollBar::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14112,7 +14112,7 @@ void PythonQtShell_QScrollBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14134,7 +14134,7 @@ int PythonQtShell_QScrollBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14167,7 +14167,7 @@ void PythonQtShell_QScrollBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14189,7 +14189,7 @@ void PythonQtShell_QScrollBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14211,7 +14211,7 @@ void PythonQtShell_QScrollBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14233,7 +14233,7 @@ void PythonQtShell_QScrollBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14255,7 +14255,7 @@ void PythonQtShell_QScrollBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14277,7 +14277,7 @@ bool PythonQtShell_QScrollBar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14310,7 +14310,7 @@ bool PythonQtShell_QScrollBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14343,7 +14343,7 @@ void PythonQtShell_QScrollBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14365,7 +14365,7 @@ bool PythonQtShell_QScrollBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14398,7 +14398,7 @@ void PythonQtShell_QScrollBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14420,7 +14420,7 @@ bool PythonQtShell_QScrollBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14453,7 +14453,7 @@ int PythonQtShell_QScrollBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14486,7 +14486,7 @@ void PythonQtShell_QScrollBar::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14508,7 +14508,7 @@ void PythonQtShell_QScrollBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14530,7 +14530,7 @@ void PythonQtShell_QScrollBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14552,7 +14552,7 @@ QVariant PythonQtShell_QScrollBar::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14585,7 +14585,7 @@ void PythonQtShell_QScrollBar::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14607,7 +14607,7 @@ void PythonQtShell_QScrollBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14629,7 +14629,7 @@ void PythonQtShell_QScrollBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14651,7 +14651,7 @@ int PythonQtShell_QScrollBar::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14684,7 +14684,7 @@ QSize PythonQtShell_QScrollBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14717,7 +14717,7 @@ void PythonQtShell_QScrollBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14739,7 +14739,7 @@ void PythonQtShell_QScrollBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14761,7 +14761,7 @@ void PythonQtShell_QScrollBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14783,7 +14783,7 @@ void PythonQtShell_QScrollBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14805,7 +14805,7 @@ void PythonQtShell_QScrollBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14827,7 +14827,7 @@ bool PythonQtShell_QScrollBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14860,7 +14860,7 @@ QPaintEngine* PythonQtShell_QScrollBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14893,7 +14893,7 @@ void PythonQtShell_QScrollBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14915,7 +14915,7 @@ QPaintDevice* PythonQtShell_QScrollBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14948,7 +14948,7 @@ void PythonQtShell_QScrollBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14970,7 +14970,7 @@ void PythonQtShell_QScrollBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14992,7 +14992,7 @@ QPainter* PythonQtShell_QScrollBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15025,7 +15025,7 @@ void PythonQtShell_QScrollBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15047,7 +15047,7 @@ QSize PythonQtShell_QScrollBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15080,7 +15080,7 @@ void PythonQtShell_QScrollBar::sliderChange(QAbstractSlider::SliderChange chang if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -15102,7 +15102,7 @@ void PythonQtShell_QScrollBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15124,7 +15124,7 @@ void PythonQtShell_QScrollBar::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15146,7 +15146,7 @@ void PythonQtShell_QScrollBar::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15495,7 +15495,7 @@ void PythonQtShell_QShortcut::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15517,7 +15517,7 @@ void PythonQtShell_QShortcut::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15539,7 +15539,7 @@ bool PythonQtShell_QShortcut::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15572,7 +15572,7 @@ bool PythonQtShell_QShortcut::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15605,7 +15605,7 @@ void PythonQtShell_QShortcut::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp index bca662560..321a5ecb8 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp @@ -76,7 +76,7 @@ void PythonQtShell_QSizeGrip::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -98,7 +98,7 @@ void PythonQtShell_QSizeGrip::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -120,7 +120,7 @@ void PythonQtShell_QSizeGrip::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -142,7 +142,7 @@ void PythonQtShell_QSizeGrip::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -164,7 +164,7 @@ void PythonQtShell_QSizeGrip::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -186,7 +186,7 @@ void PythonQtShell_QSizeGrip::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -208,7 +208,7 @@ int PythonQtShell_QSizeGrip::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -241,7 +241,7 @@ void PythonQtShell_QSizeGrip::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -263,7 +263,7 @@ void PythonQtShell_QSizeGrip::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -285,7 +285,7 @@ void PythonQtShell_QSizeGrip::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -307,7 +307,7 @@ void PythonQtShell_QSizeGrip::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -329,7 +329,7 @@ void PythonQtShell_QSizeGrip::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -351,7 +351,7 @@ bool PythonQtShell_QSizeGrip::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -384,7 +384,7 @@ bool PythonQtShell_QSizeGrip::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -417,7 +417,7 @@ void PythonQtShell_QSizeGrip::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -439,7 +439,7 @@ bool PythonQtShell_QSizeGrip::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -472,7 +472,7 @@ void PythonQtShell_QSizeGrip::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -494,7 +494,7 @@ bool PythonQtShell_QSizeGrip::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -527,7 +527,7 @@ int PythonQtShell_QSizeGrip::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -560,7 +560,7 @@ void PythonQtShell_QSizeGrip::hideEvent(QHideEvent* hideEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -582,7 +582,7 @@ void PythonQtShell_QSizeGrip::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -604,7 +604,7 @@ void PythonQtShell_QSizeGrip::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -626,7 +626,7 @@ QVariant PythonQtShell_QSizeGrip::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -659,7 +659,7 @@ void PythonQtShell_QSizeGrip::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -681,7 +681,7 @@ void PythonQtShell_QSizeGrip::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -703,7 +703,7 @@ void PythonQtShell_QSizeGrip::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -725,7 +725,7 @@ int PythonQtShell_QSizeGrip::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -758,7 +758,7 @@ QSize PythonQtShell_QSizeGrip::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -791,7 +791,7 @@ void PythonQtShell_QSizeGrip::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -813,7 +813,7 @@ void PythonQtShell_QSizeGrip::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -835,7 +835,7 @@ void PythonQtShell_QSizeGrip::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -857,7 +857,7 @@ void PythonQtShell_QSizeGrip::mouseReleaseEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -879,7 +879,7 @@ void PythonQtShell_QSizeGrip::moveEvent(QMoveEvent* moveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -901,7 +901,7 @@ bool PythonQtShell_QSizeGrip::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -934,7 +934,7 @@ QPaintEngine* PythonQtShell_QSizeGrip::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -967,7 +967,7 @@ void PythonQtShell_QSizeGrip::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -989,7 +989,7 @@ QPaintDevice* PythonQtShell_QSizeGrip::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1022,7 +1022,7 @@ void PythonQtShell_QSizeGrip::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1044,7 +1044,7 @@ void PythonQtShell_QSizeGrip::setVisible(bool arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1066,7 +1066,7 @@ QPainter* PythonQtShell_QSizeGrip::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1099,7 +1099,7 @@ void PythonQtShell_QSizeGrip::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1121,7 +1121,7 @@ QSize PythonQtShell_QSizeGrip::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1154,7 +1154,7 @@ void PythonQtShell_QSizeGrip::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1176,7 +1176,7 @@ void PythonQtShell_QSizeGrip::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1198,7 +1198,7 @@ void PythonQtShell_QSizeGrip::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1248,7 +1248,7 @@ void PythonQtShell_QSlider::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1270,7 +1270,7 @@ void PythonQtShell_QSlider::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1292,7 +1292,7 @@ void PythonQtShell_QSlider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1314,7 +1314,7 @@ void PythonQtShell_QSlider::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1336,7 +1336,7 @@ void PythonQtShell_QSlider::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1358,7 +1358,7 @@ void PythonQtShell_QSlider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1380,7 +1380,7 @@ int PythonQtShell_QSlider::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1413,7 +1413,7 @@ void PythonQtShell_QSlider::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1435,7 +1435,7 @@ void PythonQtShell_QSlider::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1457,7 +1457,7 @@ void PythonQtShell_QSlider::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1479,7 +1479,7 @@ void PythonQtShell_QSlider::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1501,7 +1501,7 @@ void PythonQtShell_QSlider::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1523,7 +1523,7 @@ bool PythonQtShell_QSlider::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1556,7 +1556,7 @@ bool PythonQtShell_QSlider::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1589,7 +1589,7 @@ void PythonQtShell_QSlider::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1611,7 +1611,7 @@ bool PythonQtShell_QSlider::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1644,7 +1644,7 @@ void PythonQtShell_QSlider::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1666,7 +1666,7 @@ bool PythonQtShell_QSlider::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1699,7 +1699,7 @@ int PythonQtShell_QSlider::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1732,7 +1732,7 @@ void PythonQtShell_QSlider::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1754,7 +1754,7 @@ void PythonQtShell_QSlider::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1776,7 +1776,7 @@ void PythonQtShell_QSlider::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1798,7 +1798,7 @@ QVariant PythonQtShell_QSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1831,7 +1831,7 @@ void PythonQtShell_QSlider::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1853,7 +1853,7 @@ void PythonQtShell_QSlider::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1875,7 +1875,7 @@ void PythonQtShell_QSlider::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1897,7 +1897,7 @@ int PythonQtShell_QSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1930,7 +1930,7 @@ QSize PythonQtShell_QSlider::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1963,7 +1963,7 @@ void PythonQtShell_QSlider::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1985,7 +1985,7 @@ void PythonQtShell_QSlider::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2007,7 +2007,7 @@ void PythonQtShell_QSlider::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2029,7 +2029,7 @@ void PythonQtShell_QSlider::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2051,7 +2051,7 @@ void PythonQtShell_QSlider::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2073,7 +2073,7 @@ bool PythonQtShell_QSlider::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2106,7 +2106,7 @@ QPaintEngine* PythonQtShell_QSlider::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2139,7 +2139,7 @@ void PythonQtShell_QSlider::paintEvent(QPaintEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2161,7 +2161,7 @@ QPaintDevice* PythonQtShell_QSlider::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2194,7 +2194,7 @@ void PythonQtShell_QSlider::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2216,7 +2216,7 @@ void PythonQtShell_QSlider::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2238,7 +2238,7 @@ QPainter* PythonQtShell_QSlider::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2271,7 +2271,7 @@ void PythonQtShell_QSlider::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2293,7 +2293,7 @@ QSize PythonQtShell_QSlider::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2326,7 +2326,7 @@ void PythonQtShell_QSlider::sliderChange(QAbstractSlider::SliderChange change0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -2348,7 +2348,7 @@ void PythonQtShell_QSlider::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2370,7 +2370,7 @@ void PythonQtShell_QSlider::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2392,7 +2392,7 @@ void PythonQtShell_QSlider::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2476,7 +2476,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::buddy(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2509,7 +2509,7 @@ bool PythonQtShell_QSortFilterProxyModel::canDropMimeData(const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2542,7 +2542,7 @@ bool PythonQtShell_QSortFilterProxyModel::canFetchMore(const QModelIndex& pare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2575,7 +2575,7 @@ void PythonQtShell_QSortFilterProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2597,7 +2597,7 @@ int PythonQtShell_QSortFilterProxyModel::columnCount(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2630,7 +2630,7 @@ void PythonQtShell_QSortFilterProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2652,7 +2652,7 @@ QVariant PythonQtShell_QSortFilterProxyModel::data(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2685,7 +2685,7 @@ bool PythonQtShell_QSortFilterProxyModel::dropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2718,7 +2718,7 @@ bool PythonQtShell_QSortFilterProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2751,7 +2751,7 @@ bool PythonQtShell_QSortFilterProxyModel::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2784,7 +2784,7 @@ void PythonQtShell_QSortFilterProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2806,7 +2806,7 @@ bool PythonQtShell_QSortFilterProxyModel::filterAcceptsColumn(int source_colum if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("filterAcceptsColumn"); + static PyObject* name = PyUnicode_FromString("filterAcceptsColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -2839,7 +2839,7 @@ bool PythonQtShell_QSortFilterProxyModel::filterAcceptsRow(int source_row0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("filterAcceptsRow"); + static PyObject* name = PyUnicode_FromString("filterAcceptsRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -2872,7 +2872,7 @@ Qt::ItemFlags PythonQtShell_QSortFilterProxyModel::flags(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2905,7 +2905,7 @@ bool PythonQtShell_QSortFilterProxyModel::hasChildren(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2938,7 +2938,7 @@ QVariant PythonQtShell_QSortFilterProxyModel::headerData(int section0, Qt::Ori if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2971,7 +2971,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::index(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3004,7 +3004,7 @@ bool PythonQtShell_QSortFilterProxyModel::insertColumns(int column0, int coun if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3037,7 +3037,7 @@ bool PythonQtShell_QSortFilterProxyModel::insertRows(int row0, int count1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3070,7 +3070,7 @@ QMap PythonQtShell_QSortFilterProxyModel::itemData(const QMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3103,7 +3103,7 @@ bool PythonQtShell_QSortFilterProxyModel::lessThan(const QModelIndex& source_l if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lessThan"); + static PyObject* name = PyUnicode_FromString("lessThan"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3136,7 +3136,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::mapFromSource(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3169,7 +3169,7 @@ QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionFromSource(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -3202,7 +3202,7 @@ QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionToSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -3235,7 +3235,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3268,7 +3268,7 @@ QList PythonQtShell_QSortFilterProxyModel::match(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3301,7 +3301,7 @@ QMimeData* PythonQtShell_QSortFilterProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3334,7 +3334,7 @@ QStringList PythonQtShell_QSortFilterProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3367,7 +3367,7 @@ bool PythonQtShell_QSortFilterProxyModel::moveColumns(const QModelIndex& sourc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3400,7 +3400,7 @@ bool PythonQtShell_QSortFilterProxyModel::moveRows(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3433,7 +3433,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::parent(const QModelIndex& chi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3466,7 +3466,7 @@ bool PythonQtShell_QSortFilterProxyModel::removeColumns(int column0, int coun if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3499,7 +3499,7 @@ bool PythonQtShell_QSortFilterProxyModel::removeRows(int row0, int count1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3532,7 +3532,7 @@ void PythonQtShell_QSortFilterProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3554,7 +3554,7 @@ QHash PythonQtShell_QSortFilterProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -3587,7 +3587,7 @@ int PythonQtShell_QSortFilterProxyModel::rowCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3620,7 +3620,7 @@ bool PythonQtShell_QSortFilterProxyModel::setData(const QModelIndex& index0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -3653,7 +3653,7 @@ bool PythonQtShell_QSortFilterProxyModel::setHeaderData(int section0, Qt::Orie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -3686,7 +3686,7 @@ bool PythonQtShell_QSortFilterProxyModel::setItemData(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -3719,7 +3719,7 @@ void PythonQtShell_QSortFilterProxyModel::setSourceModel(QAbstractItemModel* so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -3741,7 +3741,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::sibling(int row0, int column if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3774,7 +3774,7 @@ void PythonQtShell_QSortFilterProxyModel::sort(int column0, Qt::SortOrder orde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -3796,7 +3796,7 @@ QSize PythonQtShell_QSortFilterProxyModel::span(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -3829,7 +3829,7 @@ bool PythonQtShell_QSortFilterProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3862,7 +3862,7 @@ Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDragActions() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3895,7 +3895,7 @@ Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDropActions() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3928,7 +3928,7 @@ void PythonQtShell_QSortFilterProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4093,7 +4093,7 @@ QSizePolicy::ControlTypes PythonQtShell_QSpacerItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -4126,7 +4126,7 @@ Qt::Orientations PythonQtShell_QSpacerItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -4159,7 +4159,7 @@ QRect PythonQtShell_QSpacerItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -4192,7 +4192,7 @@ bool PythonQtShell_QSpacerItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4225,7 +4225,7 @@ int PythonQtShell_QSpacerItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4258,7 +4258,7 @@ void PythonQtShell_QSpacerItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4280,7 +4280,7 @@ bool PythonQtShell_QSpacerItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4313,7 +4313,7 @@ QLayout* PythonQtShell_QSpacerItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -4346,7 +4346,7 @@ QSize PythonQtShell_QSpacerItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4379,7 +4379,7 @@ int PythonQtShell_QSpacerItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4412,7 +4412,7 @@ QSize PythonQtShell_QSpacerItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4445,7 +4445,7 @@ void PythonQtShell_QSpacerItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -4467,7 +4467,7 @@ QSize PythonQtShell_QSpacerItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4500,7 +4500,7 @@ QSpacerItem* PythonQtShell_QSpacerItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -4533,7 +4533,7 @@ QWidget* PythonQtShell_QSpacerItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -4586,7 +4586,7 @@ void PythonQtShell_QSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4608,7 +4608,7 @@ void PythonQtShell_QSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4630,7 +4630,7 @@ void PythonQtShell_QSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4652,7 +4652,7 @@ void PythonQtShell_QSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4674,7 +4674,7 @@ void PythonQtShell_QSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4696,7 +4696,7 @@ void PythonQtShell_QSpinBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4718,7 +4718,7 @@ void PythonQtShell_QSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4740,7 +4740,7 @@ int PythonQtShell_QSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4773,7 +4773,7 @@ void PythonQtShell_QSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4795,7 +4795,7 @@ void PythonQtShell_QSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4817,7 +4817,7 @@ void PythonQtShell_QSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4839,7 +4839,7 @@ void PythonQtShell_QSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4861,7 +4861,7 @@ void PythonQtShell_QSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4883,7 +4883,7 @@ bool PythonQtShell_QSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4916,7 +4916,7 @@ bool PythonQtShell_QSpinBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4949,7 +4949,7 @@ void PythonQtShell_QSpinBox::fixup(QString& str0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -4971,7 +4971,7 @@ void PythonQtShell_QSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4993,7 +4993,7 @@ bool PythonQtShell_QSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5026,7 +5026,7 @@ void PythonQtShell_QSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5048,7 +5048,7 @@ bool PythonQtShell_QSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5081,7 +5081,7 @@ int PythonQtShell_QSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5114,7 +5114,7 @@ void PythonQtShell_QSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5136,7 +5136,7 @@ void PythonQtShell_QSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5158,7 +5158,7 @@ void PythonQtShell_QSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5180,7 +5180,7 @@ QVariant PythonQtShell_QSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5213,7 +5213,7 @@ void PythonQtShell_QSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5235,7 +5235,7 @@ void PythonQtShell_QSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5257,7 +5257,7 @@ void PythonQtShell_QSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5279,7 +5279,7 @@ int PythonQtShell_QSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5312,7 +5312,7 @@ QSize PythonQtShell_QSpinBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5345,7 +5345,7 @@ void PythonQtShell_QSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5367,7 +5367,7 @@ void PythonQtShell_QSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5389,7 +5389,7 @@ void PythonQtShell_QSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5411,7 +5411,7 @@ void PythonQtShell_QSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5433,7 +5433,7 @@ void PythonQtShell_QSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5455,7 +5455,7 @@ bool PythonQtShell_QSpinBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5488,7 +5488,7 @@ QPaintEngine* PythonQtShell_QSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5521,7 +5521,7 @@ void PythonQtShell_QSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5543,7 +5543,7 @@ QPaintDevice* PythonQtShell_QSpinBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5576,7 +5576,7 @@ void PythonQtShell_QSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5598,7 +5598,7 @@ void PythonQtShell_QSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5620,7 +5620,7 @@ QPainter* PythonQtShell_QSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5653,7 +5653,7 @@ void PythonQtShell_QSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5675,7 +5675,7 @@ QSize PythonQtShell_QSpinBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5708,7 +5708,7 @@ void PythonQtShell_QSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5730,7 +5730,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QSpinBox::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -5763,7 +5763,7 @@ void PythonQtShell_QSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5785,7 +5785,7 @@ QString PythonQtShell_QSpinBox::textFromValue(int val0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -5818,7 +5818,7 @@ void PythonQtShell_QSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5840,7 +5840,7 @@ QValidator::State PythonQtShell_QSpinBox::validate(QString& input0, int& pos1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -5873,7 +5873,7 @@ int PythonQtShell_QSpinBox::valueFromText(const QString& text0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -5906,7 +5906,7 @@ void PythonQtShell_QSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6036,7 +6036,7 @@ void PythonQtShell_QSplashScreen::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6058,7 +6058,7 @@ void PythonQtShell_QSplashScreen::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6080,7 +6080,7 @@ void PythonQtShell_QSplashScreen::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6102,7 +6102,7 @@ void PythonQtShell_QSplashScreen::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6124,7 +6124,7 @@ void PythonQtShell_QSplashScreen::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6146,7 +6146,7 @@ void PythonQtShell_QSplashScreen::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6168,7 +6168,7 @@ int PythonQtShell_QSplashScreen::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6201,7 +6201,7 @@ void PythonQtShell_QSplashScreen::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6223,7 +6223,7 @@ void PythonQtShell_QSplashScreen::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6245,7 +6245,7 @@ void PythonQtShell_QSplashScreen::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6267,7 +6267,7 @@ void PythonQtShell_QSplashScreen::drawContents(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawContents"); + static PyObject* name = PyUnicode_FromString("drawContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6289,7 +6289,7 @@ void PythonQtShell_QSplashScreen::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6311,7 +6311,7 @@ void PythonQtShell_QSplashScreen::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6333,7 +6333,7 @@ bool PythonQtShell_QSplashScreen::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6366,7 +6366,7 @@ bool PythonQtShell_QSplashScreen::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6399,7 +6399,7 @@ void PythonQtShell_QSplashScreen::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6421,7 +6421,7 @@ bool PythonQtShell_QSplashScreen::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6454,7 +6454,7 @@ void PythonQtShell_QSplashScreen::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6476,7 +6476,7 @@ bool PythonQtShell_QSplashScreen::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6509,7 +6509,7 @@ int PythonQtShell_QSplashScreen::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6542,7 +6542,7 @@ void PythonQtShell_QSplashScreen::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6564,7 +6564,7 @@ void PythonQtShell_QSplashScreen::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6586,7 +6586,7 @@ void PythonQtShell_QSplashScreen::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6608,7 +6608,7 @@ QVariant PythonQtShell_QSplashScreen::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6641,7 +6641,7 @@ void PythonQtShell_QSplashScreen::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6663,7 +6663,7 @@ void PythonQtShell_QSplashScreen::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6685,7 +6685,7 @@ void PythonQtShell_QSplashScreen::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6707,7 +6707,7 @@ int PythonQtShell_QSplashScreen::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6740,7 +6740,7 @@ QSize PythonQtShell_QSplashScreen::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6773,7 +6773,7 @@ void PythonQtShell_QSplashScreen::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6795,7 +6795,7 @@ void PythonQtShell_QSplashScreen::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6817,7 +6817,7 @@ void PythonQtShell_QSplashScreen::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6839,7 +6839,7 @@ void PythonQtShell_QSplashScreen::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6861,7 +6861,7 @@ void PythonQtShell_QSplashScreen::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6883,7 +6883,7 @@ bool PythonQtShell_QSplashScreen::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6916,7 +6916,7 @@ QPaintEngine* PythonQtShell_QSplashScreen::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6949,7 +6949,7 @@ void PythonQtShell_QSplashScreen::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6971,7 +6971,7 @@ QPaintDevice* PythonQtShell_QSplashScreen::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7004,7 +7004,7 @@ void PythonQtShell_QSplashScreen::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7026,7 +7026,7 @@ void PythonQtShell_QSplashScreen::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7048,7 +7048,7 @@ QPainter* PythonQtShell_QSplashScreen::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7081,7 +7081,7 @@ void PythonQtShell_QSplashScreen::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7103,7 +7103,7 @@ QSize PythonQtShell_QSplashScreen::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7136,7 +7136,7 @@ void PythonQtShell_QSplashScreen::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7158,7 +7158,7 @@ void PythonQtShell_QSplashScreen::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7180,7 +7180,7 @@ void PythonQtShell_QSplashScreen::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7254,7 +7254,7 @@ void PythonQtShell_QSplitter::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7276,7 +7276,7 @@ void PythonQtShell_QSplitter::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7298,7 +7298,7 @@ void PythonQtShell_QSplitter::childEvent(QChildEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7320,7 +7320,7 @@ void PythonQtShell_QSplitter::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7342,7 +7342,7 @@ void PythonQtShell_QSplitter::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7364,7 +7364,7 @@ QSplitterHandle* PythonQtShell_QSplitter::createHandle() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createHandle"); + static PyObject* name = PyUnicode_FromString("createHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSplitterHandle*"}; @@ -7397,7 +7397,7 @@ void PythonQtShell_QSplitter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7419,7 +7419,7 @@ int PythonQtShell_QSplitter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7452,7 +7452,7 @@ void PythonQtShell_QSplitter::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7474,7 +7474,7 @@ void PythonQtShell_QSplitter::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7496,7 +7496,7 @@ void PythonQtShell_QSplitter::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7518,7 +7518,7 @@ void PythonQtShell_QSplitter::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7540,7 +7540,7 @@ void PythonQtShell_QSplitter::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7562,7 +7562,7 @@ bool PythonQtShell_QSplitter::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7595,7 +7595,7 @@ bool PythonQtShell_QSplitter::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7628,7 +7628,7 @@ void PythonQtShell_QSplitter::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7650,7 +7650,7 @@ bool PythonQtShell_QSplitter::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7683,7 +7683,7 @@ void PythonQtShell_QSplitter::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7705,7 +7705,7 @@ bool PythonQtShell_QSplitter::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7738,7 +7738,7 @@ int PythonQtShell_QSplitter::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7771,7 +7771,7 @@ void PythonQtShell_QSplitter::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7793,7 +7793,7 @@ void PythonQtShell_QSplitter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7815,7 +7815,7 @@ void PythonQtShell_QSplitter::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7837,7 +7837,7 @@ QVariant PythonQtShell_QSplitter::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7870,7 +7870,7 @@ void PythonQtShell_QSplitter::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7892,7 +7892,7 @@ void PythonQtShell_QSplitter::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7914,7 +7914,7 @@ void PythonQtShell_QSplitter::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7936,7 +7936,7 @@ int PythonQtShell_QSplitter::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7969,7 +7969,7 @@ QSize PythonQtShell_QSplitter::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8002,7 +8002,7 @@ void PythonQtShell_QSplitter::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8024,7 +8024,7 @@ void PythonQtShell_QSplitter::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8046,7 +8046,7 @@ void PythonQtShell_QSplitter::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8068,7 +8068,7 @@ void PythonQtShell_QSplitter::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8090,7 +8090,7 @@ void PythonQtShell_QSplitter::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8112,7 +8112,7 @@ bool PythonQtShell_QSplitter::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8145,7 +8145,7 @@ QPaintEngine* PythonQtShell_QSplitter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8178,7 +8178,7 @@ void PythonQtShell_QSplitter::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8200,7 +8200,7 @@ QPaintDevice* PythonQtShell_QSplitter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8233,7 +8233,7 @@ void PythonQtShell_QSplitter::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8255,7 +8255,7 @@ void PythonQtShell_QSplitter::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8277,7 +8277,7 @@ QPainter* PythonQtShell_QSplitter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8310,7 +8310,7 @@ void PythonQtShell_QSplitter::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8332,7 +8332,7 @@ QSize PythonQtShell_QSplitter::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8365,7 +8365,7 @@ void PythonQtShell_QSplitter::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8387,7 +8387,7 @@ void PythonQtShell_QSplitter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8409,7 +8409,7 @@ void PythonQtShell_QSplitter::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8608,7 +8608,7 @@ void PythonQtShell_QSplitterHandle::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8630,7 +8630,7 @@ void PythonQtShell_QSplitterHandle::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8652,7 +8652,7 @@ void PythonQtShell_QSplitterHandle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8674,7 +8674,7 @@ void PythonQtShell_QSplitterHandle::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8696,7 +8696,7 @@ void PythonQtShell_QSplitterHandle::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8718,7 +8718,7 @@ void PythonQtShell_QSplitterHandle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8740,7 +8740,7 @@ int PythonQtShell_QSplitterHandle::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8773,7 +8773,7 @@ void PythonQtShell_QSplitterHandle::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8795,7 +8795,7 @@ void PythonQtShell_QSplitterHandle::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8817,7 +8817,7 @@ void PythonQtShell_QSplitterHandle::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8839,7 +8839,7 @@ void PythonQtShell_QSplitterHandle::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8861,7 +8861,7 @@ void PythonQtShell_QSplitterHandle::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8883,7 +8883,7 @@ bool PythonQtShell_QSplitterHandle::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8916,7 +8916,7 @@ bool PythonQtShell_QSplitterHandle::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8949,7 +8949,7 @@ void PythonQtShell_QSplitterHandle::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8971,7 +8971,7 @@ bool PythonQtShell_QSplitterHandle::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9004,7 +9004,7 @@ void PythonQtShell_QSplitterHandle::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9026,7 +9026,7 @@ bool PythonQtShell_QSplitterHandle::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9059,7 +9059,7 @@ int PythonQtShell_QSplitterHandle::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9092,7 +9092,7 @@ void PythonQtShell_QSplitterHandle::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9114,7 +9114,7 @@ void PythonQtShell_QSplitterHandle::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9136,7 +9136,7 @@ void PythonQtShell_QSplitterHandle::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9158,7 +9158,7 @@ QVariant PythonQtShell_QSplitterHandle::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9191,7 +9191,7 @@ void PythonQtShell_QSplitterHandle::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9213,7 +9213,7 @@ void PythonQtShell_QSplitterHandle::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9235,7 +9235,7 @@ void PythonQtShell_QSplitterHandle::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9257,7 +9257,7 @@ int PythonQtShell_QSplitterHandle::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9290,7 +9290,7 @@ QSize PythonQtShell_QSplitterHandle::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9323,7 +9323,7 @@ void PythonQtShell_QSplitterHandle::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9345,7 +9345,7 @@ void PythonQtShell_QSplitterHandle::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9367,7 +9367,7 @@ void PythonQtShell_QSplitterHandle::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9389,7 +9389,7 @@ void PythonQtShell_QSplitterHandle::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9411,7 +9411,7 @@ void PythonQtShell_QSplitterHandle::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9433,7 +9433,7 @@ bool PythonQtShell_QSplitterHandle::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9466,7 +9466,7 @@ QPaintEngine* PythonQtShell_QSplitterHandle::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9499,7 +9499,7 @@ void PythonQtShell_QSplitterHandle::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9521,7 +9521,7 @@ QPaintDevice* PythonQtShell_QSplitterHandle::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9554,7 +9554,7 @@ void PythonQtShell_QSplitterHandle::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9576,7 +9576,7 @@ void PythonQtShell_QSplitterHandle::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9598,7 +9598,7 @@ QPainter* PythonQtShell_QSplitterHandle::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9631,7 +9631,7 @@ void PythonQtShell_QSplitterHandle::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9653,7 +9653,7 @@ QSize PythonQtShell_QSplitterHandle::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9686,7 +9686,7 @@ void PythonQtShell_QSplitterHandle::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9708,7 +9708,7 @@ void PythonQtShell_QSplitterHandle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9730,7 +9730,7 @@ void PythonQtShell_QSplitterHandle::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9810,7 +9810,7 @@ void PythonQtShell_QStackedLayout::addItem(QLayoutItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -9832,7 +9832,7 @@ void PythonQtShell_QStackedLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9854,7 +9854,7 @@ QSizePolicy::ControlTypes PythonQtShell_QStackedLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9887,7 +9887,7 @@ int PythonQtShell_QStackedLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9920,7 +9920,7 @@ void PythonQtShell_QStackedLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9942,7 +9942,7 @@ bool PythonQtShell_QStackedLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9975,7 +9975,7 @@ bool PythonQtShell_QStackedLayout::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10008,7 +10008,7 @@ Qt::Orientations PythonQtShell_QStackedLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10041,7 +10041,7 @@ QRect PythonQtShell_QStackedLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10074,7 +10074,7 @@ bool PythonQtShell_QStackedLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10107,7 +10107,7 @@ int PythonQtShell_QStackedLayout::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10140,7 +10140,7 @@ int PythonQtShell_QStackedLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -10173,7 +10173,7 @@ void PythonQtShell_QStackedLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10195,7 +10195,7 @@ bool PythonQtShell_QStackedLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10228,7 +10228,7 @@ QLayoutItem* PythonQtShell_QStackedLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10261,7 +10261,7 @@ QLayout* PythonQtShell_QStackedLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10294,7 +10294,7 @@ QSize PythonQtShell_QStackedLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10327,7 +10327,7 @@ QSize PythonQtShell_QStackedLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10360,7 +10360,7 @@ void PythonQtShell_QStackedLayout::setGeometry(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10382,7 +10382,7 @@ QSize PythonQtShell_QStackedLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10415,7 +10415,7 @@ QLayoutItem* PythonQtShell_QStackedLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10448,7 +10448,7 @@ void PythonQtShell_QStackedLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10551,7 +10551,7 @@ void PythonQtShell_QStackedWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10573,7 +10573,7 @@ void PythonQtShell_QStackedWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10595,7 +10595,7 @@ void PythonQtShell_QStackedWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10617,7 +10617,7 @@ void PythonQtShell_QStackedWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10639,7 +10639,7 @@ void PythonQtShell_QStackedWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10661,7 +10661,7 @@ void PythonQtShell_QStackedWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10683,7 +10683,7 @@ int PythonQtShell_QStackedWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10716,7 +10716,7 @@ void PythonQtShell_QStackedWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10738,7 +10738,7 @@ void PythonQtShell_QStackedWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10760,7 +10760,7 @@ void PythonQtShell_QStackedWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10782,7 +10782,7 @@ void PythonQtShell_QStackedWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10804,7 +10804,7 @@ void PythonQtShell_QStackedWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10826,7 +10826,7 @@ bool PythonQtShell_QStackedWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10859,7 +10859,7 @@ bool PythonQtShell_QStackedWidget::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10892,7 +10892,7 @@ void PythonQtShell_QStackedWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10914,7 +10914,7 @@ bool PythonQtShell_QStackedWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10947,7 +10947,7 @@ void PythonQtShell_QStackedWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10969,7 +10969,7 @@ bool PythonQtShell_QStackedWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11002,7 +11002,7 @@ int PythonQtShell_QStackedWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11035,7 +11035,7 @@ void PythonQtShell_QStackedWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11057,7 +11057,7 @@ void PythonQtShell_QStackedWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11079,7 +11079,7 @@ void PythonQtShell_QStackedWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11101,7 +11101,7 @@ QVariant PythonQtShell_QStackedWidget::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11134,7 +11134,7 @@ void PythonQtShell_QStackedWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11156,7 +11156,7 @@ void PythonQtShell_QStackedWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11178,7 +11178,7 @@ void PythonQtShell_QStackedWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11200,7 +11200,7 @@ int PythonQtShell_QStackedWidget::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11233,7 +11233,7 @@ QSize PythonQtShell_QStackedWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11266,7 +11266,7 @@ void PythonQtShell_QStackedWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11288,7 +11288,7 @@ void PythonQtShell_QStackedWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11310,7 +11310,7 @@ void PythonQtShell_QStackedWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11332,7 +11332,7 @@ void PythonQtShell_QStackedWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11354,7 +11354,7 @@ void PythonQtShell_QStackedWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11376,7 +11376,7 @@ bool PythonQtShell_QStackedWidget::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11409,7 +11409,7 @@ QPaintEngine* PythonQtShell_QStackedWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11442,7 +11442,7 @@ void PythonQtShell_QStackedWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11464,7 +11464,7 @@ QPaintDevice* PythonQtShell_QStackedWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11497,7 +11497,7 @@ void PythonQtShell_QStackedWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11519,7 +11519,7 @@ void PythonQtShell_QStackedWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11541,7 +11541,7 @@ QPainter* PythonQtShell_QStackedWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11574,7 +11574,7 @@ void PythonQtShell_QStackedWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11596,7 +11596,7 @@ QSize PythonQtShell_QStackedWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11629,7 +11629,7 @@ void PythonQtShell_QStackedWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11651,7 +11651,7 @@ void PythonQtShell_QStackedWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11673,7 +11673,7 @@ void PythonQtShell_QStackedWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11758,7 +11758,7 @@ QStandardItem* PythonQtShell_QStandardItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStandardItem*"}; @@ -11791,7 +11791,7 @@ QVariant PythonQtShell_QStandardItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -11824,7 +11824,7 @@ void PythonQtShell_QStandardItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -11846,7 +11846,7 @@ void PythonQtShell_QStandardItem::setData(const QVariant& value0, int role1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&" , "int"}; @@ -11868,7 +11868,7 @@ int PythonQtShell_QStandardItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11901,7 +11901,7 @@ void PythonQtShell_QStandardItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -12379,7 +12379,7 @@ QModelIndex PythonQtShell_QStandardItemModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12412,7 +12412,7 @@ bool PythonQtShell_QStandardItemModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12445,7 +12445,7 @@ bool PythonQtShell_QStandardItemModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12478,7 +12478,7 @@ void PythonQtShell_QStandardItemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12500,7 +12500,7 @@ int PythonQtShell_QStandardItemModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12533,7 +12533,7 @@ void PythonQtShell_QStandardItemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12555,7 +12555,7 @@ QVariant PythonQtShell_QStandardItemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -12588,7 +12588,7 @@ bool PythonQtShell_QStandardItemModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12621,7 +12621,7 @@ bool PythonQtShell_QStandardItemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12654,7 +12654,7 @@ bool PythonQtShell_QStandardItemModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12687,7 +12687,7 @@ void PythonQtShell_QStandardItemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12709,7 +12709,7 @@ Qt::ItemFlags PythonQtShell_QStandardItemModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -12742,7 +12742,7 @@ bool PythonQtShell_QStandardItemModel::hasChildren(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12775,7 +12775,7 @@ QVariant PythonQtShell_QStandardItemModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -12808,7 +12808,7 @@ QModelIndex PythonQtShell_QStandardItemModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12841,7 +12841,7 @@ bool PythonQtShell_QStandardItemModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12874,7 +12874,7 @@ bool PythonQtShell_QStandardItemModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12907,7 +12907,7 @@ QMap PythonQtShell_QStandardItemModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -12940,7 +12940,7 @@ QList PythonQtShell_QStandardItemModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -12973,7 +12973,7 @@ QMimeData* PythonQtShell_QStandardItemModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -13006,7 +13006,7 @@ QStringList PythonQtShell_QStandardItemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13039,7 +13039,7 @@ bool PythonQtShell_QStandardItemModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13072,7 +13072,7 @@ bool PythonQtShell_QStandardItemModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13105,7 +13105,7 @@ QModelIndex PythonQtShell_QStandardItemModel::parent(const QModelIndex& child0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -13138,7 +13138,7 @@ bool PythonQtShell_QStandardItemModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13171,7 +13171,7 @@ bool PythonQtShell_QStandardItemModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13204,7 +13204,7 @@ void PythonQtShell_QStandardItemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13226,7 +13226,7 @@ QHash PythonQtShell_QStandardItemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -13259,7 +13259,7 @@ int PythonQtShell_QStandardItemModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13292,7 +13292,7 @@ bool PythonQtShell_QStandardItemModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -13325,7 +13325,7 @@ bool PythonQtShell_QStandardItemModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -13358,7 +13358,7 @@ bool PythonQtShell_QStandardItemModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -13391,7 +13391,7 @@ QModelIndex PythonQtShell_QStandardItemModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13424,7 +13424,7 @@ void PythonQtShell_QStandardItemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -13446,7 +13446,7 @@ QSize PythonQtShell_QStandardItemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -13479,7 +13479,7 @@ bool PythonQtShell_QStandardItemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13512,7 +13512,7 @@ Qt::DropActions PythonQtShell_QStandardItemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13545,7 +13545,7 @@ Qt::DropActions PythonQtShell_QStandardItemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13578,7 +13578,7 @@ void PythonQtShell_QStandardItemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13881,7 +13881,7 @@ void PythonQtShell_QStatusBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13903,7 +13903,7 @@ void PythonQtShell_QStatusBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13925,7 +13925,7 @@ void PythonQtShell_QStatusBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13947,7 +13947,7 @@ void PythonQtShell_QStatusBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13969,7 +13969,7 @@ void PythonQtShell_QStatusBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13991,7 +13991,7 @@ void PythonQtShell_QStatusBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14013,7 +14013,7 @@ int PythonQtShell_QStatusBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14046,7 +14046,7 @@ void PythonQtShell_QStatusBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14068,7 +14068,7 @@ void PythonQtShell_QStatusBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14090,7 +14090,7 @@ void PythonQtShell_QStatusBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14112,7 +14112,7 @@ void PythonQtShell_QStatusBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14134,7 +14134,7 @@ void PythonQtShell_QStatusBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14156,7 +14156,7 @@ bool PythonQtShell_QStatusBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14189,7 +14189,7 @@ bool PythonQtShell_QStatusBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14222,7 +14222,7 @@ void PythonQtShell_QStatusBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14244,7 +14244,7 @@ bool PythonQtShell_QStatusBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14277,7 +14277,7 @@ void PythonQtShell_QStatusBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14299,7 +14299,7 @@ bool PythonQtShell_QStatusBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14332,7 +14332,7 @@ int PythonQtShell_QStatusBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14365,7 +14365,7 @@ void PythonQtShell_QStatusBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14387,7 +14387,7 @@ void PythonQtShell_QStatusBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14409,7 +14409,7 @@ void PythonQtShell_QStatusBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14431,7 +14431,7 @@ QVariant PythonQtShell_QStatusBar::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14464,7 +14464,7 @@ void PythonQtShell_QStatusBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14486,7 +14486,7 @@ void PythonQtShell_QStatusBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14508,7 +14508,7 @@ void PythonQtShell_QStatusBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14530,7 +14530,7 @@ int PythonQtShell_QStatusBar::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14563,7 +14563,7 @@ QSize PythonQtShell_QStatusBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14596,7 +14596,7 @@ void PythonQtShell_QStatusBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14618,7 +14618,7 @@ void PythonQtShell_QStatusBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14640,7 +14640,7 @@ void PythonQtShell_QStatusBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14662,7 +14662,7 @@ void PythonQtShell_QStatusBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14684,7 +14684,7 @@ void PythonQtShell_QStatusBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14706,7 +14706,7 @@ bool PythonQtShell_QStatusBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14739,7 +14739,7 @@ QPaintEngine* PythonQtShell_QStatusBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14772,7 +14772,7 @@ void PythonQtShell_QStatusBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14794,7 +14794,7 @@ QPaintDevice* PythonQtShell_QStatusBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14827,7 +14827,7 @@ void PythonQtShell_QStatusBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14849,7 +14849,7 @@ void PythonQtShell_QStatusBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14871,7 +14871,7 @@ QPainter* PythonQtShell_QStatusBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14904,7 +14904,7 @@ void PythonQtShell_QStatusBar::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14926,7 +14926,7 @@ QSize PythonQtShell_QStatusBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14959,7 +14959,7 @@ void PythonQtShell_QStatusBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14981,7 +14981,7 @@ void PythonQtShell_QStatusBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15003,7 +15003,7 @@ void PythonQtShell_QStatusBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15109,7 +15109,7 @@ QModelIndex PythonQtShell_QStringListModel::buddy(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -15142,7 +15142,7 @@ bool PythonQtShell_QStringListModel::canDropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -15175,7 +15175,7 @@ bool PythonQtShell_QStringListModel::canFetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -15208,7 +15208,7 @@ void PythonQtShell_QStringListModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15230,7 +15230,7 @@ void PythonQtShell_QStringListModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15252,7 +15252,7 @@ QVariant PythonQtShell_QStringListModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -15285,7 +15285,7 @@ bool PythonQtShell_QStringListModel::dropMimeData(const QMimeData* data0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -15318,7 +15318,7 @@ bool PythonQtShell_QStringListModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15351,7 +15351,7 @@ bool PythonQtShell_QStringListModel::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15384,7 +15384,7 @@ void PythonQtShell_QStringListModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -15406,7 +15406,7 @@ Qt::ItemFlags PythonQtShell_QStringListModel::flags(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -15439,7 +15439,7 @@ QVariant PythonQtShell_QStringListModel::headerData(int section0, Qt::Orientat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -15472,7 +15472,7 @@ QModelIndex PythonQtShell_QStringListModel::index(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15505,7 +15505,7 @@ bool PythonQtShell_QStringListModel::insertColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15538,7 +15538,7 @@ bool PythonQtShell_QStringListModel::insertRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15571,7 +15571,7 @@ QMap PythonQtShell_QStringListModel::itemData(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -15604,7 +15604,7 @@ QList PythonQtShell_QStringListModel::match(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -15637,7 +15637,7 @@ QMimeData* PythonQtShell_QStringListModel::mimeData(const QList& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -15670,7 +15670,7 @@ QStringList PythonQtShell_QStringListModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -15703,7 +15703,7 @@ bool PythonQtShell_QStringListModel::moveColumns(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15736,7 +15736,7 @@ bool PythonQtShell_QStringListModel::moveRows(const QModelIndex& sourceParent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15769,7 +15769,7 @@ bool PythonQtShell_QStringListModel::removeColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15802,7 +15802,7 @@ bool PythonQtShell_QStringListModel::removeRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15835,7 +15835,7 @@ void PythonQtShell_QStringListModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15857,7 +15857,7 @@ QHash PythonQtShell_QStringListModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -15890,7 +15890,7 @@ int PythonQtShell_QStringListModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -15923,7 +15923,7 @@ bool PythonQtShell_QStringListModel::setData(const QModelIndex& index0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -15956,7 +15956,7 @@ bool PythonQtShell_QStringListModel::setHeaderData(int section0, Qt::Orientati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -15989,7 +15989,7 @@ bool PythonQtShell_QStringListModel::setItemData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -16022,7 +16022,7 @@ QModelIndex PythonQtShell_QStringListModel::sibling(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -16055,7 +16055,7 @@ void PythonQtShell_QStringListModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -16077,7 +16077,7 @@ QSize PythonQtShell_QStringListModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -16110,7 +16110,7 @@ bool PythonQtShell_QStringListModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16143,7 +16143,7 @@ Qt::DropActions PythonQtShell_QStringListModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16176,7 +16176,7 @@ Qt::DropActions PythonQtShell_QStringListModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16209,7 +16209,7 @@ void PythonQtShell_QStringListModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp index e412945f0..404b50390 100644 --- a/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp @@ -518,7 +518,7 @@ void PythonQtShell_QStylePlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -540,7 +540,7 @@ QStyle* PythonQtShell_QStylePlugin::create(const QString& key0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle*" , "const QString&"}; @@ -573,7 +573,7 @@ void PythonQtShell_QStylePlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -595,7 +595,7 @@ bool PythonQtShell_QStylePlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -628,7 +628,7 @@ bool PythonQtShell_QStylePlugin::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -661,7 +661,7 @@ void PythonQtShell_QStylePlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -711,7 +711,7 @@ void PythonQtShell_QStyledItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -733,7 +733,7 @@ QWidget* PythonQtShell_QStyledItemDelegate::createEditor(QWidget* parent0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -766,7 +766,7 @@ void PythonQtShell_QStyledItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -788,7 +788,7 @@ void PythonQtShell_QStyledItemDelegate::destroyEditor(QWidget* editor0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -810,7 +810,7 @@ QString PythonQtShell_QStyledItemDelegate::displayText(const QVariant& value0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("displayText"); + static PyObject* name = PyUnicode_FromString("displayText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QVariant&" , "const QLocale&"}; @@ -843,7 +843,7 @@ bool PythonQtShell_QStyledItemDelegate::editorEvent(QEvent* event0, QAbstractI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -876,7 +876,7 @@ bool PythonQtShell_QStyledItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -909,7 +909,7 @@ bool PythonQtShell_QStyledItemDelegate::eventFilter(QObject* object0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -942,7 +942,7 @@ bool PythonQtShell_QStyledItemDelegate::helpEvent(QHelpEvent* event0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -975,7 +975,7 @@ void PythonQtShell_QStyledItemDelegate::initStyleOption(QStyleOptionViewItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOptionViewItem*" , "const QModelIndex&"}; @@ -997,7 +997,7 @@ void PythonQtShell_QStyledItemDelegate::paint(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -1019,7 +1019,7 @@ QVector PythonQtShell_QStyledItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -1052,7 +1052,7 @@ void PythonQtShell_QStyledItemDelegate::setEditorData(QWidget* editor0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -1074,7 +1074,7 @@ void PythonQtShell_QStyledItemDelegate::setModelData(QWidget* editor0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -1096,7 +1096,7 @@ QSize PythonQtShell_QStyledItemDelegate::sizeHint(const QStyleOptionViewItem& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -1129,7 +1129,7 @@ void PythonQtShell_QStyledItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1151,7 +1151,7 @@ void PythonQtShell_QStyledItemDelegate::updateEditorGeometry(QWidget* editor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; diff --git a/generated_cpp_511/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp b/generated_cpp_511/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp index b4abeb246..069eb2445 100644 --- a/generated_cpp_511/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +++ b/generated_cpp_511/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp @@ -57,7 +57,7 @@ int PythonQtShell_QBitmap::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -90,7 +90,7 @@ int PythonQtShell_QBitmap::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -123,7 +123,7 @@ QPaintEngine* PythonQtShell_QBitmap::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1504,7 +1504,7 @@ int PythonQtShell_QImage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1537,7 +1537,7 @@ void PythonQtShell_QImage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1559,7 +1559,7 @@ int PythonQtShell_QImage::metric(QPaintDevice::PaintDeviceMetric metric0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1592,7 +1592,7 @@ QPaintEngine* PythonQtShell_QImage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1625,7 +1625,7 @@ QPaintDevice* PythonQtShell_QImage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1658,7 +1658,7 @@ QPainter* PythonQtShell_QImage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2875,7 +2875,7 @@ int PythonQtShell_QPixmap::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2908,7 +2908,7 @@ void PythonQtShell_QPixmap::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2930,7 +2930,7 @@ int PythonQtShell_QPixmap::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2963,7 +2963,7 @@ QPaintEngine* PythonQtShell_QPixmap::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2996,7 +2996,7 @@ QPaintDevice* PythonQtShell_QPixmap::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3029,7 +3029,7 @@ QPainter* PythonQtShell_QPixmap::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp index a15407226..f6538f740 100644 --- a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +++ b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp @@ -47,7 +47,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -69,7 +69,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -91,7 +91,7 @@ QString PythonQtShell_QAbstractAudioDeviceInfo::deviceName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceName"); + static PyObject* name = PyUnicode_FromString("deviceName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -124,7 +124,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -157,7 +157,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -190,7 +190,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::isFormatSupported(const QAudioForm if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QAudioFormat&"}; @@ -223,7 +223,7 @@ QAudioFormat PythonQtShell_QAbstractAudioDeviceInfo::preferredFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preferredFormat"); + static PyObject* name = PyUnicode_FromString("preferredFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -256,7 +256,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedB if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedByteOrders"); + static PyObject* name = PyUnicode_FromString("supportedByteOrders"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -289,7 +289,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedChannelCounts() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedChannelCounts"); + static PyObject* name = PyUnicode_FromString("supportedChannelCounts"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -322,7 +322,7 @@ QStringList PythonQtShell_QAbstractAudioDeviceInfo::supportedCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedCodecs"); + static PyObject* name = PyUnicode_FromString("supportedCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -355,7 +355,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedSampleRates() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleRates"); + static PyObject* name = PyUnicode_FromString("supportedSampleRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -388,7 +388,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedSampleSizes() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleSizes"); + static PyObject* name = PyUnicode_FromString("supportedSampleSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -421,7 +421,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::suppor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleTypes"); + static PyObject* name = PyUnicode_FromString("supportedSampleTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -454,7 +454,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -544,7 +544,7 @@ int PythonQtShell_QAbstractAudioInput::bufferSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferSize"); + static PyObject* name = PyUnicode_FromString("bufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -577,7 +577,7 @@ int PythonQtShell_QAbstractAudioInput::bytesReady() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesReady"); + static PyObject* name = PyUnicode_FromString("bytesReady"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -610,7 +610,7 @@ void PythonQtShell_QAbstractAudioInput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -632,7 +632,7 @@ void PythonQtShell_QAbstractAudioInput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -654,7 +654,7 @@ qint64 PythonQtShell_QAbstractAudioInput::elapsedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elapsedUSecs"); + static PyObject* name = PyUnicode_FromString("elapsedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -687,7 +687,7 @@ QAudio::Error PythonQtShell_QAbstractAudioInput::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Error"}; @@ -720,7 +720,7 @@ bool PythonQtShell_QAbstractAudioInput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -753,7 +753,7 @@ bool PythonQtShell_QAbstractAudioInput::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -786,7 +786,7 @@ QAudioFormat PythonQtShell_QAbstractAudioInput::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -819,7 +819,7 @@ int PythonQtShell_QAbstractAudioInput::notifyInterval() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notifyInterval"); + static PyObject* name = PyUnicode_FromString("notifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -852,7 +852,7 @@ int PythonQtShell_QAbstractAudioInput::periodSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("periodSize"); + static PyObject* name = PyUnicode_FromString("periodSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -885,7 +885,7 @@ qint64 PythonQtShell_QAbstractAudioInput::processedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processedUSecs"); + static PyObject* name = PyUnicode_FromString("processedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -918,7 +918,7 @@ void PythonQtShell_QAbstractAudioInput::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -940,7 +940,7 @@ void PythonQtShell_QAbstractAudioInput::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -962,7 +962,7 @@ void PythonQtShell_QAbstractAudioInput::setBufferSize(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferSize"); + static PyObject* name = PyUnicode_FromString("setBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -984,7 +984,7 @@ void PythonQtShell_QAbstractAudioInput::setFormat(const QAudioFormat& fmt0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFormat"); + static PyObject* name = PyUnicode_FromString("setFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -1006,7 +1006,7 @@ void PythonQtShell_QAbstractAudioInput::setNotifyInterval(int milliSeconds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNotifyInterval"); + static PyObject* name = PyUnicode_FromString("setNotifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1028,7 +1028,7 @@ void PythonQtShell_QAbstractAudioInput::setVolume(qreal arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1050,7 +1050,7 @@ QIODevice* PythonQtShell_QAbstractAudioInput::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -1083,7 +1083,7 @@ void PythonQtShell_QAbstractAudioInput::start(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -1105,7 +1105,7 @@ QAudio::State PythonQtShell_QAbstractAudioInput::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::State"}; @@ -1138,7 +1138,7 @@ void PythonQtShell_QAbstractAudioInput::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1160,7 +1160,7 @@ void PythonQtShell_QAbstractAudioInput::suspend() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("suspend"); + static PyObject* name = PyUnicode_FromString("suspend"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1182,7 +1182,7 @@ void PythonQtShell_QAbstractAudioInput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1204,7 +1204,7 @@ qreal PythonQtShell_QAbstractAudioInput::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -1360,7 +1360,7 @@ int PythonQtShell_QAbstractAudioOutput::bufferSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferSize"); + static PyObject* name = PyUnicode_FromString("bufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1393,7 +1393,7 @@ int PythonQtShell_QAbstractAudioOutput::bytesFree() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesFree"); + static PyObject* name = PyUnicode_FromString("bytesFree"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1426,7 +1426,7 @@ QString PythonQtShell_QAbstractAudioOutput::category() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("category"); + static PyObject* name = PyUnicode_FromString("category"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1459,7 +1459,7 @@ void PythonQtShell_QAbstractAudioOutput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1481,7 +1481,7 @@ void PythonQtShell_QAbstractAudioOutput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1503,7 +1503,7 @@ qint64 PythonQtShell_QAbstractAudioOutput::elapsedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elapsedUSecs"); + static PyObject* name = PyUnicode_FromString("elapsedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1536,7 +1536,7 @@ QAudio::Error PythonQtShell_QAbstractAudioOutput::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Error"}; @@ -1569,7 +1569,7 @@ bool PythonQtShell_QAbstractAudioOutput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1602,7 +1602,7 @@ bool PythonQtShell_QAbstractAudioOutput::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1635,7 +1635,7 @@ QAudioFormat PythonQtShell_QAbstractAudioOutput::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -1668,7 +1668,7 @@ int PythonQtShell_QAbstractAudioOutput::notifyInterval() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notifyInterval"); + static PyObject* name = PyUnicode_FromString("notifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1701,7 +1701,7 @@ int PythonQtShell_QAbstractAudioOutput::periodSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("periodSize"); + static PyObject* name = PyUnicode_FromString("periodSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1734,7 +1734,7 @@ qint64 PythonQtShell_QAbstractAudioOutput::processedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processedUSecs"); + static PyObject* name = PyUnicode_FromString("processedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1767,7 +1767,7 @@ void PythonQtShell_QAbstractAudioOutput::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1789,7 +1789,7 @@ void PythonQtShell_QAbstractAudioOutput::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1811,7 +1811,7 @@ void PythonQtShell_QAbstractAudioOutput::setBufferSize(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferSize"); + static PyObject* name = PyUnicode_FromString("setBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1833,7 +1833,7 @@ void PythonQtShell_QAbstractAudioOutput::setCategory(const QString& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCategory"); + static PyObject* name = PyUnicode_FromString("setCategory"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1855,7 +1855,7 @@ void PythonQtShell_QAbstractAudioOutput::setFormat(const QAudioFormat& fmt0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFormat"); + static PyObject* name = PyUnicode_FromString("setFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -1877,7 +1877,7 @@ void PythonQtShell_QAbstractAudioOutput::setNotifyInterval(int milliSeconds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNotifyInterval"); + static PyObject* name = PyUnicode_FromString("setNotifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1899,7 +1899,7 @@ void PythonQtShell_QAbstractAudioOutput::setVolume(qreal arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1921,7 +1921,7 @@ QIODevice* PythonQtShell_QAbstractAudioOutput::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -1954,7 +1954,7 @@ void PythonQtShell_QAbstractAudioOutput::start(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -1976,7 +1976,7 @@ QAudio::State PythonQtShell_QAbstractAudioOutput::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::State"}; @@ -2009,7 +2009,7 @@ void PythonQtShell_QAbstractAudioOutput::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2031,7 +2031,7 @@ void PythonQtShell_QAbstractAudioOutput::suspend() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("suspend"); + static PyObject* name = PyUnicode_FromString("suspend"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2053,7 +2053,7 @@ void PythonQtShell_QAbstractAudioOutput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2075,7 +2075,7 @@ qreal PythonQtShell_QAbstractAudioOutput::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -2241,7 +2241,7 @@ QVariant PythonQtShell_QAbstractVideoBuffer::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -2274,7 +2274,7 @@ uchar* PythonQtShell_QAbstractVideoBuffer::map(QAbstractVideoBuffer::MapMode m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("map"); + static PyObject* name = PyUnicode_FromString("map"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"uchar*" , "QAbstractVideoBuffer::MapMode" , "int*" , "int*"}; @@ -2307,7 +2307,7 @@ QAbstractVideoBuffer::MapMode PythonQtShell_QAbstractVideoBuffer::mapMode() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapMode"); + static PyObject* name = PyUnicode_FromString("mapMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoBuffer::MapMode"}; @@ -2340,7 +2340,7 @@ void PythonQtShell_QAbstractVideoBuffer::release() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2362,7 +2362,7 @@ void PythonQtShell_QAbstractVideoBuffer::unmap() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unmap"); + static PyObject* name = PyUnicode_FromString("unmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2424,7 +2424,7 @@ void PythonQtShell_QAbstractVideoSurface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2446,7 +2446,7 @@ void PythonQtShell_QAbstractVideoSurface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2468,7 +2468,7 @@ bool PythonQtShell_QAbstractVideoSurface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2501,7 +2501,7 @@ bool PythonQtShell_QAbstractVideoSurface::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2534,7 +2534,7 @@ bool PythonQtShell_QAbstractVideoSurface::isFormatSupported(const QVideoSurface if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -2567,7 +2567,7 @@ QVideoSurfaceFormat PythonQtShell_QAbstractVideoSurface::nearestFormat(const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nearestFormat"); + static PyObject* name = PyUnicode_FromString("nearestFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoSurfaceFormat" , "const QVideoSurfaceFormat&"}; @@ -2600,7 +2600,7 @@ bool PythonQtShell_QAbstractVideoSurface::present(const QVideoFrame& frame0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("present"); + static PyObject* name = PyUnicode_FromString("present"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoFrame&"}; @@ -2633,7 +2633,7 @@ bool PythonQtShell_QAbstractVideoSurface::start(const QVideoSurfaceFormat& for if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -2666,7 +2666,7 @@ void PythonQtShell_QAbstractVideoSurface::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2688,7 +2688,7 @@ QList PythonQtShell_QAbstractVideoSurface::supported if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedPixelFormats"); + static PyObject* name = PyUnicode_FromString("supportedPixelFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAbstractVideoBuffer::HandleType"}; @@ -2721,7 +2721,7 @@ void PythonQtShell_QAbstractVideoSurface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2906,7 +2906,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QAudioDecoder::availability() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -2939,7 +2939,7 @@ bool PythonQtShell_QAudioDecoder::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -2972,7 +2972,7 @@ void PythonQtShell_QAudioDecoder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2994,7 +2994,7 @@ void PythonQtShell_QAudioDecoder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3016,7 +3016,7 @@ bool PythonQtShell_QAudioDecoder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3049,7 +3049,7 @@ bool PythonQtShell_QAudioDecoder::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3082,7 +3082,7 @@ bool PythonQtShell_QAudioDecoder::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3115,7 +3115,7 @@ QMediaService* PythonQtShell_QAudioDecoder::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -3148,7 +3148,7 @@ void PythonQtShell_QAudioDecoder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3170,7 +3170,7 @@ void PythonQtShell_QAudioDecoder::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3285,7 +3285,7 @@ QAudioFormat PythonQtShell_QAudioDecoderControl::audioFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioFormat"); + static PyObject* name = PyUnicode_FromString("audioFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -3318,7 +3318,7 @@ bool PythonQtShell_QAudioDecoderControl::bufferAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferAvailable"); + static PyObject* name = PyUnicode_FromString("bufferAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3351,7 +3351,7 @@ void PythonQtShell_QAudioDecoderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3373,7 +3373,7 @@ void PythonQtShell_QAudioDecoderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3395,7 +3395,7 @@ qint64 PythonQtShell_QAudioDecoderControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3428,7 +3428,7 @@ bool PythonQtShell_QAudioDecoderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3461,7 +3461,7 @@ bool PythonQtShell_QAudioDecoderControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3494,7 +3494,7 @@ qint64 PythonQtShell_QAudioDecoderControl::position() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("position"); + static PyObject* name = PyUnicode_FromString("position"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3527,7 +3527,7 @@ QAudioBuffer PythonQtShell_QAudioDecoderControl::read() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioBuffer"}; @@ -3560,7 +3560,7 @@ void PythonQtShell_QAudioDecoderControl::setAudioFormat(const QAudioFormat& for if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioFormat"); + static PyObject* name = PyUnicode_FromString("setAudioFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -3582,7 +3582,7 @@ void PythonQtShell_QAudioDecoderControl::setSourceDevice(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceDevice"); + static PyObject* name = PyUnicode_FromString("setSourceDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -3604,7 +3604,7 @@ void PythonQtShell_QAudioDecoderControl::setSourceFilename(const QString& fileN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceFilename"); + static PyObject* name = PyUnicode_FromString("setSourceFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3626,7 +3626,7 @@ QIODevice* PythonQtShell_QAudioDecoderControl::sourceDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceDevice"); + static PyObject* name = PyUnicode_FromString("sourceDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -3659,7 +3659,7 @@ QString PythonQtShell_QAudioDecoderControl::sourceFilename() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceFilename"); + static PyObject* name = PyUnicode_FromString("sourceFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3692,7 +3692,7 @@ void PythonQtShell_QAudioDecoderControl::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3714,7 +3714,7 @@ QAudioDecoder::State PythonQtShell_QAudioDecoderControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioDecoder::State"}; @@ -3747,7 +3747,7 @@ void PythonQtShell_QAudioDecoderControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3769,7 +3769,7 @@ void PythonQtShell_QAudioDecoderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4084,7 +4084,7 @@ QAudioEncoderSettings PythonQtShell_QAudioEncoderSettingsControl::audioSettings if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioSettings"); + static PyObject* name = PyUnicode_FromString("audioSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioEncoderSettings"}; @@ -4117,7 +4117,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4139,7 +4139,7 @@ QString PythonQtShell_QAudioEncoderSettingsControl::codecDescription(const QStr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("codecDescription"); + static PyObject* name = PyUnicode_FromString("codecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -4172,7 +4172,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4194,7 +4194,7 @@ bool PythonQtShell_QAudioEncoderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4227,7 +4227,7 @@ bool PythonQtShell_QAudioEncoderSettingsControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4260,7 +4260,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::setAudioSettings(const QAudioEn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioSettings"); + static PyObject* name = PyUnicode_FromString("setAudioSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioEncoderSettings&"}; @@ -4282,7 +4282,7 @@ QStringList PythonQtShell_QAudioEncoderSettingsControl::supportedAudioCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedAudioCodecs"); + static PyObject* name = PyUnicode_FromString("supportedAudioCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4315,7 +4315,7 @@ QList PythonQtShell_QAudioEncoderSettingsControl::supportedSampleRates(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleRates"); + static PyObject* name = PyUnicode_FromString("supportedSampleRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QAudioEncoderSettings&" , "bool*"}; @@ -4348,7 +4348,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4550,7 +4550,7 @@ void PythonQtShell_QAudioInput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4572,7 +4572,7 @@ void PythonQtShell_QAudioInput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4594,7 +4594,7 @@ bool PythonQtShell_QAudioInput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4627,7 +4627,7 @@ bool PythonQtShell_QAudioInput::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4660,7 +4660,7 @@ void PythonQtShell_QAudioInput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4804,7 +4804,7 @@ QString PythonQtShell_QAudioInputSelectorControl::activeInput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("activeInput"); + static PyObject* name = PyUnicode_FromString("activeInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4837,7 +4837,7 @@ QList PythonQtShell_QAudioInputSelectorControl::availableInputs() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableInputs"); + static PyObject* name = PyUnicode_FromString("availableInputs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4870,7 +4870,7 @@ void PythonQtShell_QAudioInputSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4892,7 +4892,7 @@ void PythonQtShell_QAudioInputSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4914,7 +4914,7 @@ QString PythonQtShell_QAudioInputSelectorControl::defaultInput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultInput"); + static PyObject* name = PyUnicode_FromString("defaultInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4947,7 +4947,7 @@ bool PythonQtShell_QAudioInputSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4980,7 +4980,7 @@ bool PythonQtShell_QAudioInputSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5013,7 +5013,7 @@ QString PythonQtShell_QAudioInputSelectorControl::inputDescription(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputDescription"); + static PyObject* name = PyUnicode_FromString("inputDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5046,7 +5046,7 @@ void PythonQtShell_QAudioInputSelectorControl::setActiveInput(const QString& na if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActiveInput"); + static PyObject* name = PyUnicode_FromString("setActiveInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5068,7 +5068,7 @@ void PythonQtShell_QAudioInputSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5133,7 +5133,7 @@ void PythonQtShell_QAudioOutput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5155,7 +5155,7 @@ void PythonQtShell_QAudioOutput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5177,7 +5177,7 @@ bool PythonQtShell_QAudioOutput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5210,7 +5210,7 @@ bool PythonQtShell_QAudioOutput::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5243,7 +5243,7 @@ void PythonQtShell_QAudioOutput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5397,7 +5397,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::activeOutput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("activeOutput"); + static PyObject* name = PyUnicode_FromString("activeOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5430,7 +5430,7 @@ QList PythonQtShell_QAudioOutputSelectorControl::availableOutputs() c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableOutputs"); + static PyObject* name = PyUnicode_FromString("availableOutputs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5463,7 +5463,7 @@ void PythonQtShell_QAudioOutputSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5485,7 +5485,7 @@ void PythonQtShell_QAudioOutputSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5507,7 +5507,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::defaultOutput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultOutput"); + static PyObject* name = PyUnicode_FromString("defaultOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5540,7 +5540,7 @@ bool PythonQtShell_QAudioOutputSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5573,7 +5573,7 @@ bool PythonQtShell_QAudioOutputSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5606,7 +5606,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::outputDescription(const QStr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("outputDescription"); + static PyObject* name = PyUnicode_FromString("outputDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5639,7 +5639,7 @@ void PythonQtShell_QAudioOutputSelectorControl::setActiveOutput(const QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActiveOutput"); + static PyObject* name = PyUnicode_FromString("setActiveOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5661,7 +5661,7 @@ void PythonQtShell_QAudioOutputSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5726,7 +5726,7 @@ void PythonQtShell_QAudioProbe::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5748,7 +5748,7 @@ void PythonQtShell_QAudioProbe::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5770,7 +5770,7 @@ bool PythonQtShell_QAudioProbe::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5803,7 +5803,7 @@ bool PythonQtShell_QAudioProbe::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5836,7 +5836,7 @@ void PythonQtShell_QAudioProbe::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5896,7 +5896,7 @@ void PythonQtShell_QAudioRecorder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5918,7 +5918,7 @@ void PythonQtShell_QAudioRecorder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5940,7 +5940,7 @@ bool PythonQtShell_QAudioRecorder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5973,7 +5973,7 @@ bool PythonQtShell_QAudioRecorder::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6006,7 +6006,7 @@ QMediaObject* PythonQtShell_QAudioRecorder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -6039,7 +6039,7 @@ bool PythonQtShell_QAudioRecorder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QAudioRecorder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6137,7 +6137,7 @@ QAudio::Role PythonQtShell_QAudioRoleControl::audioRole() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioRole"); + static PyObject* name = PyUnicode_FromString("audioRole"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Role"}; @@ -6170,7 +6170,7 @@ void PythonQtShell_QAudioRoleControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6192,7 +6192,7 @@ void PythonQtShell_QAudioRoleControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6214,7 +6214,7 @@ bool PythonQtShell_QAudioRoleControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6247,7 +6247,7 @@ bool PythonQtShell_QAudioRoleControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6280,7 +6280,7 @@ void PythonQtShell_QAudioRoleControl::setAudioRole(QAudio::Role role0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioRole"); + static PyObject* name = PyUnicode_FromString("setAudioRole"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAudio::Role"}; @@ -6302,7 +6302,7 @@ QList PythonQtShell_QAudioRoleControl::supportedAudioRoles() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedAudioRoles"); + static PyObject* name = PyUnicode_FromString("supportedAudioRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -6335,7 +6335,7 @@ void PythonQtShell_QAudioRoleControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6395,7 +6395,7 @@ QList PythonQtShell_QAudioSystemFactoryInterface::availableDevices if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableDevices"); + static PyObject* name = PyUnicode_FromString("availableDevices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAudio::Mode"}; @@ -6428,7 +6428,7 @@ QAbstractAudioDeviceInfo* PythonQtShell_QAudioSystemFactoryInterface::createDev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createDeviceInfo"); + static PyObject* name = PyUnicode_FromString("createDeviceInfo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioDeviceInfo*" , "const QByteArray&" , "QAudio::Mode"}; @@ -6461,7 +6461,7 @@ QAbstractAudioInput* PythonQtShell_QAudioSystemFactoryInterface::createInput(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createInput"); + static PyObject* name = PyUnicode_FromString("createInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioInput*" , "const QByteArray&"}; @@ -6494,7 +6494,7 @@ QAbstractAudioOutput* PythonQtShell_QAudioSystemFactoryInterface::createOutput( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createOutput"); + static PyObject* name = PyUnicode_FromString("createOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioOutput*" , "const QByteArray&"}; @@ -6557,7 +6557,7 @@ QList PythonQtShell_QAudioSystemPlugin::availableDevices(QAudio::M if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableDevices"); + static PyObject* name = PyUnicode_FromString("availableDevices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAudio::Mode"}; @@ -6590,7 +6590,7 @@ QAbstractAudioDeviceInfo* PythonQtShell_QAudioSystemPlugin::createDeviceInfo(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createDeviceInfo"); + static PyObject* name = PyUnicode_FromString("createDeviceInfo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioDeviceInfo*" , "const QByteArray&" , "QAudio::Mode"}; @@ -6623,7 +6623,7 @@ QAbstractAudioInput* PythonQtShell_QAudioSystemPlugin::createInput(const QByteA if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createInput"); + static PyObject* name = PyUnicode_FromString("createInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioInput*" , "const QByteArray&"}; @@ -6656,7 +6656,7 @@ QAbstractAudioOutput* PythonQtShell_QAudioSystemPlugin::createOutput(const QByt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createOutput"); + static PyObject* name = PyUnicode_FromString("createOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioOutput*" , "const QByteArray&"}; @@ -6732,7 +6732,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QCamera::availability() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -6765,7 +6765,7 @@ bool PythonQtShell_QCamera::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -6798,7 +6798,7 @@ void PythonQtShell_QCamera::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6820,7 +6820,7 @@ void PythonQtShell_QCamera::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6842,7 +6842,7 @@ bool PythonQtShell_QCamera::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6875,7 +6875,7 @@ bool PythonQtShell_QCamera::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6908,7 +6908,7 @@ bool PythonQtShell_QCamera::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6941,7 +6941,7 @@ QMediaService* PythonQtShell_QCamera::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -6974,7 +6974,7 @@ void PythonQtShell_QCamera::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6996,7 +6996,7 @@ void PythonQtShell_QCamera::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7173,7 +7173,7 @@ QVideoFrame::PixelFormat PythonQtShell_QCameraCaptureBufferFormatControl::buffe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferFormat"); + static PyObject* name = PyUnicode_FromString("bufferFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoFrame::PixelFormat"}; @@ -7206,7 +7206,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::childEvent(QChildEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7228,7 +7228,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::customEvent(QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7250,7 +7250,7 @@ bool PythonQtShell_QCameraCaptureBufferFormatControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7283,7 +7283,7 @@ bool PythonQtShell_QCameraCaptureBufferFormatControl::eventFilter(QObject* wat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7316,7 +7316,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::setBufferFormat(QVideoFram if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferFormat"); + static PyObject* name = PyUnicode_FromString("setBufferFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QVideoFrame::PixelFormat"}; @@ -7338,7 +7338,7 @@ QList PythonQtShell_QCameraCaptureBufferFormatContro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedBufferFormats"); + static PyObject* name = PyUnicode_FromString("supportedBufferFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7371,7 +7371,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::timerEvent(QTimerEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7431,7 +7431,7 @@ QCameraImageCapture::CaptureDestinations PythonQtShell_QCameraCaptureDestinatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("captureDestination"); + static PyObject* name = PyUnicode_FromString("captureDestination"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraImageCapture::CaptureDestinations"}; @@ -7464,7 +7464,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::childEvent(QChildEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7486,7 +7486,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::customEvent(QEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7508,7 +7508,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7541,7 +7541,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::eventFilter(QObject* watc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7574,7 +7574,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::isCaptureDestinationSuppor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCaptureDestinationSupported"); + static PyObject* name = PyUnicode_FromString("isCaptureDestinationSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageCapture::CaptureDestinations"}; @@ -7607,7 +7607,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::setCaptureDestination(QCame if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCaptureDestination"); + static PyObject* name = PyUnicode_FromString("setCaptureDestination"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageCapture::CaptureDestinations"}; @@ -7629,7 +7629,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::timerEvent(QTimerEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7689,7 +7689,7 @@ bool PythonQtShell_QCameraControl::canChangeProperty(QCameraControl::PropertyCh if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canChangeProperty"); + static PyObject* name = PyUnicode_FromString("canChangeProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraControl::PropertyChangeType" , "QCamera::Status"}; @@ -7722,7 +7722,7 @@ QCamera::CaptureModes PythonQtShell_QCameraControl::captureMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("captureMode"); + static PyObject* name = PyUnicode_FromString("captureMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::CaptureModes"}; @@ -7755,7 +7755,7 @@ void PythonQtShell_QCameraControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7777,7 +7777,7 @@ void PythonQtShell_QCameraControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7799,7 +7799,7 @@ bool PythonQtShell_QCameraControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7832,7 +7832,7 @@ bool PythonQtShell_QCameraControl::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7865,7 +7865,7 @@ bool PythonQtShell_QCameraControl::isCaptureModeSupported(QCamera::CaptureModes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCaptureModeSupported"); + static PyObject* name = PyUnicode_FromString("isCaptureModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCamera::CaptureModes"}; @@ -7898,7 +7898,7 @@ void PythonQtShell_QCameraControl::setCaptureMode(QCamera::CaptureModes arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCaptureMode"); + static PyObject* name = PyUnicode_FromString("setCaptureMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::CaptureModes"}; @@ -7920,7 +7920,7 @@ void PythonQtShell_QCameraControl::setState(QCamera::State state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setState"); + static PyObject* name = PyUnicode_FromString("setState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::State"}; @@ -7942,7 +7942,7 @@ QCamera::State PythonQtShell_QCameraControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::State"}; @@ -7975,7 +7975,7 @@ QCamera::Status PythonQtShell_QCameraControl::status() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("status"); + static PyObject* name = PyUnicode_FromString("status"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Status"}; @@ -8008,7 +8008,7 @@ void PythonQtShell_QCameraControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8190,7 +8190,7 @@ QVariant PythonQtShell_QCameraExposureControl::actualValue(QCameraExposureContr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actualValue"); + static PyObject* name = PyUnicode_FromString("actualValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraExposureControl::ExposureParameter"}; @@ -8223,7 +8223,7 @@ void PythonQtShell_QCameraExposureControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8245,7 +8245,7 @@ void PythonQtShell_QCameraExposureControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8267,7 +8267,7 @@ bool PythonQtShell_QCameraExposureControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8300,7 +8300,7 @@ bool PythonQtShell_QCameraExposureControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8333,7 +8333,7 @@ bool PythonQtShell_QCameraExposureControl::isParameterSupported(QCameraExposure if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterSupported"); + static PyObject* name = PyUnicode_FromString("isParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposureControl::ExposureParameter"}; @@ -8366,7 +8366,7 @@ QVariant PythonQtShell_QCameraExposureControl::requestedValue(QCameraExposureCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedValue"); + static PyObject* name = PyUnicode_FromString("requestedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraExposureControl::ExposureParameter"}; @@ -8399,7 +8399,7 @@ bool PythonQtShell_QCameraExposureControl::setValue(QCameraExposureControl::Exp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setValue"); + static PyObject* name = PyUnicode_FromString("setValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposureControl::ExposureParameter" , "const QVariant&"}; @@ -8432,7 +8432,7 @@ QList PythonQtShell_QCameraExposureControl::supportedParameterRange( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedParameterRange"); + static PyObject* name = PyUnicode_FromString("supportedParameterRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QCameraExposureControl::ExposureParameter" , "bool*"}; @@ -8465,7 +8465,7 @@ void PythonQtShell_QCameraExposureControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8535,7 +8535,7 @@ void PythonQtShell_QCameraFeedbackControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8557,7 +8557,7 @@ void PythonQtShell_QCameraFeedbackControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8579,7 +8579,7 @@ bool PythonQtShell_QCameraFeedbackControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8612,7 +8612,7 @@ bool PythonQtShell_QCameraFeedbackControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8645,7 +8645,7 @@ bool PythonQtShell_QCameraFeedbackControl::isEventFeedbackEnabled(QCameraFeedba if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEventFeedbackEnabled"); + static PyObject* name = PyUnicode_FromString("isEventFeedbackEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType"}; @@ -8678,7 +8678,7 @@ bool PythonQtShell_QCameraFeedbackControl::isEventFeedbackLocked(QCameraFeedbac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEventFeedbackLocked"); + static PyObject* name = PyUnicode_FromString("isEventFeedbackLocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType"}; @@ -8711,7 +8711,7 @@ void PythonQtShell_QCameraFeedbackControl::resetEventFeedback(QCameraFeedbackCon if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resetEventFeedback"); + static PyObject* name = PyUnicode_FromString("resetEventFeedback"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFeedbackControl::EventType"}; @@ -8733,7 +8733,7 @@ bool PythonQtShell_QCameraFeedbackControl::setEventFeedbackEnabled(QCameraFeedb if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEventFeedbackEnabled"); + static PyObject* name = PyUnicode_FromString("setEventFeedbackEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType" , "bool"}; @@ -8766,7 +8766,7 @@ bool PythonQtShell_QCameraFeedbackControl::setEventFeedbackSound(QCameraFeedbac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEventFeedbackSound"); + static PyObject* name = PyUnicode_FromString("setEventFeedbackSound"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType" , "const QString&"}; @@ -8799,7 +8799,7 @@ void PythonQtShell_QCameraFeedbackControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8869,7 +8869,7 @@ void PythonQtShell_QCameraFlashControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8891,7 +8891,7 @@ void PythonQtShell_QCameraFlashControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8913,7 +8913,7 @@ bool PythonQtShell_QCameraFlashControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8946,7 +8946,7 @@ bool PythonQtShell_QCameraFlashControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8979,7 +8979,7 @@ QCameraExposure::FlashModes PythonQtShell_QCameraFlashControl::flashMode() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flashMode"); + static PyObject* name = PyUnicode_FromString("flashMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraExposure::FlashModes"}; @@ -9012,7 +9012,7 @@ bool PythonQtShell_QCameraFlashControl::isFlashModeSupported(QCameraExposure::F if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFlashModeSupported"); + static PyObject* name = PyUnicode_FromString("isFlashModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposure::FlashModes"}; @@ -9045,7 +9045,7 @@ bool PythonQtShell_QCameraFlashControl::isFlashReady() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFlashReady"); + static PyObject* name = PyUnicode_FromString("isFlashReady"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9078,7 +9078,7 @@ void PythonQtShell_QCameraFlashControl::setFlashMode(QCameraExposure::FlashModes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFlashMode"); + static PyObject* name = PyUnicode_FromString("setFlashMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraExposure::FlashModes"}; @@ -9100,7 +9100,7 @@ void PythonQtShell_QCameraFlashControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp index 7aa06af32..a92067e79 100644 --- a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +++ b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp @@ -150,7 +150,7 @@ void PythonQtShell_QCameraFocusControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -172,7 +172,7 @@ void PythonQtShell_QCameraFocusControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -194,7 +194,7 @@ QPointF PythonQtShell_QCameraFocusControl::customFocusPoint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customFocusPoint"); + static PyObject* name = PyUnicode_FromString("customFocusPoint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPointF"}; @@ -227,7 +227,7 @@ bool PythonQtShell_QCameraFocusControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -260,7 +260,7 @@ bool PythonQtShell_QCameraFocusControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -293,7 +293,7 @@ QCameraFocus::FocusModes PythonQtShell_QCameraFocusControl::focusMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusMode"); + static PyObject* name = PyUnicode_FromString("focusMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraFocus::FocusModes"}; @@ -326,7 +326,7 @@ QCameraFocus::FocusPointMode PythonQtShell_QCameraFocusControl::focusPointMode( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusPointMode"); + static PyObject* name = PyUnicode_FromString("focusPointMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraFocus::FocusPointMode"}; @@ -359,7 +359,7 @@ QList PythonQtShell_QCameraFocusControl::focusZones() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusZones"); + static PyObject* name = PyUnicode_FromString("focusZones"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -392,7 +392,7 @@ bool PythonQtShell_QCameraFocusControl::isFocusModeSupported(QCameraFocus::Focu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFocusModeSupported"); + static PyObject* name = PyUnicode_FromString("isFocusModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFocus::FocusModes"}; @@ -425,7 +425,7 @@ bool PythonQtShell_QCameraFocusControl::isFocusPointModeSupported(QCameraFocus: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFocusPointModeSupported"); + static PyObject* name = PyUnicode_FromString("isFocusPointModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFocus::FocusPointMode"}; @@ -458,7 +458,7 @@ void PythonQtShell_QCameraFocusControl::setCustomFocusPoint(const QPointF& poin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCustomFocusPoint"); + static PyObject* name = PyUnicode_FromString("setCustomFocusPoint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&"}; @@ -480,7 +480,7 @@ void PythonQtShell_QCameraFocusControl::setFocusMode(QCameraFocus::FocusModes m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFocusMode"); + static PyObject* name = PyUnicode_FromString("setFocusMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFocus::FocusModes"}; @@ -502,7 +502,7 @@ void PythonQtShell_QCameraFocusControl::setFocusPointMode(QCameraFocus::FocusPoi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFocusPointMode"); + static PyObject* name = PyUnicode_FromString("setFocusPointMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFocus::FocusPointMode"}; @@ -524,7 +524,7 @@ void PythonQtShell_QCameraFocusControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -663,7 +663,7 @@ void PythonQtShell_QCameraImageCapture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -685,7 +685,7 @@ void PythonQtShell_QCameraImageCapture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -707,7 +707,7 @@ bool PythonQtShell_QCameraImageCapture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -740,7 +740,7 @@ bool PythonQtShell_QCameraImageCapture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -773,7 +773,7 @@ QMediaObject* PythonQtShell_QCameraImageCapture::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -806,7 +806,7 @@ bool PythonQtShell_QCameraImageCapture::setMediaObject(QMediaObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -839,7 +839,7 @@ void PythonQtShell_QCameraImageCapture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -964,7 +964,7 @@ void PythonQtShell_QCameraImageCaptureControl::cancelCapture() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelCapture"); + static PyObject* name = PyUnicode_FromString("cancelCapture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -986,7 +986,7 @@ int PythonQtShell_QCameraImageCaptureControl::capture(const QString& fileName0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("capture"); + static PyObject* name = PyUnicode_FromString("capture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -1019,7 +1019,7 @@ void PythonQtShell_QCameraImageCaptureControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1041,7 +1041,7 @@ void PythonQtShell_QCameraImageCaptureControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1063,7 +1063,7 @@ QCameraImageCapture::DriveMode PythonQtShell_QCameraImageCaptureControl::driveM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("driveMode"); + static PyObject* name = PyUnicode_FromString("driveMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraImageCapture::DriveMode"}; @@ -1096,7 +1096,7 @@ bool PythonQtShell_QCameraImageCaptureControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1129,7 +1129,7 @@ bool PythonQtShell_QCameraImageCaptureControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1162,7 +1162,7 @@ bool PythonQtShell_QCameraImageCaptureControl::isReadyForCapture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isReadyForCapture"); + static PyObject* name = PyUnicode_FromString("isReadyForCapture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1195,7 +1195,7 @@ void PythonQtShell_QCameraImageCaptureControl::setDriveMode(QCameraImageCapture: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDriveMode"); + static PyObject* name = PyUnicode_FromString("setDriveMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageCapture::DriveMode"}; @@ -1217,7 +1217,7 @@ void PythonQtShell_QCameraImageCaptureControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1384,7 +1384,7 @@ void PythonQtShell_QCameraImageProcessingControl::childEvent(QChildEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1406,7 +1406,7 @@ void PythonQtShell_QCameraImageProcessingControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1428,7 +1428,7 @@ bool PythonQtShell_QCameraImageProcessingControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1461,7 +1461,7 @@ bool PythonQtShell_QCameraImageProcessingControl::eventFilter(QObject* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1494,7 +1494,7 @@ bool PythonQtShell_QCameraImageProcessingControl::isParameterSupported(QCameraI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterSupported"); + static PyObject* name = PyUnicode_FromString("isParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageProcessingControl::ProcessingParameter"}; @@ -1527,7 +1527,7 @@ bool PythonQtShell_QCameraImageProcessingControl::isParameterValueSupported(QCa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterValueSupported"); + static PyObject* name = PyUnicode_FromString("isParameterValueSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageProcessingControl::ProcessingParameter" , "const QVariant&"}; @@ -1560,7 +1560,7 @@ QVariant PythonQtShell_QCameraImageProcessingControl::parameter(QCameraImagePro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parameter"); + static PyObject* name = PyUnicode_FromString("parameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraImageProcessingControl::ProcessingParameter"}; @@ -1593,7 +1593,7 @@ void PythonQtShell_QCameraImageProcessingControl::setParameter(QCameraImageProce if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setParameter"); + static PyObject* name = PyUnicode_FromString("setParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageProcessingControl::ProcessingParameter" , "const QVariant&"}; @@ -1615,7 +1615,7 @@ void PythonQtShell_QCameraImageProcessingControl::timerEvent(QTimerEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1751,7 +1751,7 @@ int PythonQtShell_QCameraInfoControl::cameraOrientation(const QString& deviceN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraOrientation"); + static PyObject* name = PyUnicode_FromString("cameraOrientation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -1784,7 +1784,7 @@ QCamera::Position PythonQtShell_QCameraInfoControl::cameraPosition(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraPosition"); + static PyObject* name = PyUnicode_FromString("cameraPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Position" , "const QString&"}; @@ -1817,7 +1817,7 @@ void PythonQtShell_QCameraInfoControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1839,7 +1839,7 @@ void PythonQtShell_QCameraInfoControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1861,7 +1861,7 @@ bool PythonQtShell_QCameraInfoControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1894,7 +1894,7 @@ bool PythonQtShell_QCameraInfoControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1927,7 +1927,7 @@ void PythonQtShell_QCameraInfoControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1982,7 +1982,7 @@ void PythonQtShell_QCameraLocksControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2004,7 +2004,7 @@ void PythonQtShell_QCameraLocksControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2026,7 +2026,7 @@ bool PythonQtShell_QCameraLocksControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2059,7 +2059,7 @@ bool PythonQtShell_QCameraLocksControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2092,7 +2092,7 @@ QCamera::LockStatus PythonQtShell_QCameraLocksControl::lockStatus(QCamera::Lock if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lockStatus"); + static PyObject* name = PyUnicode_FromString("lockStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::LockStatus" , "QCamera::LockType"}; @@ -2125,7 +2125,7 @@ void PythonQtShell_QCameraLocksControl::searchAndLock(QCamera::LockTypes locks0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchAndLock"); + static PyObject* name = PyUnicode_FromString("searchAndLock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::LockTypes"}; @@ -2147,7 +2147,7 @@ QCamera::LockTypes PythonQtShell_QCameraLocksControl::supportedLocks() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedLocks"); + static PyObject* name = PyUnicode_FromString("supportedLocks"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::LockTypes"}; @@ -2180,7 +2180,7 @@ void PythonQtShell_QCameraLocksControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2202,7 +2202,7 @@ void PythonQtShell_QCameraLocksControl::unlock(QCamera::LockTypes locks0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unlock"); + static PyObject* name = PyUnicode_FromString("unlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::LockTypes"}; @@ -2267,7 +2267,7 @@ void PythonQtShell_QCameraViewfinder::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2289,7 +2289,7 @@ void PythonQtShell_QCameraViewfinder::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2311,7 +2311,7 @@ void PythonQtShell_QCameraViewfinder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2333,7 +2333,7 @@ void PythonQtShell_QCameraViewfinder::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2355,7 +2355,7 @@ void PythonQtShell_QCameraViewfinder::contextMenuEvent(QContextMenuEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2377,7 +2377,7 @@ void PythonQtShell_QCameraViewfinder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2399,7 +2399,7 @@ int PythonQtShell_QCameraViewfinder::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2432,7 +2432,7 @@ void PythonQtShell_QCameraViewfinder::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2454,7 +2454,7 @@ void PythonQtShell_QCameraViewfinder::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2476,7 +2476,7 @@ void PythonQtShell_QCameraViewfinder::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2498,7 +2498,7 @@ void PythonQtShell_QCameraViewfinder::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2520,7 +2520,7 @@ void PythonQtShell_QCameraViewfinder::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2542,7 +2542,7 @@ bool PythonQtShell_QCameraViewfinder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2575,7 +2575,7 @@ bool PythonQtShell_QCameraViewfinder::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2608,7 +2608,7 @@ void PythonQtShell_QCameraViewfinder::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2630,7 +2630,7 @@ bool PythonQtShell_QCameraViewfinder::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2663,7 +2663,7 @@ void PythonQtShell_QCameraViewfinder::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2685,7 +2685,7 @@ bool PythonQtShell_QCameraViewfinder::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2718,7 +2718,7 @@ int PythonQtShell_QCameraViewfinder::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2751,7 +2751,7 @@ void PythonQtShell_QCameraViewfinder::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2773,7 +2773,7 @@ void PythonQtShell_QCameraViewfinder::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2795,7 +2795,7 @@ void PythonQtShell_QCameraViewfinder::inputMethodEvent(QInputMethodEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2817,7 +2817,7 @@ QVariant PythonQtShell_QCameraViewfinder::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2850,7 +2850,7 @@ void PythonQtShell_QCameraViewfinder::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2872,7 +2872,7 @@ void PythonQtShell_QCameraViewfinder::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2894,7 +2894,7 @@ void PythonQtShell_QCameraViewfinder::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2916,7 +2916,7 @@ QMediaObject* PythonQtShell_QCameraViewfinder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2949,7 +2949,7 @@ int PythonQtShell_QCameraViewfinder::metric(QPaintDevice::PaintDeviceMetric ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2982,7 +2982,7 @@ QSize PythonQtShell_QCameraViewfinder::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3015,7 +3015,7 @@ void PythonQtShell_QCameraViewfinder::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3037,7 +3037,7 @@ void PythonQtShell_QCameraViewfinder::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3059,7 +3059,7 @@ void PythonQtShell_QCameraViewfinder::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3081,7 +3081,7 @@ void PythonQtShell_QCameraViewfinder::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3103,7 +3103,7 @@ void PythonQtShell_QCameraViewfinder::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3125,7 +3125,7 @@ bool PythonQtShell_QCameraViewfinder::nativeEvent(const QByteArray& eventType0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3158,7 +3158,7 @@ QPaintEngine* PythonQtShell_QCameraViewfinder::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3191,7 +3191,7 @@ void PythonQtShell_QCameraViewfinder::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3213,7 +3213,7 @@ QPaintDevice* PythonQtShell_QCameraViewfinder::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3246,7 +3246,7 @@ void PythonQtShell_QCameraViewfinder::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3268,7 +3268,7 @@ bool PythonQtShell_QCameraViewfinder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -3301,7 +3301,7 @@ void PythonQtShell_QCameraViewfinder::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3323,7 +3323,7 @@ QPainter* PythonQtShell_QCameraViewfinder::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3356,7 +3356,7 @@ void PythonQtShell_QCameraViewfinder::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3378,7 +3378,7 @@ QSize PythonQtShell_QCameraViewfinder::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3411,7 +3411,7 @@ void PythonQtShell_QCameraViewfinder::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3433,7 +3433,7 @@ void PythonQtShell_QCameraViewfinder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3455,7 +3455,7 @@ void PythonQtShell_QCameraViewfinder::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3585,7 +3585,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::childEvent(QChildEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3607,7 +3607,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::customEvent(QEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3629,7 +3629,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3662,7 +3662,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::eventFilter(QObject* watc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3695,7 +3695,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::isViewfinderParameterSuppo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isViewfinderParameterSupported"); + static PyObject* name = PyUnicode_FromString("isViewfinderParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraViewfinderSettingsControl::ViewfinderParameter"}; @@ -3728,7 +3728,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::setViewfinderParameter(QCam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setViewfinderParameter"); + static PyObject* name = PyUnicode_FromString("setViewfinderParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraViewfinderSettingsControl::ViewfinderParameter" , "const QVariant&"}; @@ -3750,7 +3750,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::timerEvent(QTimerEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3772,7 +3772,7 @@ QVariant PythonQtShell_QCameraViewfinderSettingsControl::viewfinderParameter(QC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewfinderParameter"); + static PyObject* name = PyUnicode_FromString("viewfinderParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraViewfinderSettingsControl::ViewfinderParameter"}; @@ -3843,7 +3843,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::childEvent(QChildEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3865,7 +3865,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::customEvent(QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3887,7 +3887,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl2::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3920,7 +3920,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl2::eventFilter(QObject* wat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3953,7 +3953,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::setViewfinderSettings(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setViewfinderSettings"); + static PyObject* name = PyUnicode_FromString("setViewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QCameraViewfinderSettings&"}; @@ -3975,7 +3975,7 @@ QList PythonQtShell_QCameraViewfinderSettingsContro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedViewfinderSettings"); + static PyObject* name = PyUnicode_FromString("supportedViewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4008,7 +4008,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::timerEvent(QTimerEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4030,7 +4030,7 @@ QCameraViewfinderSettings PythonQtShell_QCameraViewfinderSettingsControl2::view if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewfinderSettings"); + static PyObject* name = PyUnicode_FromString("viewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraViewfinderSettings"}; @@ -4101,7 +4101,7 @@ void PythonQtShell_QCameraZoomControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4123,7 +4123,7 @@ qreal PythonQtShell_QCameraZoomControl::currentDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentDigitalZoom"); + static PyObject* name = PyUnicode_FromString("currentDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4156,7 +4156,7 @@ qreal PythonQtShell_QCameraZoomControl::currentOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentOpticalZoom"); + static PyObject* name = PyUnicode_FromString("currentOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4189,7 +4189,7 @@ void PythonQtShell_QCameraZoomControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4211,7 +4211,7 @@ bool PythonQtShell_QCameraZoomControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4244,7 +4244,7 @@ bool PythonQtShell_QCameraZoomControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4277,7 +4277,7 @@ qreal PythonQtShell_QCameraZoomControl::maximumDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumDigitalZoom"); + static PyObject* name = PyUnicode_FromString("maximumDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4310,7 +4310,7 @@ qreal PythonQtShell_QCameraZoomControl::maximumOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumOpticalZoom"); + static PyObject* name = PyUnicode_FromString("maximumOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4343,7 +4343,7 @@ qreal PythonQtShell_QCameraZoomControl::requestedDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedDigitalZoom"); + static PyObject* name = PyUnicode_FromString("requestedDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4376,7 +4376,7 @@ qreal PythonQtShell_QCameraZoomControl::requestedOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedOpticalZoom"); + static PyObject* name = PyUnicode_FromString("requestedOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4409,7 +4409,7 @@ void PythonQtShell_QCameraZoomControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4431,7 +4431,7 @@ void PythonQtShell_QCameraZoomControl::zoomTo(qreal optical0, qreal digital1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("zoomTo"); + static PyObject* name = PyUnicode_FromString("zoomTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal" , "qreal"}; @@ -4530,7 +4530,7 @@ QRectF PythonQtShell_QGraphicsVideoItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -4563,7 +4563,7 @@ void PythonQtShell_QGraphicsVideoItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4585,7 +4585,7 @@ void PythonQtShell_QGraphicsVideoItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4607,7 +4607,7 @@ bool PythonQtShell_QGraphicsVideoItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4640,7 +4640,7 @@ bool PythonQtShell_QGraphicsVideoItem::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4673,7 +4673,7 @@ QVariant PythonQtShell_QGraphicsVideoItem::itemChange(QGraphicsItem::GraphicsIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -4709,7 +4709,7 @@ QMediaObject* PythonQtShell_QGraphicsVideoItem::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4742,7 +4742,7 @@ void PythonQtShell_QGraphicsVideoItem::paint(QPainter* painter0, const QStyleOp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -4764,7 +4764,7 @@ bool PythonQtShell_QGraphicsVideoItem::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4797,7 +4797,7 @@ void PythonQtShell_QGraphicsVideoItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4892,7 +4892,7 @@ void PythonQtShell_QImageEncoderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4914,7 +4914,7 @@ void PythonQtShell_QImageEncoderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4936,7 +4936,7 @@ bool PythonQtShell_QImageEncoderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4969,7 +4969,7 @@ bool PythonQtShell_QImageEncoderControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5002,7 +5002,7 @@ QString PythonQtShell_QImageEncoderControl::imageCodecDescription(const QString if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageCodecDescription"); + static PyObject* name = PyUnicode_FromString("imageCodecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5035,7 +5035,7 @@ QImageEncoderSettings PythonQtShell_QImageEncoderControl::imageSettings() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageSettings"); + static PyObject* name = PyUnicode_FromString("imageSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageEncoderSettings"}; @@ -5068,7 +5068,7 @@ void PythonQtShell_QImageEncoderControl::setImageSettings(const QImageEncoderSet if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setImageSettings"); + static PyObject* name = PyUnicode_FromString("setImageSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QImageEncoderSettings&"}; @@ -5090,7 +5090,7 @@ QStringList PythonQtShell_QImageEncoderControl::supportedImageCodecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedImageCodecs"); + static PyObject* name = PyUnicode_FromString("supportedImageCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5123,7 +5123,7 @@ QList PythonQtShell_QImageEncoderControl::supportedResolutions(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedResolutions"); + static PyObject* name = PyUnicode_FromString("supportedResolutions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QImageEncoderSettings&" , "bool*"}; @@ -5156,7 +5156,7 @@ void PythonQtShell_QImageEncoderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5311,7 +5311,7 @@ void PythonQtShell_QMediaAudioProbeControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5333,7 +5333,7 @@ void PythonQtShell_QMediaAudioProbeControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5355,7 +5355,7 @@ bool PythonQtShell_QMediaAudioProbeControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5388,7 +5388,7 @@ bool PythonQtShell_QMediaAudioProbeControl::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5421,7 +5421,7 @@ void PythonQtShell_QMediaAudioProbeControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5466,7 +5466,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaAvailabilityControl::availa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -5499,7 +5499,7 @@ void PythonQtShell_QMediaAvailabilityControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5521,7 +5521,7 @@ void PythonQtShell_QMediaAvailabilityControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5543,7 +5543,7 @@ bool PythonQtShell_QMediaAvailabilityControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5576,7 +5576,7 @@ bool PythonQtShell_QMediaAvailabilityControl::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5609,7 +5609,7 @@ void PythonQtShell_QMediaAvailabilityControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5659,7 +5659,7 @@ QMediaObject* PythonQtShell_QMediaBindableInterface::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5692,7 +5692,7 @@ bool PythonQtShell_QMediaBindableInterface::setMediaObject(QMediaObject* objec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5745,7 +5745,7 @@ void PythonQtShell_QMediaContainerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5767,7 +5767,7 @@ QString PythonQtShell_QMediaContainerControl::containerDescription(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("containerDescription"); + static PyObject* name = PyUnicode_FromString("containerDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5800,7 +5800,7 @@ QString PythonQtShell_QMediaContainerControl::containerFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("containerFormat"); + static PyObject* name = PyUnicode_FromString("containerFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5833,7 +5833,7 @@ void PythonQtShell_QMediaContainerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5855,7 +5855,7 @@ bool PythonQtShell_QMediaContainerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5888,7 +5888,7 @@ bool PythonQtShell_QMediaContainerControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5921,7 +5921,7 @@ void PythonQtShell_QMediaContainerControl::setContainerFormat(const QString& fo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContainerFormat"); + static PyObject* name = PyUnicode_FromString("setContainerFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5943,7 +5943,7 @@ QStringList PythonQtShell_QMediaContainerControl::supportedContainers() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedContainers"); + static PyObject* name = PyUnicode_FromString("supportedContainers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5976,7 +5976,7 @@ void PythonQtShell_QMediaContainerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6116,7 +6116,7 @@ void PythonQtShell_QMediaControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6138,7 +6138,7 @@ void PythonQtShell_QMediaControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6160,7 +6160,7 @@ bool PythonQtShell_QMediaControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6193,7 +6193,7 @@ bool PythonQtShell_QMediaControl::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6226,7 +6226,7 @@ void PythonQtShell_QMediaControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6271,7 +6271,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6293,7 +6293,7 @@ qreal PythonQtShell_QMediaGaplessPlaybackControl::crossfadeTime() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("crossfadeTime"); + static PyObject* name = PyUnicode_FromString("crossfadeTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -6326,7 +6326,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6348,7 +6348,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6381,7 +6381,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6414,7 +6414,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::isCrossfadeSupported() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCrossfadeSupported"); + static PyObject* name = PyUnicode_FromString("isCrossfadeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6447,7 +6447,7 @@ QMediaContent PythonQtShell_QMediaGaplessPlaybackControl::nextMedia() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextMedia"); + static PyObject* name = PyUnicode_FromString("nextMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaContent"}; @@ -6480,7 +6480,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::setCrossfadeTime(qreal crossfa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCrossfadeTime"); + static PyObject* name = PyUnicode_FromString("setCrossfadeTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -6502,7 +6502,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::setNextMedia(const QMediaConten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNextMedia"); + static PyObject* name = PyUnicode_FromString("setNextMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMediaContent&"}; @@ -6524,7 +6524,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6594,7 +6594,7 @@ void PythonQtShell_QMediaNetworkAccessControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6616,7 +6616,7 @@ QNetworkConfiguration PythonQtShell_QMediaNetworkAccessControl::currentConfigur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentConfiguration"); + static PyObject* name = PyUnicode_FromString("currentConfiguration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkConfiguration"}; @@ -6649,7 +6649,7 @@ void PythonQtShell_QMediaNetworkAccessControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6671,7 +6671,7 @@ bool PythonQtShell_QMediaNetworkAccessControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6704,7 +6704,7 @@ bool PythonQtShell_QMediaNetworkAccessControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6737,7 +6737,7 @@ void PythonQtShell_QMediaNetworkAccessControl::setConfigurations(const QList 0) { - static PyObject* name = PyString_FromString("setConfigurations"); + static PyObject* name = PyUnicode_FromString("setConfigurations"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -6759,7 +6759,7 @@ void PythonQtShell_QMediaNetworkAccessControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6814,7 +6814,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaObject::availability() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -6847,7 +6847,7 @@ bool PythonQtShell_QMediaObject::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -6880,7 +6880,7 @@ void PythonQtShell_QMediaObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6902,7 +6902,7 @@ void PythonQtShell_QMediaObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6924,7 +6924,7 @@ bool PythonQtShell_QMediaObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6957,7 +6957,7 @@ bool PythonQtShell_QMediaObject::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6990,7 +6990,7 @@ bool PythonQtShell_QMediaObject::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7023,7 +7023,7 @@ QMediaService* PythonQtShell_QMediaObject::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -7056,7 +7056,7 @@ void PythonQtShell_QMediaObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7078,7 +7078,7 @@ void PythonQtShell_QMediaObject::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7183,7 +7183,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaPlayer::availability() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -7216,7 +7216,7 @@ bool PythonQtShell_QMediaPlayer::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -7249,7 +7249,7 @@ void PythonQtShell_QMediaPlayer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7271,7 +7271,7 @@ void PythonQtShell_QMediaPlayer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7293,7 +7293,7 @@ bool PythonQtShell_QMediaPlayer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7326,7 +7326,7 @@ bool PythonQtShell_QMediaPlayer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7359,7 +7359,7 @@ bool PythonQtShell_QMediaPlayer::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7392,7 +7392,7 @@ QMediaService* PythonQtShell_QMediaPlayer::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -7425,7 +7425,7 @@ void PythonQtShell_QMediaPlayer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7447,7 +7447,7 @@ void PythonQtShell_QMediaPlayer::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7637,7 +7637,7 @@ QMediaTimeRange PythonQtShell_QMediaPlayerControl::availablePlaybackRanges() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availablePlaybackRanges"); + static PyObject* name = PyUnicode_FromString("availablePlaybackRanges"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaTimeRange"}; @@ -7670,7 +7670,7 @@ int PythonQtShell_QMediaPlayerControl::bufferStatus() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferStatus"); + static PyObject* name = PyUnicode_FromString("bufferStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7703,7 +7703,7 @@ void PythonQtShell_QMediaPlayerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7725,7 +7725,7 @@ void PythonQtShell_QMediaPlayerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7747,7 +7747,7 @@ qint64 PythonQtShell_QMediaPlayerControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7780,7 +7780,7 @@ bool PythonQtShell_QMediaPlayerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7813,7 +7813,7 @@ bool PythonQtShell_QMediaPlayerControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7846,7 +7846,7 @@ bool PythonQtShell_QMediaPlayerControl::isAudioAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAudioAvailable"); + static PyObject* name = PyUnicode_FromString("isAudioAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7879,7 +7879,7 @@ bool PythonQtShell_QMediaPlayerControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7912,7 +7912,7 @@ bool PythonQtShell_QMediaPlayerControl::isSeekable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSeekable"); + static PyObject* name = PyUnicode_FromString("isSeekable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7945,7 +7945,7 @@ bool PythonQtShell_QMediaPlayerControl::isVideoAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isVideoAvailable"); + static PyObject* name = PyUnicode_FromString("isVideoAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7978,7 +7978,7 @@ QMediaContent PythonQtShell_QMediaPlayerControl::media() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("media"); + static PyObject* name = PyUnicode_FromString("media"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaContent"}; @@ -8011,7 +8011,7 @@ QMediaPlayer::MediaStatus PythonQtShell_QMediaPlayerControl::mediaStatus() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaStatus"); + static PyObject* name = PyUnicode_FromString("mediaStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaPlayer::MediaStatus"}; @@ -8044,7 +8044,7 @@ const QIODevice* PythonQtShell_QMediaPlayerControl::mediaStream() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaStream"); + static PyObject* name = PyUnicode_FromString("mediaStream"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QIODevice*"}; @@ -8077,7 +8077,7 @@ void PythonQtShell_QMediaPlayerControl::pause() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pause"); + static PyObject* name = PyUnicode_FromString("pause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8099,7 +8099,7 @@ void PythonQtShell_QMediaPlayerControl::play() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("play"); + static PyObject* name = PyUnicode_FromString("play"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8121,7 +8121,7 @@ qreal PythonQtShell_QMediaPlayerControl::playbackRate() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("playbackRate"); + static PyObject* name = PyUnicode_FromString("playbackRate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -8154,7 +8154,7 @@ qint64 PythonQtShell_QMediaPlayerControl::position() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("position"); + static PyObject* name = PyUnicode_FromString("position"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8187,7 +8187,7 @@ void PythonQtShell_QMediaPlayerControl::setMedia(const QMediaContent& media0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMedia"); + static PyObject* name = PyUnicode_FromString("setMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMediaContent&" , "QIODevice*"}; @@ -8209,7 +8209,7 @@ void PythonQtShell_QMediaPlayerControl::setMuted(bool mute0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8231,7 +8231,7 @@ void PythonQtShell_QMediaPlayerControl::setPlaybackRate(qreal rate0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPlaybackRate"); + static PyObject* name = PyUnicode_FromString("setPlaybackRate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8253,7 +8253,7 @@ void PythonQtShell_QMediaPlayerControl::setPosition(qint64 position0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPosition"); + static PyObject* name = PyUnicode_FromString("setPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -8275,7 +8275,7 @@ void PythonQtShell_QMediaPlayerControl::setVolume(int volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8297,7 +8297,7 @@ QMediaPlayer::State PythonQtShell_QMediaPlayerControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaPlayer::State"}; @@ -8330,7 +8330,7 @@ void PythonQtShell_QMediaPlayerControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8352,7 +8352,7 @@ void PythonQtShell_QMediaPlayerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8374,7 +8374,7 @@ int PythonQtShell_QMediaPlayerControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; diff --git a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp index c9f2ba41d..c49b39230 100644 --- a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp +++ b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp @@ -39,7 +39,7 @@ void PythonQtShell_QMediaPlaylist::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -61,7 +61,7 @@ void PythonQtShell_QMediaPlaylist::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -83,7 +83,7 @@ bool PythonQtShell_QMediaPlaylist::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -116,7 +116,7 @@ bool PythonQtShell_QMediaPlaylist::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -149,7 +149,7 @@ QMediaObject* PythonQtShell_QMediaPlaylist::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -182,7 +182,7 @@ bool PythonQtShell_QMediaPlaylist::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -215,7 +215,7 @@ void PythonQtShell_QMediaPlaylist::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -385,7 +385,7 @@ void PythonQtShell_QMediaRecorder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -407,7 +407,7 @@ void PythonQtShell_QMediaRecorder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -429,7 +429,7 @@ bool PythonQtShell_QMediaRecorder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -462,7 +462,7 @@ bool PythonQtShell_QMediaRecorder::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -495,7 +495,7 @@ QMediaObject* PythonQtShell_QMediaRecorder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -528,7 +528,7 @@ bool PythonQtShell_QMediaRecorder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -561,7 +561,7 @@ void PythonQtShell_QMediaRecorder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -771,7 +771,7 @@ void PythonQtShell_QMediaRecorderControl::applySettings() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applySettings"); + static PyObject* name = PyUnicode_FromString("applySettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -793,7 +793,7 @@ void PythonQtShell_QMediaRecorderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -815,7 +815,7 @@ void PythonQtShell_QMediaRecorderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -837,7 +837,7 @@ qint64 PythonQtShell_QMediaRecorderControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -870,7 +870,7 @@ bool PythonQtShell_QMediaRecorderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -903,7 +903,7 @@ bool PythonQtShell_QMediaRecorderControl::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -936,7 +936,7 @@ bool PythonQtShell_QMediaRecorderControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -969,7 +969,7 @@ QUrl PythonQtShell_QMediaRecorderControl::outputLocation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("outputLocation"); + static PyObject* name = PyUnicode_FromString("outputLocation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl"}; @@ -1002,7 +1002,7 @@ void PythonQtShell_QMediaRecorderControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1024,7 +1024,7 @@ bool PythonQtShell_QMediaRecorderControl::setOutputLocation(const QUrl& locati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOutputLocation"); + static PyObject* name = PyUnicode_FromString("setOutputLocation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -1057,7 +1057,7 @@ void PythonQtShell_QMediaRecorderControl::setState(QMediaRecorder::State state0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setState"); + static PyObject* name = PyUnicode_FromString("setState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaRecorder::State"}; @@ -1079,7 +1079,7 @@ void PythonQtShell_QMediaRecorderControl::setVolume(qreal volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1101,7 +1101,7 @@ QMediaRecorder::State PythonQtShell_QMediaRecorderControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaRecorder::State"}; @@ -1134,7 +1134,7 @@ QMediaRecorder::Status PythonQtShell_QMediaRecorderControl::status() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("status"); + static PyObject* name = PyUnicode_FromString("status"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaRecorder::Status"}; @@ -1167,7 +1167,7 @@ void PythonQtShell_QMediaRecorderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1189,7 +1189,7 @@ qreal PythonQtShell_QMediaRecorderControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -1433,7 +1433,7 @@ void PythonQtShell_QMediaService::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1455,7 +1455,7 @@ void PythonQtShell_QMediaService::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1477,7 +1477,7 @@ bool PythonQtShell_QMediaService::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1510,7 +1510,7 @@ bool PythonQtShell_QMediaService::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1543,7 +1543,7 @@ void PythonQtShell_QMediaService::releaseControl(QMediaControl* control0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseControl"); + static PyObject* name = PyUnicode_FromString("releaseControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaControl*"}; @@ -1565,7 +1565,7 @@ QMediaControl* PythonQtShell_QMediaService::requestControl(const char* name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestControl"); + static PyObject* name = PyUnicode_FromString("requestControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaControl*" , "const char*"}; @@ -1598,7 +1598,7 @@ void PythonQtShell_QMediaService::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1653,7 +1653,7 @@ int PythonQtShell_QMediaServiceCameraInfoInterface::cameraOrientation(const QBy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraOrientation"); + static PyObject* name = PyUnicode_FromString("cameraOrientation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QByteArray&"}; @@ -1686,7 +1686,7 @@ QCamera::Position PythonQtShell_QMediaServiceCameraInfoInterface::cameraPositio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraPosition"); + static PyObject* name = PyUnicode_FromString("cameraPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Position" , "const QByteArray&"}; @@ -1739,7 +1739,7 @@ QByteArray PythonQtShell_QMediaServiceDefaultDeviceInterface::defaultDevice(con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultDevice"); + static PyObject* name = PyUnicode_FromString("defaultDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QByteArray&"}; @@ -1787,7 +1787,7 @@ QMediaService* PythonQtShell_QMediaServiceProviderFactoryInterface::create(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*" , "const QString&"}; @@ -1820,7 +1820,7 @@ void PythonQtShell_QMediaServiceProviderFactoryInterface::release(QMediaService* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaService*"}; @@ -1929,7 +1929,7 @@ QMediaService* PythonQtShell_QMediaServiceProviderPlugin::create(const QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*" , "const QString&"}; @@ -1962,7 +1962,7 @@ void PythonQtShell_QMediaServiceProviderPlugin::release(QMediaService* service0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaService*"}; @@ -2017,7 +2017,7 @@ QString PythonQtShell_QMediaServiceSupportedDevicesInterface::deviceDescription if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceDescription"); + static PyObject* name = PyUnicode_FromString("deviceDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "const QByteArray&"}; @@ -2050,7 +2050,7 @@ QList PythonQtShell_QMediaServiceSupportedDevicesInterface::device if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devices"); + static PyObject* name = PyUnicode_FromString("devices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QByteArray&"}; @@ -2103,7 +2103,7 @@ QMultimedia::SupportEstimate PythonQtShell_QMediaServiceSupportedFormatsInterfa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasSupport"); + static PyObject* name = PyUnicode_FromString("hasSupport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::SupportEstimate" , "const QString&" , "const QStringList&"}; @@ -2136,7 +2136,7 @@ QStringList PythonQtShell_QMediaServiceSupportedFormatsInterface::supportedMime if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedMimeTypes"); + static PyObject* name = PyUnicode_FromString("supportedMimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2189,7 +2189,7 @@ void PythonQtShell_QMediaStreamsControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2211,7 +2211,7 @@ void PythonQtShell_QMediaStreamsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2233,7 +2233,7 @@ bool PythonQtShell_QMediaStreamsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2266,7 +2266,7 @@ bool PythonQtShell_QMediaStreamsControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2299,7 +2299,7 @@ bool PythonQtShell_QMediaStreamsControl::isActive(int streamNumber0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isActive"); + static PyObject* name = PyUnicode_FromString("isActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2332,7 +2332,7 @@ QVariant PythonQtShell_QMediaStreamsControl::metaData(int streamNumber0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QString&"}; @@ -2365,7 +2365,7 @@ void PythonQtShell_QMediaStreamsControl::setActive(int streamNumber0, bool sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "bool"}; @@ -2387,7 +2387,7 @@ int PythonQtShell_QMediaStreamsControl::streamCount() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("streamCount"); + static PyObject* name = PyUnicode_FromString("streamCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2420,7 +2420,7 @@ QMediaStreamsControl::StreamType PythonQtShell_QMediaStreamsControl::streamType if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("streamType"); + static PyObject* name = PyUnicode_FromString("streamType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaStreamsControl::StreamType" , "int"}; @@ -2453,7 +2453,7 @@ void PythonQtShell_QMediaStreamsControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2707,7 +2707,7 @@ void PythonQtShell_QMediaVideoProbeControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2729,7 +2729,7 @@ void PythonQtShell_QMediaVideoProbeControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2751,7 +2751,7 @@ bool PythonQtShell_QMediaVideoProbeControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2784,7 +2784,7 @@ bool PythonQtShell_QMediaVideoProbeControl::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2817,7 +2817,7 @@ void PythonQtShell_QMediaVideoProbeControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2862,7 +2862,7 @@ QStringList PythonQtShell_QMetaDataReaderControl::availableMetaData() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableMetaData"); + static PyObject* name = PyUnicode_FromString("availableMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2895,7 +2895,7 @@ void PythonQtShell_QMetaDataReaderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2917,7 +2917,7 @@ void PythonQtShell_QMetaDataReaderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2939,7 +2939,7 @@ bool PythonQtShell_QMetaDataReaderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2972,7 +2972,7 @@ bool PythonQtShell_QMetaDataReaderControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3005,7 +3005,7 @@ bool PythonQtShell_QMetaDataReaderControl::isMetaDataAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMetaDataAvailable"); + static PyObject* name = PyUnicode_FromString("isMetaDataAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3038,7 +3038,7 @@ QVariant PythonQtShell_QMetaDataReaderControl::metaData(const QString& key0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&"}; @@ -3071,7 +3071,7 @@ void PythonQtShell_QMetaDataReaderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3131,7 +3131,7 @@ QStringList PythonQtShell_QMetaDataWriterControl::availableMetaData() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableMetaData"); + static PyObject* name = PyUnicode_FromString("availableMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3164,7 +3164,7 @@ void PythonQtShell_QMetaDataWriterControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3186,7 +3186,7 @@ void PythonQtShell_QMetaDataWriterControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3208,7 +3208,7 @@ bool PythonQtShell_QMetaDataWriterControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3241,7 +3241,7 @@ bool PythonQtShell_QMetaDataWriterControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3274,7 +3274,7 @@ bool PythonQtShell_QMetaDataWriterControl::isMetaDataAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMetaDataAvailable"); + static PyObject* name = PyUnicode_FromString("isMetaDataAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3307,7 +3307,7 @@ bool PythonQtShell_QMetaDataWriterControl::isWritable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isWritable"); + static PyObject* name = PyUnicode_FromString("isWritable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3340,7 +3340,7 @@ QVariant PythonQtShell_QMetaDataWriterControl::metaData(const QString& key0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&"}; @@ -3373,7 +3373,7 @@ void PythonQtShell_QMetaDataWriterControl::setMetaData(const QString& key0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMetaData"); + static PyObject* name = PyUnicode_FromString("setMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&"}; @@ -3395,7 +3395,7 @@ void PythonQtShell_QMetaDataWriterControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3467,7 +3467,7 @@ void PythonQtShell_QRadioData::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3489,7 +3489,7 @@ void PythonQtShell_QRadioData::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3511,7 +3511,7 @@ bool PythonQtShell_QRadioData::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3544,7 +3544,7 @@ bool PythonQtShell_QRadioData::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3577,7 +3577,7 @@ QMediaObject* PythonQtShell_QRadioData::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -3610,7 +3610,7 @@ bool PythonQtShell_QRadioData::setMediaObject(QMediaObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -3643,7 +3643,7 @@ void PythonQtShell_QRadioData::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3733,7 +3733,7 @@ void PythonQtShell_QRadioDataControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3755,7 +3755,7 @@ void PythonQtShell_QRadioDataControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3777,7 +3777,7 @@ QRadioData::Error PythonQtShell_QRadioDataControl::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioData::Error"}; @@ -3810,7 +3810,7 @@ QString PythonQtShell_QRadioDataControl::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3843,7 +3843,7 @@ bool PythonQtShell_QRadioDataControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3876,7 +3876,7 @@ bool PythonQtShell_QRadioDataControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3909,7 +3909,7 @@ bool PythonQtShell_QRadioDataControl::isAlternativeFrequenciesEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAlternativeFrequenciesEnabled"); + static PyObject* name = PyUnicode_FromString("isAlternativeFrequenciesEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3942,7 +3942,7 @@ QRadioData::ProgramType PythonQtShell_QRadioDataControl::programType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("programType"); + static PyObject* name = PyUnicode_FromString("programType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioData::ProgramType"}; @@ -3975,7 +3975,7 @@ QString PythonQtShell_QRadioDataControl::programTypeName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("programTypeName"); + static PyObject* name = PyUnicode_FromString("programTypeName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4008,7 +4008,7 @@ QString PythonQtShell_QRadioDataControl::radioText() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("radioText"); + static PyObject* name = PyUnicode_FromString("radioText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4041,7 +4041,7 @@ void PythonQtShell_QRadioDataControl::setAlternativeFrequenciesEnabled(bool ena if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAlternativeFrequenciesEnabled"); + static PyObject* name = PyUnicode_FromString("setAlternativeFrequenciesEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4063,7 +4063,7 @@ QString PythonQtShell_QRadioDataControl::stationId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stationId"); + static PyObject* name = PyUnicode_FromString("stationId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4096,7 +4096,7 @@ QString PythonQtShell_QRadioDataControl::stationName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stationName"); + static PyObject* name = PyUnicode_FromString("stationName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4129,7 +4129,7 @@ void PythonQtShell_QRadioDataControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4219,7 +4219,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QRadioTuner::availability() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -4252,7 +4252,7 @@ bool PythonQtShell_QRadioTuner::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -4285,7 +4285,7 @@ void PythonQtShell_QRadioTuner::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4307,7 +4307,7 @@ void PythonQtShell_QRadioTuner::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4329,7 +4329,7 @@ bool PythonQtShell_QRadioTuner::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4362,7 +4362,7 @@ bool PythonQtShell_QRadioTuner::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4395,7 +4395,7 @@ bool PythonQtShell_QRadioTuner::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4428,7 +4428,7 @@ QMediaService* PythonQtShell_QRadioTuner::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -4461,7 +4461,7 @@ void PythonQtShell_QRadioTuner::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4483,7 +4483,7 @@ void PythonQtShell_QRadioTuner::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4613,7 +4613,7 @@ QRadioTuner::Band PythonQtShell_QRadioTunerControl::band() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("band"); + static PyObject* name = PyUnicode_FromString("band"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::Band"}; @@ -4646,7 +4646,7 @@ void PythonQtShell_QRadioTunerControl::cancelSearch() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelSearch"); + static PyObject* name = PyUnicode_FromString("cancelSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4668,7 +4668,7 @@ void PythonQtShell_QRadioTunerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4690,7 +4690,7 @@ void PythonQtShell_QRadioTunerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4712,7 +4712,7 @@ QRadioTuner::Error PythonQtShell_QRadioTunerControl::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::Error"}; @@ -4745,7 +4745,7 @@ QString PythonQtShell_QRadioTunerControl::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4778,7 +4778,7 @@ bool PythonQtShell_QRadioTunerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4811,7 +4811,7 @@ bool PythonQtShell_QRadioTunerControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4844,7 +4844,7 @@ int PythonQtShell_QRadioTunerControl::frequency() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequency"); + static PyObject* name = PyUnicode_FromString("frequency"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4877,7 +4877,7 @@ QPair PythonQtShell_QRadioTunerControl::frequencyRange(QRadioTuner: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequencyRange"); + static PyObject* name = PyUnicode_FromString("frequencyRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPair" , "QRadioTuner::Band"}; @@ -4910,7 +4910,7 @@ int PythonQtShell_QRadioTunerControl::frequencyStep(QRadioTuner::Band b0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequencyStep"); + static PyObject* name = PyUnicode_FromString("frequencyStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QRadioTuner::Band"}; @@ -4943,7 +4943,7 @@ bool PythonQtShell_QRadioTunerControl::isAntennaConnected() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAntennaConnected"); + static PyObject* name = PyUnicode_FromString("isAntennaConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4976,7 +4976,7 @@ bool PythonQtShell_QRadioTunerControl::isBandSupported(QRadioTuner::Band b0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isBandSupported"); + static PyObject* name = PyUnicode_FromString("isBandSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QRadioTuner::Band"}; @@ -5009,7 +5009,7 @@ bool PythonQtShell_QRadioTunerControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5042,7 +5042,7 @@ bool PythonQtShell_QRadioTunerControl::isSearching() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSearching"); + static PyObject* name = PyUnicode_FromString("isSearching"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5075,7 +5075,7 @@ bool PythonQtShell_QRadioTunerControl::isStereo() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isStereo"); + static PyObject* name = PyUnicode_FromString("isStereo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5108,7 +5108,7 @@ void PythonQtShell_QRadioTunerControl::searchAllStations(QRadioTuner::SearchMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchAllStations"); + static PyObject* name = PyUnicode_FromString("searchAllStations"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::SearchMode"}; @@ -5130,7 +5130,7 @@ void PythonQtShell_QRadioTunerControl::searchBackward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchBackward"); + static PyObject* name = PyUnicode_FromString("searchBackward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5152,7 +5152,7 @@ void PythonQtShell_QRadioTunerControl::searchForward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchForward"); + static PyObject* name = PyUnicode_FromString("searchForward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5174,7 +5174,7 @@ void PythonQtShell_QRadioTunerControl::setBand(QRadioTuner::Band b0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBand"); + static PyObject* name = PyUnicode_FromString("setBand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::Band"}; @@ -5196,7 +5196,7 @@ void PythonQtShell_QRadioTunerControl::setFrequency(int frequency0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFrequency"); + static PyObject* name = PyUnicode_FromString("setFrequency"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5218,7 +5218,7 @@ void PythonQtShell_QRadioTunerControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5240,7 +5240,7 @@ void PythonQtShell_QRadioTunerControl::setStereoMode(QRadioTuner::StereoMode mo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setStereoMode"); + static PyObject* name = PyUnicode_FromString("setStereoMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::StereoMode"}; @@ -5262,7 +5262,7 @@ void PythonQtShell_QRadioTunerControl::setVolume(int volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5284,7 +5284,7 @@ int PythonQtShell_QRadioTunerControl::signalStrength() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("signalStrength"); + static PyObject* name = PyUnicode_FromString("signalStrength"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5317,7 +5317,7 @@ void PythonQtShell_QRadioTunerControl::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5339,7 +5339,7 @@ QRadioTuner::State PythonQtShell_QRadioTunerControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::State"}; @@ -5372,7 +5372,7 @@ QRadioTuner::StereoMode PythonQtShell_QRadioTunerControl::stereoMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stereoMode"); + static PyObject* name = PyUnicode_FromString("stereoMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::StereoMode"}; @@ -5405,7 +5405,7 @@ void PythonQtShell_QRadioTunerControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5427,7 +5427,7 @@ void PythonQtShell_QRadioTunerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5449,7 +5449,7 @@ int PythonQtShell_QRadioTunerControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5635,7 +5635,7 @@ void PythonQtShell_QSound::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5657,7 +5657,7 @@ void PythonQtShell_QSound::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5679,7 +5679,7 @@ bool PythonQtShell_QSound::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5712,7 +5712,7 @@ bool PythonQtShell_QSound::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5745,7 +5745,7 @@ void PythonQtShell_QSound::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5820,7 +5820,7 @@ void PythonQtShell_QSoundEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5842,7 +5842,7 @@ void PythonQtShell_QSoundEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5864,7 +5864,7 @@ bool PythonQtShell_QSoundEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5897,7 +5897,7 @@ bool PythonQtShell_QSoundEffect::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5930,7 +5930,7 @@ void PythonQtShell_QSoundEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6050,7 +6050,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6094,7 +6094,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::defaultDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultDevice"); + static PyObject* name = PyUnicode_FromString("defaultDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6127,7 +6127,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::deviceCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceCount"); + static PyObject* name = PyUnicode_FromString("deviceCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6160,7 +6160,7 @@ QString PythonQtShell_QVideoDeviceSelectorControl::deviceDescription(int index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceDescription"); + static PyObject* name = PyUnicode_FromString("deviceDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6193,7 +6193,7 @@ QString PythonQtShell_QVideoDeviceSelectorControl::deviceName(int index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceName"); + static PyObject* name = PyUnicode_FromString("deviceName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6226,7 +6226,7 @@ bool PythonQtShell_QVideoDeviceSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6259,7 +6259,7 @@ bool PythonQtShell_QVideoDeviceSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6292,7 +6292,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::selectedDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedDevice"); + static PyObject* name = PyUnicode_FromString("selectedDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6325,7 +6325,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::setSelectedDevice(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectedDevice"); + static PyObject* name = PyUnicode_FromString("setSelectedDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6347,7 +6347,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6532,7 +6532,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6554,7 +6554,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6576,7 +6576,7 @@ bool PythonQtShell_QVideoEncoderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6609,7 +6609,7 @@ bool PythonQtShell_QVideoEncoderSettingsControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6642,7 +6642,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::setVideoSettings(const QVideoEn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVideoSettings"); + static PyObject* name = PyUnicode_FromString("setVideoSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVideoEncoderSettings&"}; @@ -6664,7 +6664,7 @@ QList PythonQtShell_QVideoEncoderSettingsControl::supportedFrameRates(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedFrameRates"); + static PyObject* name = PyUnicode_FromString("supportedFrameRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QVideoEncoderSettings&" , "bool*"}; @@ -6697,7 +6697,7 @@ QList PythonQtShell_QVideoEncoderSettingsControl::supportedResolutions( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedResolutions"); + static PyObject* name = PyUnicode_FromString("supportedResolutions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QVideoEncoderSettings&" , "bool*"}; @@ -6730,7 +6730,7 @@ QStringList PythonQtShell_QVideoEncoderSettingsControl::supportedVideoCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedVideoCodecs"); + static PyObject* name = PyUnicode_FromString("supportedVideoCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6763,7 +6763,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6785,7 +6785,7 @@ QString PythonQtShell_QVideoEncoderSettingsControl::videoCodecDescription(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoCodecDescription"); + static PyObject* name = PyUnicode_FromString("videoCodecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -6818,7 +6818,7 @@ QVideoEncoderSettings PythonQtShell_QVideoEncoderSettingsControl::videoSettings if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoSettings"); + static PyObject* name = PyUnicode_FromString("videoSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoEncoderSettings"}; @@ -7108,7 +7108,7 @@ void PythonQtShell_QVideoProbe::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7130,7 +7130,7 @@ void PythonQtShell_QVideoProbe::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7152,7 +7152,7 @@ bool PythonQtShell_QVideoProbe::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7185,7 +7185,7 @@ bool PythonQtShell_QVideoProbe::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7218,7 +7218,7 @@ void PythonQtShell_QVideoProbe::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp index f2462a1b8..84f0f1598 100644 --- a/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp +++ b/generated_cpp_511/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp @@ -48,7 +48,7 @@ void PythonQtShell_QVideoRendererControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -70,7 +70,7 @@ void PythonQtShell_QVideoRendererControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -92,7 +92,7 @@ bool PythonQtShell_QVideoRendererControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -125,7 +125,7 @@ bool PythonQtShell_QVideoRendererControl::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -158,7 +158,7 @@ void PythonQtShell_QVideoRendererControl::setSurface(QAbstractVideoSurface* sur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSurface"); + static PyObject* name = PyUnicode_FromString("setSurface"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractVideoSurface*"}; @@ -180,7 +180,7 @@ QAbstractVideoSurface* PythonQtShell_QVideoRendererControl::surface() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surface"); + static PyObject* name = PyUnicode_FromString("surface"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoSurface*"}; @@ -213,7 +213,7 @@ void PythonQtShell_QVideoRendererControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -429,7 +429,7 @@ void PythonQtShell_QVideoWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -451,7 +451,7 @@ void PythonQtShell_QVideoWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -473,7 +473,7 @@ void PythonQtShell_QVideoWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -495,7 +495,7 @@ void PythonQtShell_QVideoWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -517,7 +517,7 @@ void PythonQtShell_QVideoWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -539,7 +539,7 @@ void PythonQtShell_QVideoWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -561,7 +561,7 @@ int PythonQtShell_QVideoWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -594,7 +594,7 @@ void PythonQtShell_QVideoWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -616,7 +616,7 @@ void PythonQtShell_QVideoWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -638,7 +638,7 @@ void PythonQtShell_QVideoWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -660,7 +660,7 @@ void PythonQtShell_QVideoWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -682,7 +682,7 @@ void PythonQtShell_QVideoWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -704,7 +704,7 @@ bool PythonQtShell_QVideoWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -737,7 +737,7 @@ bool PythonQtShell_QVideoWidget::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -770,7 +770,7 @@ void PythonQtShell_QVideoWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -792,7 +792,7 @@ bool PythonQtShell_QVideoWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -825,7 +825,7 @@ void PythonQtShell_QVideoWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -847,7 +847,7 @@ bool PythonQtShell_QVideoWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -880,7 +880,7 @@ int PythonQtShell_QVideoWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -913,7 +913,7 @@ void PythonQtShell_QVideoWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -935,7 +935,7 @@ void PythonQtShell_QVideoWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -957,7 +957,7 @@ void PythonQtShell_QVideoWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -979,7 +979,7 @@ QVariant PythonQtShell_QVideoWidget::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1012,7 +1012,7 @@ void PythonQtShell_QVideoWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1034,7 +1034,7 @@ void PythonQtShell_QVideoWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1056,7 +1056,7 @@ void PythonQtShell_QVideoWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1078,7 +1078,7 @@ QMediaObject* PythonQtShell_QVideoWidget::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -1111,7 +1111,7 @@ int PythonQtShell_QVideoWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1144,7 +1144,7 @@ QSize PythonQtShell_QVideoWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1177,7 +1177,7 @@ void PythonQtShell_QVideoWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1199,7 +1199,7 @@ void PythonQtShell_QVideoWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1221,7 +1221,7 @@ void PythonQtShell_QVideoWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1243,7 +1243,7 @@ void PythonQtShell_QVideoWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1265,7 +1265,7 @@ void PythonQtShell_QVideoWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1287,7 +1287,7 @@ bool PythonQtShell_QVideoWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1320,7 +1320,7 @@ QPaintEngine* PythonQtShell_QVideoWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1353,7 +1353,7 @@ void PythonQtShell_QVideoWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1375,7 +1375,7 @@ QPaintDevice* PythonQtShell_QVideoWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1408,7 +1408,7 @@ void PythonQtShell_QVideoWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1430,7 +1430,7 @@ bool PythonQtShell_QVideoWidget::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -1463,7 +1463,7 @@ void PythonQtShell_QVideoWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1485,7 +1485,7 @@ QPainter* PythonQtShell_QVideoWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1518,7 +1518,7 @@ void PythonQtShell_QVideoWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1540,7 +1540,7 @@ QSize PythonQtShell_QVideoWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1573,7 +1573,7 @@ void PythonQtShell_QVideoWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1595,7 +1595,7 @@ void PythonQtShell_QVideoWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1617,7 +1617,7 @@ void PythonQtShell_QVideoWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1692,7 +1692,7 @@ Qt::AspectRatioMode PythonQtShell_QVideoWidgetControl::aspectRatioMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aspectRatioMode"); + static PyObject* name = PyUnicode_FromString("aspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::AspectRatioMode"}; @@ -1725,7 +1725,7 @@ int PythonQtShell_QVideoWidgetControl::brightness() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("brightness"); + static PyObject* name = PyUnicode_FromString("brightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1758,7 +1758,7 @@ void PythonQtShell_QVideoWidgetControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1780,7 +1780,7 @@ int PythonQtShell_QVideoWidgetControl::contrast() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contrast"); + static PyObject* name = PyUnicode_FromString("contrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1813,7 +1813,7 @@ void PythonQtShell_QVideoWidgetControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1835,7 +1835,7 @@ bool PythonQtShell_QVideoWidgetControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1868,7 +1868,7 @@ bool PythonQtShell_QVideoWidgetControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1901,7 +1901,7 @@ int PythonQtShell_QVideoWidgetControl::hue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hue"); + static PyObject* name = PyUnicode_FromString("hue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1934,7 +1934,7 @@ bool PythonQtShell_QVideoWidgetControl::isFullScreen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFullScreen"); + static PyObject* name = PyUnicode_FromString("isFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1967,7 +1967,7 @@ int PythonQtShell_QVideoWidgetControl::saturation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("saturation"); + static PyObject* name = PyUnicode_FromString("saturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2000,7 +2000,7 @@ void PythonQtShell_QVideoWidgetControl::setAspectRatioMode(Qt::AspectRatioMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAspectRatioMode"); + static PyObject* name = PyUnicode_FromString("setAspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::AspectRatioMode"}; @@ -2022,7 +2022,7 @@ void PythonQtShell_QVideoWidgetControl::setBrightness(int brightness0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBrightness"); + static PyObject* name = PyUnicode_FromString("setBrightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2044,7 +2044,7 @@ void PythonQtShell_QVideoWidgetControl::setContrast(int contrast0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContrast"); + static PyObject* name = PyUnicode_FromString("setContrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2066,7 +2066,7 @@ void PythonQtShell_QVideoWidgetControl::setFullScreen(bool fullScreen0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFullScreen"); + static PyObject* name = PyUnicode_FromString("setFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2088,7 +2088,7 @@ void PythonQtShell_QVideoWidgetControl::setHue(int hue0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHue"); + static PyObject* name = PyUnicode_FromString("setHue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2110,7 +2110,7 @@ void PythonQtShell_QVideoWidgetControl::setSaturation(int saturation0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSaturation"); + static PyObject* name = PyUnicode_FromString("setSaturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2132,7 +2132,7 @@ void PythonQtShell_QVideoWidgetControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2154,7 +2154,7 @@ QWidget* PythonQtShell_QVideoWidgetControl::videoWidget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoWidget"); + static PyObject* name = PyUnicode_FromString("videoWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -2275,7 +2275,7 @@ Qt::AspectRatioMode PythonQtShell_QVideoWindowControl::aspectRatioMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aspectRatioMode"); + static PyObject* name = PyUnicode_FromString("aspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::AspectRatioMode"}; @@ -2308,7 +2308,7 @@ int PythonQtShell_QVideoWindowControl::brightness() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("brightness"); + static PyObject* name = PyUnicode_FromString("brightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2341,7 +2341,7 @@ void PythonQtShell_QVideoWindowControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2363,7 +2363,7 @@ int PythonQtShell_QVideoWindowControl::contrast() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contrast"); + static PyObject* name = PyUnicode_FromString("contrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2396,7 +2396,7 @@ void PythonQtShell_QVideoWindowControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2418,7 +2418,7 @@ QRect PythonQtShell_QVideoWindowControl::displayRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("displayRect"); + static PyObject* name = PyUnicode_FromString("displayRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2451,7 +2451,7 @@ bool PythonQtShell_QVideoWindowControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2484,7 +2484,7 @@ bool PythonQtShell_QVideoWindowControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2517,7 +2517,7 @@ int PythonQtShell_QVideoWindowControl::hue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hue"); + static PyObject* name = PyUnicode_FromString("hue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2550,7 +2550,7 @@ bool PythonQtShell_QVideoWindowControl::isFullScreen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFullScreen"); + static PyObject* name = PyUnicode_FromString("isFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2583,7 +2583,7 @@ QSize PythonQtShell_QVideoWindowControl::nativeSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeSize"); + static PyObject* name = PyUnicode_FromString("nativeSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2616,7 +2616,7 @@ void PythonQtShell_QVideoWindowControl::repaint() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("repaint"); + static PyObject* name = PyUnicode_FromString("repaint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2638,7 +2638,7 @@ int PythonQtShell_QVideoWindowControl::saturation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("saturation"); + static PyObject* name = PyUnicode_FromString("saturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2671,7 +2671,7 @@ void PythonQtShell_QVideoWindowControl::setAspectRatioMode(Qt::AspectRatioMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAspectRatioMode"); + static PyObject* name = PyUnicode_FromString("setAspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::AspectRatioMode"}; @@ -2693,7 +2693,7 @@ void PythonQtShell_QVideoWindowControl::setBrightness(int brightness0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBrightness"); + static PyObject* name = PyUnicode_FromString("setBrightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2715,7 +2715,7 @@ void PythonQtShell_QVideoWindowControl::setContrast(int contrast0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContrast"); + static PyObject* name = PyUnicode_FromString("setContrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2737,7 +2737,7 @@ void PythonQtShell_QVideoWindowControl::setDisplayRect(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDisplayRect"); + static PyObject* name = PyUnicode_FromString("setDisplayRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2759,7 +2759,7 @@ void PythonQtShell_QVideoWindowControl::setFullScreen(bool fullScreen0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFullScreen"); + static PyObject* name = PyUnicode_FromString("setFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2781,7 +2781,7 @@ void PythonQtShell_QVideoWindowControl::setHue(int hue0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHue"); + static PyObject* name = PyUnicode_FromString("setHue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2803,7 +2803,7 @@ void PythonQtShell_QVideoWindowControl::setSaturation(int saturation0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSaturation"); + static PyObject* name = PyUnicode_FromString("setSaturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2825,7 +2825,7 @@ void PythonQtShell_QVideoWindowControl::setWinId(WId id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setWinId"); + static PyObject* name = PyUnicode_FromString("setWinId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "WId"}; @@ -2847,7 +2847,7 @@ void PythonQtShell_QVideoWindowControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2869,7 +2869,7 @@ WId PythonQtShell_QVideoWindowControl::winId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("winId"); + static PyObject* name = PyUnicode_FromString("winId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"WId"}; diff --git a/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network0.cpp b/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network0.cpp index 742e5a74e..75957029a 100644 --- a/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +++ b/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network0.cpp @@ -50,7 +50,7 @@ qint64 PythonQtShell_QAbstractNetworkCache::cacheSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -83,7 +83,7 @@ void PythonQtShell_QAbstractNetworkCache::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -105,7 +105,7 @@ void PythonQtShell_QAbstractNetworkCache::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -127,7 +127,7 @@ void PythonQtShell_QAbstractNetworkCache::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -149,7 +149,7 @@ QIODevice* PythonQtShell_QAbstractNetworkCache::data(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -182,7 +182,7 @@ bool PythonQtShell_QAbstractNetworkCache::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -215,7 +215,7 @@ bool PythonQtShell_QAbstractNetworkCache::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -248,7 +248,7 @@ void PythonQtShell_QAbstractNetworkCache::insert(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -270,7 +270,7 @@ QNetworkCacheMetaData PythonQtShell_QAbstractNetworkCache::metaData(const QUrl& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -303,7 +303,7 @@ QIODevice* PythonQtShell_QAbstractNetworkCache::prepare(const QNetworkCacheMeta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -336,7 +336,7 @@ bool PythonQtShell_QAbstractNetworkCache::remove(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -369,7 +369,7 @@ void PythonQtShell_QAbstractNetworkCache::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -391,7 +391,7 @@ void PythonQtShell_QAbstractNetworkCache::updateMetaData(const QNetworkCacheMeta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -471,7 +471,7 @@ bool PythonQtShell_QAbstractSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -504,7 +504,7 @@ qint64 PythonQtShell_QAbstractSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -537,7 +537,7 @@ qint64 PythonQtShell_QAbstractSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -570,7 +570,7 @@ bool PythonQtShell_QAbstractSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -603,7 +603,7 @@ void PythonQtShell_QAbstractSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -625,7 +625,7 @@ void PythonQtShell_QAbstractSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -647,7 +647,7 @@ void PythonQtShell_QAbstractSocket::connectToHost(const QHostAddress& address0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -669,7 +669,7 @@ void PythonQtShell_QAbstractSocket::connectToHost(const QString& hostName0, uns if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -691,7 +691,7 @@ void PythonQtShell_QAbstractSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -713,7 +713,7 @@ void PythonQtShell_QAbstractSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -735,7 +735,7 @@ bool PythonQtShell_QAbstractSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -768,7 +768,7 @@ bool PythonQtShell_QAbstractSocket::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -801,7 +801,7 @@ bool PythonQtShell_QAbstractSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -834,7 +834,7 @@ bool PythonQtShell_QAbstractSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -867,7 +867,7 @@ qint64 PythonQtShell_QAbstractSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -900,7 +900,7 @@ qint64 PythonQtShell_QAbstractSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -933,7 +933,7 @@ qint64 PythonQtShell_QAbstractSocket::readLineData(char* data0, qint64 maxlen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -966,7 +966,7 @@ bool PythonQtShell_QAbstractSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -999,7 +999,7 @@ void PythonQtShell_QAbstractSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1021,7 +1021,7 @@ bool PythonQtShell_QAbstractSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1054,7 +1054,7 @@ void PythonQtShell_QAbstractSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -1076,7 +1076,7 @@ bool PythonQtShell_QAbstractSocket::setSocketDescriptor(qintptr socketDescript if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -1109,7 +1109,7 @@ void PythonQtShell_QAbstractSocket::setSocketOption(QAbstractSocket::SocketOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -1131,7 +1131,7 @@ qint64 PythonQtShell_QAbstractSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1164,7 +1164,7 @@ qintptr PythonQtShell_QAbstractSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -1197,7 +1197,7 @@ QVariant PythonQtShell_QAbstractSocket::socketOption(QAbstractSocket::SocketOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1230,7 +1230,7 @@ void PythonQtShell_QAbstractSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1252,7 +1252,7 @@ bool PythonQtShell_QAbstractSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1285,7 +1285,7 @@ bool PythonQtShell_QAbstractSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1318,7 +1318,7 @@ bool PythonQtShell_QAbstractSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1351,7 +1351,7 @@ bool PythonQtShell_QAbstractSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1384,7 +1384,7 @@ qint64 PythonQtShell_QAbstractSocket::writeData(const char* data0, qint64 len if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1760,7 +1760,7 @@ void PythonQtShell_QDnsLookup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1782,7 +1782,7 @@ void PythonQtShell_QDnsLookup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1804,7 +1804,7 @@ bool PythonQtShell_QDnsLookup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1837,7 +1837,7 @@ bool PythonQtShell_QDnsLookup::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1870,7 +1870,7 @@ void PythonQtShell_QDnsLookup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2469,7 +2469,7 @@ void PythonQtShell_QHttpMultiPart::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2491,7 +2491,7 @@ void PythonQtShell_QHttpMultiPart::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2513,7 +2513,7 @@ bool PythonQtShell_QHttpMultiPart::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2546,7 +2546,7 @@ bool PythonQtShell_QHttpMultiPart::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2579,7 +2579,7 @@ void PythonQtShell_QHttpMultiPart::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2708,7 +2708,7 @@ void PythonQtShell_QLocalServer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2730,7 +2730,7 @@ void PythonQtShell_QLocalServer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2752,7 +2752,7 @@ bool PythonQtShell_QLocalServer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2785,7 +2785,7 @@ bool PythonQtShell_QLocalServer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2818,7 +2818,7 @@ bool PythonQtShell_QLocalServer::hasPendingConnections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2851,7 +2851,7 @@ void PythonQtShell_QLocalServer::incomingConnection(quintptr socketDescriptor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "quintptr"}; @@ -2873,7 +2873,7 @@ QLocalSocket* PythonQtShell_QLocalServer::nextPendingConnection() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLocalSocket*"}; @@ -2906,7 +2906,7 @@ void PythonQtShell_QLocalServer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3041,7 +3041,7 @@ bool PythonQtShell_QLocalSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3074,7 +3074,7 @@ qint64 PythonQtShell_QLocalSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3107,7 +3107,7 @@ qint64 PythonQtShell_QLocalSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3140,7 +3140,7 @@ bool PythonQtShell_QLocalSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3173,7 +3173,7 @@ void PythonQtShell_QLocalSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3195,7 +3195,7 @@ void PythonQtShell_QLocalSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QLocalSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3239,7 +3239,7 @@ bool PythonQtShell_QLocalSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3272,7 +3272,7 @@ bool PythonQtShell_QLocalSocket::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3305,7 +3305,7 @@ bool PythonQtShell_QLocalSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3338,7 +3338,7 @@ bool PythonQtShell_QLocalSocket::open(QIODevice::OpenMode openMode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3371,7 +3371,7 @@ qint64 PythonQtShell_QLocalSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3404,7 +3404,7 @@ qint64 PythonQtShell_QLocalSocket::readData(char* arg__1, qint64 arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3437,7 +3437,7 @@ qint64 PythonQtShell_QLocalSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3470,7 +3470,7 @@ bool PythonQtShell_QLocalSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3503,7 +3503,7 @@ bool PythonQtShell_QLocalSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3536,7 +3536,7 @@ qint64 PythonQtShell_QLocalSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3569,7 +3569,7 @@ void PythonQtShell_QLocalSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3591,7 +3591,7 @@ bool PythonQtShell_QLocalSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3624,7 +3624,7 @@ bool PythonQtShell_QLocalSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3657,7 +3657,7 @@ qint64 PythonQtShell_QLocalSocket::writeData(const char* arg__1, qint64 arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3798,7 +3798,7 @@ void PythonQtShell_QNetworkAccessManager::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3820,7 +3820,7 @@ QNetworkReply* PythonQtShell_QNetworkAccessManager::createRequest(QNetworkAcces if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createRequest"); + static PyObject* name = PyUnicode_FromString("createRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkReply*" , "QNetworkAccessManager::Operation" , "const QNetworkRequest&" , "QIODevice*"}; @@ -3853,7 +3853,7 @@ void PythonQtShell_QNetworkAccessManager::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3875,7 +3875,7 @@ bool PythonQtShell_QNetworkAccessManager::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3908,7 +3908,7 @@ bool PythonQtShell_QNetworkAccessManager::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3941,7 +3941,7 @@ void PythonQtShell_QNetworkAccessManager::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4476,7 +4476,7 @@ void PythonQtShell_QNetworkConfigurationManager::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4498,7 +4498,7 @@ void PythonQtShell_QNetworkConfigurationManager::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4520,7 +4520,7 @@ bool PythonQtShell_QNetworkConfigurationManager::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4553,7 +4553,7 @@ bool PythonQtShell_QNetworkConfigurationManager::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4586,7 +4586,7 @@ void PythonQtShell_QNetworkConfigurationManager::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4783,7 +4783,7 @@ void PythonQtShell_QNetworkCookieJar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4805,7 +4805,7 @@ QList PythonQtShell_QNetworkCookieJar::cookiesForUrl(const QUr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cookiesForUrl"); + static PyObject* name = PyUnicode_FromString("cookiesForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QUrl&"}; @@ -4838,7 +4838,7 @@ void PythonQtShell_QNetworkCookieJar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4860,7 +4860,7 @@ bool PythonQtShell_QNetworkCookieJar::deleteCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteCookie"); + static PyObject* name = PyUnicode_FromString("deleteCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4893,7 +4893,7 @@ bool PythonQtShell_QNetworkCookieJar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4926,7 +4926,7 @@ bool PythonQtShell_QNetworkCookieJar::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4959,7 +4959,7 @@ bool PythonQtShell_QNetworkCookieJar::insertCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertCookie"); + static PyObject* name = PyUnicode_FromString("insertCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4992,7 +4992,7 @@ bool PythonQtShell_QNetworkCookieJar::setCookiesFromUrl(const QList 0) { - static PyObject* name = PyString_FromString("setCookiesFromUrl"); + static PyObject* name = PyUnicode_FromString("setCookiesFromUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QList&" , "const QUrl&"}; @@ -5025,7 +5025,7 @@ void PythonQtShell_QNetworkCookieJar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5047,7 +5047,7 @@ bool PythonQtShell_QNetworkCookieJar::updateCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCookie"); + static PyObject* name = PyUnicode_FromString("updateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -5080,7 +5080,7 @@ bool PythonQtShell_QNetworkCookieJar::validateCookie(const QNetworkCookie& coo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validateCookie"); + static PyObject* name = PyUnicode_FromString("validateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&" , "const QUrl&"}; @@ -5280,7 +5280,7 @@ qint64 PythonQtShell_QNetworkDiskCache::cacheSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5313,7 +5313,7 @@ void PythonQtShell_QNetworkDiskCache::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5335,7 +5335,7 @@ void PythonQtShell_QNetworkDiskCache::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5357,7 +5357,7 @@ void PythonQtShell_QNetworkDiskCache::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5379,7 +5379,7 @@ QIODevice* PythonQtShell_QNetworkDiskCache::data(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -5412,7 +5412,7 @@ bool PythonQtShell_QNetworkDiskCache::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5445,7 +5445,7 @@ bool PythonQtShell_QNetworkDiskCache::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5478,7 +5478,7 @@ qint64 PythonQtShell_QNetworkDiskCache::expire() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expire"); + static PyObject* name = PyUnicode_FromString("expire"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5511,7 +5511,7 @@ void PythonQtShell_QNetworkDiskCache::insert(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -5533,7 +5533,7 @@ QNetworkCacheMetaData PythonQtShell_QNetworkDiskCache::metaData(const QUrl& ur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -5566,7 +5566,7 @@ QIODevice* PythonQtShell_QNetworkDiskCache::prepare(const QNetworkCacheMetaData if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -5599,7 +5599,7 @@ bool PythonQtShell_QNetworkDiskCache::remove(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -5632,7 +5632,7 @@ void PythonQtShell_QNetworkDiskCache::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5654,7 +5654,7 @@ void PythonQtShell_QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -5972,7 +5972,7 @@ QList PythonQtShell_QNetworkProxyFactory::queryProxy(const QNet if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryProxy"); + static PyObject* name = PyUnicode_FromString("queryProxy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QNetworkProxyQuery&"}; diff --git a/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network1.cpp b/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network1.cpp index 2bf4e53f5..da8eea785 100644 --- a/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +++ b/generated_cpp_511/com_trolltech_qt_network/com_trolltech_qt_network1.cpp @@ -46,7 +46,7 @@ void PythonQtShell_QNetworkReply::abort() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -68,7 +68,7 @@ bool PythonQtShell_QNetworkReply::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -101,7 +101,7 @@ qint64 PythonQtShell_QNetworkReply::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -134,7 +134,7 @@ qint64 PythonQtShell_QNetworkReply::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -167,7 +167,7 @@ bool PythonQtShell_QNetworkReply::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -200,7 +200,7 @@ void PythonQtShell_QNetworkReply::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -222,7 +222,7 @@ void PythonQtShell_QNetworkReply::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -244,7 +244,7 @@ void PythonQtShell_QNetworkReply::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -266,7 +266,7 @@ bool PythonQtShell_QNetworkReply::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -299,7 +299,7 @@ bool PythonQtShell_QNetworkReply::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -332,7 +332,7 @@ void PythonQtShell_QNetworkReply::ignoreSslErrors() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignoreSslErrors"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrors"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -354,7 +354,7 @@ void PythonQtShell_QNetworkReply::ignoreSslErrorsImplementation(const QList 0) { - static PyObject* name = PyString_FromString("ignoreSslErrorsImplementation"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrorsImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -376,7 +376,7 @@ bool PythonQtShell_QNetworkReply::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -409,7 +409,7 @@ bool PythonQtShell_QNetworkReply::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -442,7 +442,7 @@ qint64 PythonQtShell_QNetworkReply::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -475,7 +475,7 @@ qint64 PythonQtShell_QNetworkReply::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -508,7 +508,7 @@ qint64 PythonQtShell_QNetworkReply::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -541,7 +541,7 @@ bool PythonQtShell_QNetworkReply::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -574,7 +574,7 @@ bool PythonQtShell_QNetworkReply::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -607,7 +607,7 @@ void PythonQtShell_QNetworkReply::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -629,7 +629,7 @@ void PythonQtShell_QNetworkReply::setSslConfigurationImplementation(const QSslCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("setSslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSslConfiguration&"}; @@ -651,7 +651,7 @@ qint64 PythonQtShell_QNetworkReply::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -684,7 +684,7 @@ void PythonQtShell_QNetworkReply::sslConfigurationImplementation(QSslConfigurati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("sslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSslConfiguration&"}; @@ -706,7 +706,7 @@ void PythonQtShell_QNetworkReply::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -728,7 +728,7 @@ bool PythonQtShell_QNetworkReply::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -761,7 +761,7 @@ bool PythonQtShell_QNetworkReply::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -794,7 +794,7 @@ qint64 PythonQtShell_QNetworkReply::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1085,7 +1085,7 @@ void PythonQtShell_QNetworkSession::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1107,7 +1107,7 @@ void PythonQtShell_QNetworkSession::connectNotify(const QMetaMethod& signal0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -1129,7 +1129,7 @@ void PythonQtShell_QNetworkSession::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1151,7 +1151,7 @@ void PythonQtShell_QNetworkSession::disconnectNotify(const QMetaMethod& signal0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -1173,7 +1173,7 @@ bool PythonQtShell_QNetworkSession::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1206,7 +1206,7 @@ bool PythonQtShell_QNetworkSession::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1239,7 +1239,7 @@ void PythonQtShell_QNetworkSession::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2192,7 +2192,7 @@ bool PythonQtShell_QSslSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2225,7 +2225,7 @@ qint64 PythonQtShell_QSslSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2258,7 +2258,7 @@ qint64 PythonQtShell_QSslSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2291,7 +2291,7 @@ bool PythonQtShell_QSslSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2324,7 +2324,7 @@ void PythonQtShell_QSslSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2346,7 +2346,7 @@ void PythonQtShell_QSslSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2368,7 +2368,7 @@ void PythonQtShell_QSslSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -2390,7 +2390,7 @@ void PythonQtShell_QSslSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2412,7 +2412,7 @@ void PythonQtShell_QSslSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2434,7 +2434,7 @@ bool PythonQtShell_QSslSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2467,7 +2467,7 @@ bool PythonQtShell_QSslSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2500,7 +2500,7 @@ bool PythonQtShell_QSslSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2533,7 +2533,7 @@ bool PythonQtShell_QSslSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2566,7 +2566,7 @@ qint64 PythonQtShell_QSslSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2599,7 +2599,7 @@ qint64 PythonQtShell_QSslSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2632,7 +2632,7 @@ qint64 PythonQtShell_QSslSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2665,7 +2665,7 @@ bool PythonQtShell_QSslSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2698,7 +2698,7 @@ void PythonQtShell_QSslSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2720,7 +2720,7 @@ bool PythonQtShell_QSslSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2753,7 +2753,7 @@ void PythonQtShell_QSslSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2775,7 +2775,7 @@ bool PythonQtShell_QSslSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -2808,7 +2808,7 @@ void PythonQtShell_QSslSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2830,7 +2830,7 @@ qint64 PythonQtShell_QSslSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2863,7 +2863,7 @@ qintptr PythonQtShell_QSslSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -2896,7 +2896,7 @@ QVariant PythonQtShell_QSslSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2929,7 +2929,7 @@ void PythonQtShell_QSslSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2951,7 +2951,7 @@ bool PythonQtShell_QSslSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2984,7 +2984,7 @@ bool PythonQtShell_QSslSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3017,7 +3017,7 @@ bool PythonQtShell_QSslSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3050,7 +3050,7 @@ bool PythonQtShell_QSslSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3083,7 +3083,7 @@ qint64 PythonQtShell_QSslSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3415,7 +3415,7 @@ void PythonQtShell_QTcpServer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3437,7 +3437,7 @@ void PythonQtShell_QTcpServer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3459,7 +3459,7 @@ bool PythonQtShell_QTcpServer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3492,7 +3492,7 @@ bool PythonQtShell_QTcpServer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3525,7 +3525,7 @@ bool PythonQtShell_QTcpServer::hasPendingConnections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3558,7 +3558,7 @@ void PythonQtShell_QTcpServer::incomingConnection(qintptr handle0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qintptr"}; @@ -3580,7 +3580,7 @@ QTcpSocket* PythonQtShell_QTcpServer::nextPendingConnection() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTcpSocket*"}; @@ -3613,7 +3613,7 @@ void PythonQtShell_QTcpServer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3758,7 +3758,7 @@ bool PythonQtShell_QTcpSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3791,7 +3791,7 @@ qint64 PythonQtShell_QTcpSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3824,7 +3824,7 @@ qint64 PythonQtShell_QTcpSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3857,7 +3857,7 @@ bool PythonQtShell_QTcpSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3890,7 +3890,7 @@ void PythonQtShell_QTcpSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3912,7 +3912,7 @@ void PythonQtShell_QTcpSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3934,7 +3934,7 @@ void PythonQtShell_QTcpSocket::connectToHost(const QHostAddress& address0, unsi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -3956,7 +3956,7 @@ void PythonQtShell_QTcpSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -3978,7 +3978,7 @@ void PythonQtShell_QTcpSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4000,7 +4000,7 @@ void PythonQtShell_QTcpSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4022,7 +4022,7 @@ bool PythonQtShell_QTcpSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4055,7 +4055,7 @@ bool PythonQtShell_QTcpSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4088,7 +4088,7 @@ bool PythonQtShell_QTcpSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4121,7 +4121,7 @@ bool PythonQtShell_QTcpSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4154,7 +4154,7 @@ qint64 PythonQtShell_QTcpSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4187,7 +4187,7 @@ qint64 PythonQtShell_QTcpSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4220,7 +4220,7 @@ qint64 PythonQtShell_QTcpSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4253,7 +4253,7 @@ bool PythonQtShell_QTcpSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4286,7 +4286,7 @@ void PythonQtShell_QTcpSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4308,7 +4308,7 @@ bool PythonQtShell_QTcpSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4341,7 +4341,7 @@ void PythonQtShell_QTcpSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -4363,7 +4363,7 @@ bool PythonQtShell_QTcpSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -4396,7 +4396,7 @@ void PythonQtShell_QTcpSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -4418,7 +4418,7 @@ qint64 PythonQtShell_QTcpSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4451,7 +4451,7 @@ qintptr PythonQtShell_QTcpSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -4484,7 +4484,7 @@ QVariant PythonQtShell_QTcpSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -4517,7 +4517,7 @@ void PythonQtShell_QTcpSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4539,7 +4539,7 @@ bool PythonQtShell_QTcpSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4572,7 +4572,7 @@ bool PythonQtShell_QTcpSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4605,7 +4605,7 @@ bool PythonQtShell_QTcpSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4638,7 +4638,7 @@ bool PythonQtShell_QTcpSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4671,7 +4671,7 @@ qint64 PythonQtShell_QTcpSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -4727,7 +4727,7 @@ bool PythonQtShell_QUdpSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4760,7 +4760,7 @@ qint64 PythonQtShell_QUdpSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4793,7 +4793,7 @@ qint64 PythonQtShell_QUdpSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4826,7 +4826,7 @@ bool PythonQtShell_QUdpSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4859,7 +4859,7 @@ void PythonQtShell_QUdpSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4881,7 +4881,7 @@ void PythonQtShell_QUdpSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4903,7 +4903,7 @@ void PythonQtShell_QUdpSocket::connectToHost(const QHostAddress& address0, unsi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -4925,7 +4925,7 @@ void PythonQtShell_QUdpSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -4947,7 +4947,7 @@ void PythonQtShell_QUdpSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4969,7 +4969,7 @@ void PythonQtShell_QUdpSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4991,7 +4991,7 @@ bool PythonQtShell_QUdpSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5024,7 +5024,7 @@ bool PythonQtShell_QUdpSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5057,7 +5057,7 @@ bool PythonQtShell_QUdpSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5090,7 +5090,7 @@ bool PythonQtShell_QUdpSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5123,7 +5123,7 @@ qint64 PythonQtShell_QUdpSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5156,7 +5156,7 @@ qint64 PythonQtShell_QUdpSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5189,7 +5189,7 @@ qint64 PythonQtShell_QUdpSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5222,7 +5222,7 @@ bool PythonQtShell_QUdpSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5255,7 +5255,7 @@ void PythonQtShell_QUdpSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5277,7 +5277,7 @@ bool PythonQtShell_QUdpSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5310,7 +5310,7 @@ void PythonQtShell_QUdpSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -5332,7 +5332,7 @@ bool PythonQtShell_QUdpSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -5365,7 +5365,7 @@ void PythonQtShell_QUdpSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -5387,7 +5387,7 @@ qint64 PythonQtShell_QUdpSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5420,7 +5420,7 @@ qintptr PythonQtShell_QUdpSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -5453,7 +5453,7 @@ QVariant PythonQtShell_QUdpSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -5486,7 +5486,7 @@ void PythonQtShell_QUdpSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5508,7 +5508,7 @@ bool PythonQtShell_QUdpSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5541,7 +5541,7 @@ bool PythonQtShell_QUdpSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5574,7 +5574,7 @@ bool PythonQtShell_QUdpSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5607,7 +5607,7 @@ bool PythonQtShell_QUdpSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5640,7 +5640,7 @@ qint64 PythonQtShell_QUdpSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_511/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp b/generated_cpp_511/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp index 8dd89095e..8d4cedfcf 100644 --- a/generated_cpp_511/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +++ b/generated_cpp_511/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp @@ -231,7 +231,7 @@ bool PythonQtShell_QGLContext::chooseContext(const QGLContext* shareContext0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("chooseContext"); + static PyObject* name = PyUnicode_FromString("chooseContext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -264,7 +264,7 @@ bool PythonQtShell_QGLContext::create(const QGLContext* shareContext0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -297,7 +297,7 @@ void PythonQtShell_QGLContext::doneCurrent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doneCurrent"); + static PyObject* name = PyUnicode_FromString("doneCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -319,7 +319,7 @@ void PythonQtShell_QGLContext::makeCurrent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("makeCurrent"); + static PyObject* name = PyUnicode_FromString("makeCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -341,7 +341,7 @@ void PythonQtShell_QGLContext::swapBuffers() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("swapBuffers"); + static PyObject* name = PyUnicode_FromString("swapBuffers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -863,7 +863,7 @@ int PythonQtShell_QGLFramebufferObject::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -896,7 +896,7 @@ void PythonQtShell_QGLFramebufferObject::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -918,7 +918,7 @@ int PythonQtShell_QGLFramebufferObject::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -951,7 +951,7 @@ QPaintEngine* PythonQtShell_QGLFramebufferObject::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -984,7 +984,7 @@ QPaintDevice* PythonQtShell_QGLFramebufferObject::redirected(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1017,7 +1017,7 @@ QPainter* PythonQtShell_QGLFramebufferObject::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1735,7 +1735,7 @@ int PythonQtShell_QGLPixelBuffer::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1768,7 +1768,7 @@ void PythonQtShell_QGLPixelBuffer::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1790,7 +1790,7 @@ int PythonQtShell_QGLPixelBuffer::metric(QPaintDevice::PaintDeviceMetric metri if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1823,7 +1823,7 @@ QPaintEngine* PythonQtShell_QGLPixelBuffer::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1856,7 +1856,7 @@ QPaintDevice* PythonQtShell_QGLPixelBuffer::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1889,7 +1889,7 @@ QPainter* PythonQtShell_QGLPixelBuffer::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2031,7 +2031,7 @@ void PythonQtShell_QGLShader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2053,7 +2053,7 @@ void PythonQtShell_QGLShader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2075,7 +2075,7 @@ bool PythonQtShell_QGLShader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2108,7 +2108,7 @@ bool PythonQtShell_QGLShader::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2141,7 +2141,7 @@ void PythonQtShell_QGLShader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2240,7 +2240,7 @@ void PythonQtShell_QGLShaderProgram::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2262,7 +2262,7 @@ void PythonQtShell_QGLShaderProgram::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2284,7 +2284,7 @@ bool PythonQtShell_QGLShaderProgram::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2317,7 +2317,7 @@ bool PythonQtShell_QGLShaderProgram::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2350,7 +2350,7 @@ bool PythonQtShell_QGLShaderProgram::link() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2383,7 +2383,7 @@ void PythonQtShell_QGLShaderProgram::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2987,7 +2987,7 @@ void PythonQtShell_QGLWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3009,7 +3009,7 @@ void PythonQtShell_QGLWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3031,7 +3031,7 @@ void PythonQtShell_QGLWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3053,7 +3053,7 @@ void PythonQtShell_QGLWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3075,7 +3075,7 @@ void PythonQtShell_QGLWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3097,7 +3097,7 @@ void PythonQtShell_QGLWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3119,7 +3119,7 @@ int PythonQtShell_QGLWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3152,7 +3152,7 @@ void PythonQtShell_QGLWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3174,7 +3174,7 @@ void PythonQtShell_QGLWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3196,7 +3196,7 @@ void PythonQtShell_QGLWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3218,7 +3218,7 @@ void PythonQtShell_QGLWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3240,7 +3240,7 @@ void PythonQtShell_QGLWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3262,7 +3262,7 @@ bool PythonQtShell_QGLWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3295,7 +3295,7 @@ bool PythonQtShell_QGLWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3328,7 +3328,7 @@ void PythonQtShell_QGLWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3350,7 +3350,7 @@ bool PythonQtShell_QGLWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3383,7 +3383,7 @@ void PythonQtShell_QGLWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3405,7 +3405,7 @@ void PythonQtShell_QGLWidget::glDraw() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("glDraw"); + static PyObject* name = PyUnicode_FromString("glDraw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3427,7 +3427,7 @@ void PythonQtShell_QGLWidget::glInit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("glInit"); + static PyObject* name = PyUnicode_FromString("glInit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3449,7 +3449,7 @@ bool PythonQtShell_QGLWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3482,7 +3482,7 @@ int PythonQtShell_QGLWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3515,7 +3515,7 @@ void PythonQtShell_QGLWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3537,7 +3537,7 @@ void PythonQtShell_QGLWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3559,7 +3559,7 @@ void PythonQtShell_QGLWidget::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3581,7 +3581,7 @@ void PythonQtShell_QGLWidget::initializeOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeOverlayGL"); + static PyObject* name = PyUnicode_FromString("initializeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3603,7 +3603,7 @@ void PythonQtShell_QGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3625,7 +3625,7 @@ QVariant PythonQtShell_QGLWidget::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3658,7 +3658,7 @@ void PythonQtShell_QGLWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3680,7 +3680,7 @@ void PythonQtShell_QGLWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3702,7 +3702,7 @@ void PythonQtShell_QGLWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3724,7 +3724,7 @@ int PythonQtShell_QGLWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3757,7 +3757,7 @@ QSize PythonQtShell_QGLWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3790,7 +3790,7 @@ void PythonQtShell_QGLWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3812,7 +3812,7 @@ void PythonQtShell_QGLWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3834,7 +3834,7 @@ void PythonQtShell_QGLWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3856,7 +3856,7 @@ void PythonQtShell_QGLWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3878,7 +3878,7 @@ void PythonQtShell_QGLWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3900,7 +3900,7 @@ bool PythonQtShell_QGLWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3933,7 +3933,7 @@ QPaintEngine* PythonQtShell_QGLWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3966,7 +3966,7 @@ void PythonQtShell_QGLWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3988,7 +3988,7 @@ void PythonQtShell_QGLWidget::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4010,7 +4010,7 @@ void PythonQtShell_QGLWidget::paintOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintOverlayGL"); + static PyObject* name = PyUnicode_FromString("paintOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4032,7 +4032,7 @@ QPaintDevice* PythonQtShell_QGLWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4065,7 +4065,7 @@ void PythonQtShell_QGLWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4087,7 +4087,7 @@ void PythonQtShell_QGLWidget::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4109,7 +4109,7 @@ void PythonQtShell_QGLWidget::resizeOverlayGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeOverlayGL"); + static PyObject* name = PyUnicode_FromString("resizeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4131,7 +4131,7 @@ void PythonQtShell_QGLWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4153,7 +4153,7 @@ QPainter* PythonQtShell_QGLWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4186,7 +4186,7 @@ void PythonQtShell_QGLWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4208,7 +4208,7 @@ QSize PythonQtShell_QGLWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4241,7 +4241,7 @@ void PythonQtShell_QGLWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4263,7 +4263,7 @@ void PythonQtShell_QGLWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4285,7 +4285,7 @@ void PythonQtShell_QGLWidget::updateGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGL"); + static PyObject* name = PyUnicode_FromString("updateGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4307,7 +4307,7 @@ void PythonQtShell_QGLWidget::updateOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateOverlayGL"); + static PyObject* name = PyUnicode_FromString("updateOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4329,7 +4329,7 @@ void PythonQtShell_QGLWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp b/generated_cpp_511/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp index d020a69a4..b8b024ea1 100644 --- a/generated_cpp_511/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp +++ b/generated_cpp_511/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp @@ -42,7 +42,7 @@ void PythonQtShell_QJSEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -64,7 +64,7 @@ void PythonQtShell_QJSEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -86,7 +86,7 @@ bool PythonQtShell_QJSEngine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -119,7 +119,7 @@ bool PythonQtShell_QJSEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -152,7 +152,7 @@ void PythonQtShell_QJSEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -475,7 +475,7 @@ QUrl PythonQtShell_QQmlAbstractUrlInterceptor::intercept(const QUrl& path0, QQ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("intercept"); + static PyObject* name = PyUnicode_FromString("intercept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "QQmlAbstractUrlInterceptor::DataType"}; @@ -523,7 +523,7 @@ void PythonQtShell_QQmlApplicationEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -545,7 +545,7 @@ void PythonQtShell_QQmlApplicationEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -567,7 +567,7 @@ bool PythonQtShell_QQmlApplicationEngine::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -600,7 +600,7 @@ bool PythonQtShell_QQmlApplicationEngine::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -633,7 +633,7 @@ void PythonQtShell_QQmlApplicationEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -696,7 +696,7 @@ QObject* PythonQtShell_QQmlComponent::beginCreate(QQmlContext* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginCreate"); + static PyObject* name = PyUnicode_FromString("beginCreate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "QQmlContext*"}; @@ -729,7 +729,7 @@ void PythonQtShell_QQmlComponent::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -751,7 +751,7 @@ void PythonQtShell_QQmlComponent::completeCreate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("completeCreate"); + static PyObject* name = PyUnicode_FromString("completeCreate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -773,7 +773,7 @@ QObject* PythonQtShell_QQmlComponent::create(QQmlContext* context0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "QQmlContext*"}; @@ -806,7 +806,7 @@ void PythonQtShell_QQmlComponent::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -828,7 +828,7 @@ bool PythonQtShell_QQmlComponent::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -861,7 +861,7 @@ bool PythonQtShell_QQmlComponent::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -894,7 +894,7 @@ void PythonQtShell_QQmlComponent::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1029,7 +1029,7 @@ void PythonQtShell_QQmlContext::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1051,7 +1051,7 @@ void PythonQtShell_QQmlContext::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1073,7 +1073,7 @@ bool PythonQtShell_QQmlContext::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1106,7 +1106,7 @@ bool PythonQtShell_QQmlContext::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1139,7 +1139,7 @@ void PythonQtShell_QQmlContext::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1294,7 +1294,7 @@ void PythonQtShell_QQmlEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1316,7 +1316,7 @@ void PythonQtShell_QQmlEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1338,7 +1338,7 @@ bool PythonQtShell_QQmlEngine::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1371,7 +1371,7 @@ bool PythonQtShell_QQmlEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1404,7 +1404,7 @@ void PythonQtShell_QQmlEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1685,7 +1685,7 @@ void PythonQtShell_QQmlExpression::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1707,7 +1707,7 @@ void PythonQtShell_QQmlExpression::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1729,7 +1729,7 @@ bool PythonQtShell_QQmlExpression::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1762,7 +1762,7 @@ bool PythonQtShell_QQmlExpression::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1795,7 +1795,7 @@ void PythonQtShell_QQmlExpression::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1923,7 +1923,7 @@ void PythonQtShell_QQmlExtensionInterface::initializeEngine(QQmlEngine* engine0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeEngine"); + static PyObject* name = PyUnicode_FromString("initializeEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlEngine*" , "const char*"}; @@ -1945,7 +1945,7 @@ void PythonQtShell_QQmlExtensionInterface::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; @@ -1982,7 +1982,7 @@ void PythonQtShell_QQmlExtensionPlugin::initializeEngine(QQmlEngine* engine0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeEngine"); + static PyObject* name = PyUnicode_FromString("initializeEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlEngine*" , "const char*"}; @@ -2004,7 +2004,7 @@ void PythonQtShell_QQmlExtensionPlugin::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; @@ -2198,7 +2198,7 @@ void PythonQtShell_QQmlFileSelector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2220,7 +2220,7 @@ void PythonQtShell_QQmlFileSelector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2242,7 +2242,7 @@ bool PythonQtShell_QQmlFileSelector::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2275,7 +2275,7 @@ bool PythonQtShell_QQmlFileSelector::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2308,7 +2308,7 @@ void PythonQtShell_QQmlFileSelector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2378,7 +2378,7 @@ void PythonQtShell_QQmlIncubationController::incubatingObjectCountChanged(int a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incubatingObjectCountChanged"); + static PyObject* name = PyUnicode_FromString("incubatingObjectCountChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2430,7 +2430,7 @@ void PythonQtShell_QQmlIncubator::setInitialState(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setInitialState"); + static PyObject* name = PyUnicode_FromString("setInitialState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -2452,7 +2452,7 @@ void PythonQtShell_QQmlIncubator::statusChanged(QQmlIncubator::Status arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("statusChanged"); + static PyObject* name = PyUnicode_FromString("statusChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlIncubator::Status"}; @@ -2734,7 +2734,7 @@ QNetworkAccessManager* PythonQtShell_QQmlNetworkAccessManagerFactory::create(QO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkAccessManager*" , "QObject*"}; @@ -2782,7 +2782,7 @@ void PythonQtShell_QQmlParserStatus::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2804,7 +2804,7 @@ void PythonQtShell_QQmlParserStatus::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3030,7 +3030,7 @@ void PythonQtShell_QQmlPropertyMap::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3052,7 +3052,7 @@ void PythonQtShell_QQmlPropertyMap::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3074,7 +3074,7 @@ bool PythonQtShell_QQmlPropertyMap::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3107,7 +3107,7 @@ bool PythonQtShell_QQmlPropertyMap::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3140,7 +3140,7 @@ void PythonQtShell_QQmlPropertyMap::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3162,7 +3162,7 @@ QVariant PythonQtShell_QQmlPropertyMap::updateValue(const QString& key0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateValue"); + static PyObject* name = PyUnicode_FromString("updateValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -3268,7 +3268,7 @@ void PythonQtShell_QQmlPropertyValueSource::setTarget(const QQmlProperty& arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTarget"); + static PyObject* name = PyUnicode_FromString("setTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QQmlProperty&"}; @@ -3360,7 +3360,7 @@ void PythonQtShell_QQmlTypesExtensionInterface::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; diff --git a/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp b/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp index 1780955b8..c4a3ae38c 100644 --- a/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp +++ b/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp @@ -81,7 +81,7 @@ QRectF PythonQtShell_QQuickFramebufferObject::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -114,7 +114,7 @@ bool PythonQtShell_QQuickFramebufferObject::childMouseEventFilter(QQuickItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -147,7 +147,7 @@ void PythonQtShell_QQuickFramebufferObject::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -169,7 +169,7 @@ QRectF PythonQtShell_QQuickFramebufferObject::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -202,7 +202,7 @@ void PythonQtShell_QQuickFramebufferObject::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -224,7 +224,7 @@ bool PythonQtShell_QQuickFramebufferObject::contains(const QPointF& point0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -257,7 +257,7 @@ QQuickFramebufferObject::Renderer* PythonQtShell_QQuickFramebufferObject::creat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createRenderer"); + static PyObject* name = PyUnicode_FromString("createRenderer"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QQuickFramebufferObject::Renderer*"}; @@ -290,7 +290,7 @@ void PythonQtShell_QQuickFramebufferObject::dragEnterEvent(QDragEnterEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -312,7 +312,7 @@ void PythonQtShell_QQuickFramebufferObject::dragLeaveEvent(QDragLeaveEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -334,7 +334,7 @@ void PythonQtShell_QQuickFramebufferObject::dragMoveEvent(QDragMoveEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -356,7 +356,7 @@ void PythonQtShell_QQuickFramebufferObject::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -378,7 +378,7 @@ bool PythonQtShell_QQuickFramebufferObject::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -411,7 +411,7 @@ void PythonQtShell_QQuickFramebufferObject::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -433,7 +433,7 @@ void PythonQtShell_QQuickFramebufferObject::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -455,7 +455,7 @@ void PythonQtShell_QQuickFramebufferObject::geometryChanged(const QRectF& newGe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -477,7 +477,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverEnterEvent(QHoverEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -499,7 +499,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverLeaveEvent(QHoverEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -521,7 +521,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -543,7 +543,7 @@ void PythonQtShell_QQuickFramebufferObject::inputMethodEvent(QInputMethodEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -565,7 +565,7 @@ QVariant PythonQtShell_QQuickFramebufferObject::inputMethodQuery(Qt::InputMetho if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -598,7 +598,7 @@ bool PythonQtShell_QQuickFramebufferObject::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -631,7 +631,7 @@ void PythonQtShell_QQuickFramebufferObject::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -653,7 +653,7 @@ void PythonQtShell_QQuickFramebufferObject::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -675,7 +675,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseDoubleClickEvent(QMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -697,7 +697,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -719,7 +719,7 @@ void PythonQtShell_QQuickFramebufferObject::mousePressEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -741,7 +741,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseReleaseEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -763,7 +763,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -785,7 +785,7 @@ void PythonQtShell_QQuickFramebufferObject::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -807,7 +807,7 @@ QSGTextureProvider* PythonQtShell_QQuickFramebufferObject::textureProvider() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -840,7 +840,7 @@ void PythonQtShell_QQuickFramebufferObject::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -862,7 +862,7 @@ void PythonQtShell_QQuickFramebufferObject::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -884,7 +884,7 @@ QSGNode* PythonQtShell_QQuickFramebufferObject::updatePaintNode(QSGNode* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -917,7 +917,7 @@ void PythonQtShell_QQuickFramebufferObject::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -939,7 +939,7 @@ void PythonQtShell_QQuickFramebufferObject::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -961,7 +961,7 @@ void PythonQtShell_QQuickFramebufferObject::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1031,7 +1031,7 @@ QOpenGLFramebufferObject* PythonQtShell_QQuickFramebufferObject__Renderer::crea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createFramebufferObject"); + static PyObject* name = PyUnicode_FromString("createFramebufferObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QOpenGLFramebufferObject*" , "const QSize&"}; @@ -1064,7 +1064,7 @@ void PythonQtShell_QQuickFramebufferObject__Renderer::render() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("render"); + static PyObject* name = PyUnicode_FromString("render"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1086,7 +1086,7 @@ void PythonQtShell_QQuickFramebufferObject__Renderer::synchronize(QQuickFramebuf if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("synchronize"); + static PyObject* name = PyUnicode_FromString("synchronize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQuickFramebufferObject*"}; @@ -1160,7 +1160,7 @@ QRectF PythonQtShell_QQuickItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1193,7 +1193,7 @@ bool PythonQtShell_QQuickItem::childMouseEventFilter(QQuickItem* arg__1, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -1226,7 +1226,7 @@ void PythonQtShell_QQuickItem::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1248,7 +1248,7 @@ QRectF PythonQtShell_QQuickItem::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1281,7 +1281,7 @@ void PythonQtShell_QQuickItem::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1303,7 +1303,7 @@ bool PythonQtShell_QQuickItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1336,7 +1336,7 @@ void PythonQtShell_QQuickItem::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1358,7 +1358,7 @@ void PythonQtShell_QQuickItem::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1380,7 +1380,7 @@ void PythonQtShell_QQuickItem::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1402,7 +1402,7 @@ void PythonQtShell_QQuickItem::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1424,7 +1424,7 @@ bool PythonQtShell_QQuickItem::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1457,7 +1457,7 @@ void PythonQtShell_QQuickItem::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1479,7 +1479,7 @@ void PythonQtShell_QQuickItem::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1501,7 +1501,7 @@ void PythonQtShell_QQuickItem::geometryChanged(const QRectF& newGeometry0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -1523,7 +1523,7 @@ void PythonQtShell_QQuickItem::hoverEnterEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1545,7 +1545,7 @@ void PythonQtShell_QQuickItem::hoverLeaveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1567,7 +1567,7 @@ void PythonQtShell_QQuickItem::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1589,7 +1589,7 @@ void PythonQtShell_QQuickItem::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1611,7 +1611,7 @@ QVariant PythonQtShell_QQuickItem::inputMethodQuery(Qt::InputMethodQuery query if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1644,7 +1644,7 @@ bool PythonQtShell_QQuickItem::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1677,7 +1677,7 @@ void PythonQtShell_QQuickItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1699,7 +1699,7 @@ void PythonQtShell_QQuickItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1721,7 +1721,7 @@ void PythonQtShell_QQuickItem::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1743,7 +1743,7 @@ void PythonQtShell_QQuickItem::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1765,7 +1765,7 @@ void PythonQtShell_QQuickItem::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1787,7 +1787,7 @@ void PythonQtShell_QQuickItem::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1809,7 +1809,7 @@ void PythonQtShell_QQuickItem::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1831,7 +1831,7 @@ void PythonQtShell_QQuickItem::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1853,7 +1853,7 @@ QSGTextureProvider* PythonQtShell_QQuickItem::textureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -1886,7 +1886,7 @@ void PythonQtShell_QQuickItem::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -1908,7 +1908,7 @@ void PythonQtShell_QQuickItem::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1930,7 +1930,7 @@ QSGNode* PythonQtShell_QQuickItem::updatePaintNode(QSGNode* arg__1, QQuickItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -1963,7 +1963,7 @@ void PythonQtShell_QQuickItem::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1985,7 +1985,7 @@ void PythonQtShell_QQuickItem::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2007,7 +2007,7 @@ void PythonQtShell_QQuickItem::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2788,7 +2788,7 @@ QRectF PythonQtShell_QQuickPaintedItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2821,7 +2821,7 @@ bool PythonQtShell_QQuickPaintedItem::childMouseEventFilter(QQuickItem* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -2854,7 +2854,7 @@ void PythonQtShell_QQuickPaintedItem::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2876,7 +2876,7 @@ QRectF PythonQtShell_QQuickPaintedItem::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2909,7 +2909,7 @@ void PythonQtShell_QQuickPaintedItem::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2931,7 +2931,7 @@ bool PythonQtShell_QQuickPaintedItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -2964,7 +2964,7 @@ void PythonQtShell_QQuickPaintedItem::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2986,7 +2986,7 @@ void PythonQtShell_QQuickPaintedItem::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3008,7 +3008,7 @@ void PythonQtShell_QQuickPaintedItem::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3030,7 +3030,7 @@ void PythonQtShell_QQuickPaintedItem::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3052,7 +3052,7 @@ bool PythonQtShell_QQuickPaintedItem::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3085,7 +3085,7 @@ void PythonQtShell_QQuickPaintedItem::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3107,7 +3107,7 @@ void PythonQtShell_QQuickPaintedItem::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3129,7 +3129,7 @@ void PythonQtShell_QQuickPaintedItem::geometryChanged(const QRectF& newGeometry if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -3151,7 +3151,7 @@ void PythonQtShell_QQuickPaintedItem::hoverEnterEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3173,7 +3173,7 @@ void PythonQtShell_QQuickPaintedItem::hoverLeaveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3195,7 +3195,7 @@ void PythonQtShell_QQuickPaintedItem::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QQuickPaintedItem::inputMethodEvent(QInputMethodEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3239,7 +3239,7 @@ QVariant PythonQtShell_QQuickPaintedItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3272,7 +3272,7 @@ bool PythonQtShell_QQuickPaintedItem::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3305,7 +3305,7 @@ void PythonQtShell_QQuickPaintedItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3327,7 +3327,7 @@ void PythonQtShell_QQuickPaintedItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3349,7 +3349,7 @@ void PythonQtShell_QQuickPaintedItem::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3371,7 +3371,7 @@ void PythonQtShell_QQuickPaintedItem::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3393,7 +3393,7 @@ void PythonQtShell_QQuickPaintedItem::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3415,7 +3415,7 @@ void PythonQtShell_QQuickPaintedItem::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3437,7 +3437,7 @@ void PythonQtShell_QQuickPaintedItem::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3459,7 +3459,7 @@ void PythonQtShell_QQuickPaintedItem::paint(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3481,7 +3481,7 @@ void PythonQtShell_QQuickPaintedItem::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3503,7 +3503,7 @@ QSGTextureProvider* PythonQtShell_QQuickPaintedItem::textureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -3536,7 +3536,7 @@ void PythonQtShell_QQuickPaintedItem::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -3558,7 +3558,7 @@ void PythonQtShell_QQuickPaintedItem::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3580,7 +3580,7 @@ QSGNode* PythonQtShell_QQuickPaintedItem::updatePaintNode(QSGNode* arg__1, QQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -3613,7 +3613,7 @@ void PythonQtShell_QQuickPaintedItem::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3635,7 +3635,7 @@ void PythonQtShell_QQuickPaintedItem::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3657,7 +3657,7 @@ void PythonQtShell_QQuickPaintedItem::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3807,7 +3807,7 @@ void PythonQtShell_QQuickRenderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3829,7 +3829,7 @@ void PythonQtShell_QQuickRenderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3851,7 +3851,7 @@ bool PythonQtShell_QQuickRenderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3884,7 +3884,7 @@ bool PythonQtShell_QQuickRenderControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3917,7 +3917,7 @@ QWindow* PythonQtShell_QQuickRenderControl::renderWindow(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("renderWindow"); + static PyObject* name = PyUnicode_FromString("renderWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWindow*" , "QPoint*"}; @@ -3950,7 +3950,7 @@ void PythonQtShell_QQuickRenderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4040,7 +4040,7 @@ void PythonQtShell_QQuickTextDocument::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4062,7 +4062,7 @@ void PythonQtShell_QQuickTextDocument::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4084,7 +4084,7 @@ bool PythonQtShell_QQuickTextDocument::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4117,7 +4117,7 @@ bool PythonQtShell_QQuickTextDocument::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4150,7 +4150,7 @@ void PythonQtShell_QQuickTextDocument::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4200,7 +4200,7 @@ void PythonQtShell_QQuickTransform::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -4222,7 +4222,7 @@ void PythonQtShell_QQuickTransform::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4244,7 +4244,7 @@ void PythonQtShell_QQuickTransform::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4266,7 +4266,7 @@ bool PythonQtShell_QQuickTransform::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4299,7 +4299,7 @@ bool PythonQtShell_QQuickTransform::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4332,7 +4332,7 @@ void PythonQtShell_QQuickTransform::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4392,7 +4392,7 @@ void PythonQtShell_QQuickView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4414,7 +4414,7 @@ void PythonQtShell_QQuickView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4436,7 +4436,7 @@ bool PythonQtShell_QQuickView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4469,7 +4469,7 @@ bool PythonQtShell_QQuickView::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4502,7 +4502,7 @@ void PythonQtShell_QQuickView::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -4524,7 +4524,7 @@ void PythonQtShell_QQuickView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4546,7 +4546,7 @@ QObject* PythonQtShell_QQuickView::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -4579,7 +4579,7 @@ void PythonQtShell_QQuickView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4601,7 +4601,7 @@ QSurfaceFormat PythonQtShell_QQuickView::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -4634,7 +4634,7 @@ void PythonQtShell_QQuickView::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4656,7 +4656,7 @@ void PythonQtShell_QQuickView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4678,7 +4678,7 @@ void PythonQtShell_QQuickView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4700,7 +4700,7 @@ void PythonQtShell_QQuickView::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4722,7 +4722,7 @@ void PythonQtShell_QQuickView::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4744,7 +4744,7 @@ void PythonQtShell_QQuickView::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4766,7 +4766,7 @@ void PythonQtShell_QQuickView::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4788,7 +4788,7 @@ void PythonQtShell_QQuickView::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4810,7 +4810,7 @@ bool PythonQtShell_QQuickView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4843,7 +4843,7 @@ void PythonQtShell_QQuickView::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4865,7 +4865,7 @@ void PythonQtShell_QQuickView::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4887,7 +4887,7 @@ QSize PythonQtShell_QQuickView::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4920,7 +4920,7 @@ QSurface::SurfaceType PythonQtShell_QQuickView::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -4953,7 +4953,7 @@ void PythonQtShell_QQuickView::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4975,7 +4975,7 @@ void PythonQtShell_QQuickView::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4997,7 +4997,7 @@ void PythonQtShell_QQuickView::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -5019,7 +5019,7 @@ void PythonQtShell_QQuickView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5126,7 +5126,7 @@ void PythonQtShell_QQuickWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5148,7 +5148,7 @@ void PythonQtShell_QQuickWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5170,7 +5170,7 @@ void PythonQtShell_QQuickWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5192,7 +5192,7 @@ void PythonQtShell_QQuickWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5214,7 +5214,7 @@ void PythonQtShell_QQuickWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5236,7 +5236,7 @@ void PythonQtShell_QQuickWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5258,7 +5258,7 @@ int PythonQtShell_QQuickWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5291,7 +5291,7 @@ void PythonQtShell_QQuickWidget::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5313,7 +5313,7 @@ void PythonQtShell_QQuickWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5335,7 +5335,7 @@ void PythonQtShell_QQuickWidget::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5357,7 +5357,7 @@ void PythonQtShell_QQuickWidget::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5379,7 +5379,7 @@ void PythonQtShell_QQuickWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5401,7 +5401,7 @@ bool PythonQtShell_QQuickWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5434,7 +5434,7 @@ bool PythonQtShell_QQuickWidget::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5467,7 +5467,7 @@ void PythonQtShell_QQuickWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5489,7 +5489,7 @@ bool PythonQtShell_QQuickWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5522,7 +5522,7 @@ void PythonQtShell_QQuickWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5544,7 +5544,7 @@ bool PythonQtShell_QQuickWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5577,7 +5577,7 @@ int PythonQtShell_QQuickWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5610,7 +5610,7 @@ void PythonQtShell_QQuickWidget::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5632,7 +5632,7 @@ void PythonQtShell_QQuickWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5654,7 +5654,7 @@ void PythonQtShell_QQuickWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5676,7 +5676,7 @@ QVariant PythonQtShell_QQuickWidget::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5709,7 +5709,7 @@ void PythonQtShell_QQuickWidget::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5731,7 +5731,7 @@ void PythonQtShell_QQuickWidget::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5753,7 +5753,7 @@ void PythonQtShell_QQuickWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5775,7 +5775,7 @@ int PythonQtShell_QQuickWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5808,7 +5808,7 @@ QSize PythonQtShell_QQuickWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5841,7 +5841,7 @@ void PythonQtShell_QQuickWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5863,7 +5863,7 @@ void PythonQtShell_QQuickWidget::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5885,7 +5885,7 @@ void PythonQtShell_QQuickWidget::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5907,7 +5907,7 @@ void PythonQtShell_QQuickWidget::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5929,7 +5929,7 @@ void PythonQtShell_QQuickWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5951,7 +5951,7 @@ bool PythonQtShell_QQuickWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5984,7 +5984,7 @@ QPaintEngine* PythonQtShell_QQuickWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QQuickWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6039,7 +6039,7 @@ QPaintDevice* PythonQtShell_QQuickWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QQuickWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6094,7 +6094,7 @@ void PythonQtShell_QQuickWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6116,7 +6116,7 @@ QPainter* PythonQtShell_QQuickWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6149,7 +6149,7 @@ void PythonQtShell_QQuickWidget::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6171,7 +6171,7 @@ QSize PythonQtShell_QQuickWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6204,7 +6204,7 @@ void PythonQtShell_QQuickWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6226,7 +6226,7 @@ void PythonQtShell_QQuickWidget::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6248,7 +6248,7 @@ void PythonQtShell_QQuickWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6376,7 +6376,7 @@ void PythonQtShell_QQuickWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6398,7 +6398,7 @@ void PythonQtShell_QQuickWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6420,7 +6420,7 @@ bool PythonQtShell_QQuickWindow::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6453,7 +6453,7 @@ bool PythonQtShell_QQuickWindow::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6486,7 +6486,7 @@ void PythonQtShell_QQuickWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -6508,7 +6508,7 @@ void PythonQtShell_QQuickWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6530,7 +6530,7 @@ QObject* PythonQtShell_QQuickWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -6563,7 +6563,7 @@ void PythonQtShell_QQuickWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6585,7 +6585,7 @@ QSurfaceFormat PythonQtShell_QQuickWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -6618,7 +6618,7 @@ void PythonQtShell_QQuickWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6640,7 +6640,7 @@ void PythonQtShell_QQuickWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6662,7 +6662,7 @@ void PythonQtShell_QQuickWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6684,7 +6684,7 @@ void PythonQtShell_QQuickWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6706,7 +6706,7 @@ void PythonQtShell_QQuickWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6728,7 +6728,7 @@ void PythonQtShell_QQuickWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6750,7 +6750,7 @@ void PythonQtShell_QQuickWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6772,7 +6772,7 @@ void PythonQtShell_QQuickWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6794,7 +6794,7 @@ bool PythonQtShell_QQuickWindow::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6827,7 +6827,7 @@ void PythonQtShell_QQuickWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6849,7 +6849,7 @@ void PythonQtShell_QQuickWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6871,7 +6871,7 @@ QSize PythonQtShell_QQuickWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6904,7 +6904,7 @@ QSurface::SurfaceType PythonQtShell_QQuickWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -6937,7 +6937,7 @@ void PythonQtShell_QQuickWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6959,7 +6959,7 @@ void PythonQtShell_QQuickWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6981,7 +6981,7 @@ void PythonQtShell_QQuickWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -7003,7 +7003,7 @@ void PythonQtShell_QQuickWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7229,7 +7229,7 @@ void PythonQtShell_QSGAbstractRenderer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7251,7 +7251,7 @@ void PythonQtShell_QSGAbstractRenderer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7273,7 +7273,7 @@ bool PythonQtShell_QSGAbstractRenderer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7306,7 +7306,7 @@ bool PythonQtShell_QSGAbstractRenderer::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7339,7 +7339,7 @@ void PythonQtShell_QSGAbstractRenderer::nodeChanged(QSGNode* node0, QSGNode::Di if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodeChanged"); + static PyObject* name = PyUnicode_FromString("nodeChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*" , "QSGNode::DirtyState"}; @@ -7361,7 +7361,7 @@ void PythonQtShell_QSGAbstractRenderer::renderScene(uint fboId0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("renderScene"); + static PyObject* name = PyUnicode_FromString("renderScene"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "uint"}; @@ -7383,7 +7383,7 @@ void PythonQtShell_QSGAbstractRenderer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7503,7 +7503,7 @@ bool PythonQtShell_QSGBasicGeometryNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7536,7 +7536,7 @@ void PythonQtShell_QSGBasicGeometryNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7603,7 +7603,7 @@ bool PythonQtShell_QSGClipNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7636,7 +7636,7 @@ void PythonQtShell_QSGClipNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7688,7 +7688,7 @@ void PythonQtShell_QSGDynamicTexture::bind() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7710,7 +7710,7 @@ void PythonQtShell_QSGDynamicTexture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7732,7 +7732,7 @@ void PythonQtShell_QSGDynamicTexture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7754,7 +7754,7 @@ bool PythonQtShell_QSGDynamicTexture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7787,7 +7787,7 @@ bool PythonQtShell_QSGDynamicTexture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7820,7 +7820,7 @@ bool PythonQtShell_QSGDynamicTexture::hasAlphaChannel() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasAlphaChannel"); + static PyObject* name = PyUnicode_FromString("hasAlphaChannel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7853,7 +7853,7 @@ bool PythonQtShell_QSGDynamicTexture::hasMipmaps() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasMipmaps"); + static PyObject* name = PyUnicode_FromString("hasMipmaps"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7886,7 +7886,7 @@ bool PythonQtShell_QSGDynamicTexture::isAtlasTexture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAtlasTexture"); + static PyObject* name = PyUnicode_FromString("isAtlasTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7919,7 +7919,7 @@ QRectF PythonQtShell_QSGDynamicTexture::normalizedTextureSubRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("normalizedTextureSubRect"); + static PyObject* name = PyUnicode_FromString("normalizedTextureSubRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -7952,7 +7952,7 @@ QSGTexture* PythonQtShell_QSGDynamicTexture::removedFromAtlas() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removedFromAtlas"); + static PyObject* name = PyUnicode_FromString("removedFromAtlas"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -7985,7 +7985,7 @@ int PythonQtShell_QSGDynamicTexture::textureId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureId"); + static PyObject* name = PyUnicode_FromString("textureId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8018,7 +8018,7 @@ QSize PythonQtShell_QSGDynamicTexture::textureSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureSize"); + static PyObject* name = PyUnicode_FromString("textureSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8051,7 +8051,7 @@ void PythonQtShell_QSGDynamicTexture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8073,7 +8073,7 @@ bool PythonQtShell_QSGDynamicTexture::updateTexture() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateTexture"); + static PyObject* name = PyUnicode_FromString("updateTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8134,7 +8134,7 @@ void PythonQtShell_QSGEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8156,7 +8156,7 @@ void PythonQtShell_QSGEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8178,7 +8178,7 @@ bool PythonQtShell_QSGEngine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8211,7 +8211,7 @@ bool PythonQtShell_QSGEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8244,7 +8244,7 @@ void PythonQtShell_QSGEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8319,7 +8319,7 @@ QSGMaterialType* PythonQtShell_QSGFlatColorMaterial::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGMaterialType*"}; @@ -8577,7 +8577,7 @@ bool PythonQtShell_QSGGeometryNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8610,7 +8610,7 @@ void PythonQtShell_QSGGeometryNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8826,7 +8826,7 @@ bool PythonQtShell_QSGNinePatchNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8859,7 +8859,7 @@ void PythonQtShell_QSGNinePatchNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8881,7 +8881,7 @@ void PythonQtShell_QSGNinePatchNode::setBounds(const QRectF& bounds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBounds"); + static PyObject* name = PyUnicode_FromString("setBounds"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -8903,7 +8903,7 @@ void PythonQtShell_QSGNinePatchNode::setDevicePixelRatio(qreal ratio0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDevicePixelRatio"); + static PyObject* name = PyUnicode_FromString("setDevicePixelRatio"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8925,7 +8925,7 @@ void PythonQtShell_QSGNinePatchNode::setPadding(qreal left0, qreal top1, qreal if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPadding"); + static PyObject* name = PyUnicode_FromString("setPadding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal" , "qreal" , "qreal" , "qreal"}; @@ -8947,7 +8947,7 @@ void PythonQtShell_QSGNinePatchNode::setTexture(QSGTexture* texture0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTexture"); + static PyObject* name = PyUnicode_FromString("setTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTexture*"}; @@ -8969,7 +8969,7 @@ void PythonQtShell_QSGNinePatchNode::update() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("update"); + static PyObject* name = PyUnicode_FromString("update"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9031,7 +9031,7 @@ bool PythonQtShell_QSGNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9064,7 +9064,7 @@ void PythonQtShell_QSGNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; diff --git a/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp b/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp index 8023141cc..991939e88 100644 --- a/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp +++ b/generated_cpp_511/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp @@ -28,7 +28,7 @@ void PythonQtShell_QSGNodeVisitor::enterClipNode(QSGClipNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterClipNode"); + static PyObject* name = PyUnicode_FromString("enterClipNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGClipNode*"}; @@ -50,7 +50,7 @@ void PythonQtShell_QSGNodeVisitor::enterGeometryNode(QSGGeometryNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterGeometryNode"); + static PyObject* name = PyUnicode_FromString("enterGeometryNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGGeometryNode*"}; @@ -72,7 +72,7 @@ void PythonQtShell_QSGNodeVisitor::enterOpacityNode(QSGOpacityNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterOpacityNode"); + static PyObject* name = PyUnicode_FromString("enterOpacityNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGOpacityNode*"}; @@ -94,7 +94,7 @@ void PythonQtShell_QSGNodeVisitor::enterTransformNode(QSGTransformNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterTransformNode"); + static PyObject* name = PyUnicode_FromString("enterTransformNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTransformNode*"}; @@ -116,7 +116,7 @@ void PythonQtShell_QSGNodeVisitor::leaveClipNode(QSGClipNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveClipNode"); + static PyObject* name = PyUnicode_FromString("leaveClipNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGClipNode*"}; @@ -138,7 +138,7 @@ void PythonQtShell_QSGNodeVisitor::leaveGeometryNode(QSGGeometryNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveGeometryNode"); + static PyObject* name = PyUnicode_FromString("leaveGeometryNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGGeometryNode*"}; @@ -160,7 +160,7 @@ void PythonQtShell_QSGNodeVisitor::leaveOpacityNode(QSGOpacityNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveOpacityNode"); + static PyObject* name = PyUnicode_FromString("leaveOpacityNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGOpacityNode*"}; @@ -182,7 +182,7 @@ void PythonQtShell_QSGNodeVisitor::leaveTransformNode(QSGTransformNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveTransformNode"); + static PyObject* name = PyUnicode_FromString("leaveTransformNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTransformNode*"}; @@ -204,7 +204,7 @@ void PythonQtShell_QSGNodeVisitor::visitChildren(QSGNode* n0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visitChildren"); + static PyObject* name = PyUnicode_FromString("visitChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*"}; @@ -226,7 +226,7 @@ void PythonQtShell_QSGNodeVisitor::visitNode(QSGNode* n0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visitNode"); + static PyObject* name = PyUnicode_FromString("visitNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*"}; @@ -308,7 +308,7 @@ bool PythonQtShell_QSGOpacityNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -341,7 +341,7 @@ void PythonQtShell_QSGOpacityNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -400,7 +400,7 @@ QColor PythonQtShell_QSGRectangleNode::color() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("color"); + static PyObject* name = PyUnicode_FromString("color"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QColor"}; @@ -433,7 +433,7 @@ bool PythonQtShell_QSGRectangleNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -466,7 +466,7 @@ void PythonQtShell_QSGRectangleNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -488,7 +488,7 @@ QRectF PythonQtShell_QSGRectangleNode::rect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rect"); + static PyObject* name = PyUnicode_FromString("rect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -521,7 +521,7 @@ void PythonQtShell_QSGRectangleNode::setColor(const QColor& color0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setColor"); + static PyObject* name = PyUnicode_FromString("setColor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QColor&"}; @@ -543,7 +543,7 @@ void PythonQtShell_QSGRectangleNode::setRect(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRect"); + static PyObject* name = PyUnicode_FromString("setRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -600,7 +600,7 @@ bool PythonQtShell_QSGRenderNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -633,7 +633,7 @@ void PythonQtShell_QSGRenderNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -655,7 +655,7 @@ QRectF PythonQtShell_QSGRenderNode::rect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rect"); + static PyObject* name = PyUnicode_FromString("rect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -688,7 +688,7 @@ void PythonQtShell_QSGRenderNode::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -710,7 +710,7 @@ void PythonQtShell_QSGRenderNode::render(const QSGRenderNode::RenderState* stat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("render"); + static PyObject* name = PyUnicode_FromString("render"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSGRenderNode::RenderState*"}; @@ -772,7 +772,7 @@ const QRegion* PythonQtShell_QSGRenderNode__RenderState::clipRegion() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRegion"); + static PyObject* name = PyUnicode_FromString("clipRegion"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QRegion*"}; @@ -805,7 +805,7 @@ void* PythonQtShell_QSGRenderNode__RenderState::get(const char* state0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("get"); + static PyObject* name = PyUnicode_FromString("get"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const char*"}; @@ -838,7 +838,7 @@ const QMatrix4x4* PythonQtShell_QSGRenderNode__RenderState::projectionMatrix() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("projectionMatrix"); + static PyObject* name = PyUnicode_FromString("projectionMatrix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QMatrix4x4*"}; @@ -871,7 +871,7 @@ bool PythonQtShell_QSGRenderNode__RenderState::scissorEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scissorEnabled"); + static PyObject* name = PyUnicode_FromString("scissorEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -904,7 +904,7 @@ QRect PythonQtShell_QSGRenderNode__RenderState::scissorRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scissorRect"); + static PyObject* name = PyUnicode_FromString("scissorRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -937,7 +937,7 @@ bool PythonQtShell_QSGRenderNode__RenderState::stencilEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stencilEnabled"); + static PyObject* name = PyUnicode_FromString("stencilEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -970,7 +970,7 @@ int PythonQtShell_QSGRenderNode__RenderState::stencilValue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stencilValue"); + static PyObject* name = PyUnicode_FromString("stencilValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1048,7 +1048,7 @@ bool PythonQtShell_QSGRootNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1081,7 +1081,7 @@ void PythonQtShell_QSGRootNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1120,7 +1120,7 @@ void PythonQtShell_QSGTexture::bind() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1142,7 +1142,7 @@ void PythonQtShell_QSGTexture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1164,7 +1164,7 @@ void PythonQtShell_QSGTexture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1186,7 +1186,7 @@ bool PythonQtShell_QSGTexture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1219,7 +1219,7 @@ bool PythonQtShell_QSGTexture::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1252,7 +1252,7 @@ bool PythonQtShell_QSGTexture::hasAlphaChannel() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasAlphaChannel"); + static PyObject* name = PyUnicode_FromString("hasAlphaChannel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1285,7 +1285,7 @@ bool PythonQtShell_QSGTexture::hasMipmaps() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasMipmaps"); + static PyObject* name = PyUnicode_FromString("hasMipmaps"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1318,7 +1318,7 @@ bool PythonQtShell_QSGTexture::isAtlasTexture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAtlasTexture"); + static PyObject* name = PyUnicode_FromString("isAtlasTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1351,7 +1351,7 @@ QRectF PythonQtShell_QSGTexture::normalizedTextureSubRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("normalizedTextureSubRect"); + static PyObject* name = PyUnicode_FromString("normalizedTextureSubRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1384,7 +1384,7 @@ QSGTexture* PythonQtShell_QSGTexture::removedFromAtlas() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removedFromAtlas"); + static PyObject* name = PyUnicode_FromString("removedFromAtlas"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -1417,7 +1417,7 @@ int PythonQtShell_QSGTexture::textureId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureId"); + static PyObject* name = PyUnicode_FromString("textureId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1450,7 +1450,7 @@ QSize PythonQtShell_QSGTexture::textureSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureSize"); + static PyObject* name = PyUnicode_FromString("textureSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1483,7 +1483,7 @@ void PythonQtShell_QSGTexture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1628,7 +1628,7 @@ QSGMaterialType* PythonQtShell_QSGTextureMaterial::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGMaterialType*"}; @@ -1676,7 +1676,7 @@ void PythonQtShell_QSGTextureProvider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1698,7 +1698,7 @@ void PythonQtShell_QSGTextureProvider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1720,7 +1720,7 @@ bool PythonQtShell_QSGTextureProvider::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1753,7 +1753,7 @@ bool PythonQtShell_QSGTextureProvider::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1786,7 +1786,7 @@ QSGTexture* PythonQtShell_QSGTextureProvider::texture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("texture"); + static PyObject* name = PyUnicode_FromString("texture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -1819,7 +1819,7 @@ void PythonQtShell_QSGTextureProvider::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1869,7 +1869,7 @@ bool PythonQtShell_QSGTransformNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1902,7 +1902,7 @@ void PythonQtShell_QSGTransformNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; diff --git a/generated_cpp_511/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp b/generated_cpp_511/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp index 3274af168..980c87a65 100644 --- a/generated_cpp_511/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +++ b/generated_cpp_511/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp @@ -278,7 +278,7 @@ bool PythonQtShell_QSqlDriver::beginTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginTransaction"); + static PyObject* name = PyUnicode_FromString("beginTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -311,7 +311,7 @@ bool PythonQtShell_QSqlDriver::cancelQuery() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelQuery"); + static PyObject* name = PyUnicode_FromString("cancelQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -344,7 +344,7 @@ void PythonQtShell_QSqlDriver::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -366,7 +366,7 @@ void PythonQtShell_QSqlDriver::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -388,7 +388,7 @@ bool PythonQtShell_QSqlDriver::commitTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitTransaction"); + static PyObject* name = PyUnicode_FromString("commitTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -421,7 +421,7 @@ QSqlResult* PythonQtShell_QSqlDriver::createResult() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createResult"); + static PyObject* name = PyUnicode_FromString("createResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlResult*"}; @@ -454,7 +454,7 @@ void PythonQtShell_QSqlDriver::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -476,7 +476,7 @@ QString PythonQtShell_QSqlDriver::escapeIdentifier(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("escapeIdentifier"); + static PyObject* name = PyUnicode_FromString("escapeIdentifier"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -509,7 +509,7 @@ bool PythonQtShell_QSqlDriver::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -542,7 +542,7 @@ bool PythonQtShell_QSqlDriver::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -575,7 +575,7 @@ QString PythonQtShell_QSqlDriver::formatValue(const QSqlField& field0, bool t if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("formatValue"); + static PyObject* name = PyUnicode_FromString("formatValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QSqlField&" , "bool"}; @@ -608,7 +608,7 @@ QVariant PythonQtShell_QSqlDriver::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -641,7 +641,7 @@ bool PythonQtShell_QSqlDriver::hasFeature(QSqlDriver::DriverFeature f0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QSqlDriver::DriverFeature"}; @@ -674,7 +674,7 @@ bool PythonQtShell_QSqlDriver::isIdentifierEscaped(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIdentifierEscaped"); + static PyObject* name = PyUnicode_FromString("isIdentifierEscaped"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -707,7 +707,7 @@ bool PythonQtShell_QSqlDriver::isOpen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isOpen"); + static PyObject* name = PyUnicode_FromString("isOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -740,7 +740,7 @@ bool PythonQtShell_QSqlDriver::open(const QString& db0, const QString& user1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "int" , "const QString&"}; @@ -773,7 +773,7 @@ QSqlIndex PythonQtShell_QSqlDriver::primaryIndex(const QString& tableName0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("primaryIndex"); + static PyObject* name = PyUnicode_FromString("primaryIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlIndex" , "const QString&"}; @@ -806,7 +806,7 @@ QSqlRecord PythonQtShell_QSqlDriver::record(const QString& tableName0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord" , "const QString&"}; @@ -839,7 +839,7 @@ bool PythonQtShell_QSqlDriver::rollbackTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rollbackTransaction"); + static PyObject* name = PyUnicode_FromString("rollbackTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -872,7 +872,7 @@ void PythonQtShell_QSqlDriver::setLastError(const QSqlError& e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -894,7 +894,7 @@ void PythonQtShell_QSqlDriver::setOpen(bool o0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOpen"); + static PyObject* name = PyUnicode_FromString("setOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -916,7 +916,7 @@ void PythonQtShell_QSqlDriver::setOpenError(bool e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOpenError"); + static PyObject* name = PyUnicode_FromString("setOpenError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -938,7 +938,7 @@ QString PythonQtShell_QSqlDriver::sqlStatement(QSqlDriver::StatementType type0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sqlStatement"); + static PyObject* name = PyUnicode_FromString("sqlStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QSqlDriver::StatementType" , "const QString&" , "const QSqlRecord&" , "bool"}; @@ -971,7 +971,7 @@ QString PythonQtShell_QSqlDriver::stripDelimiters(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stripDelimiters"); + static PyObject* name = PyUnicode_FromString("stripDelimiters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -1004,7 +1004,7 @@ bool PythonQtShell_QSqlDriver::subscribeToNotification(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subscribeToNotification"); + static PyObject* name = PyUnicode_FromString("subscribeToNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1037,7 +1037,7 @@ QStringList PythonQtShell_QSqlDriver::subscribedToNotifications() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subscribedToNotifications"); + static PyObject* name = PyUnicode_FromString("subscribedToNotifications"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1070,7 +1070,7 @@ QStringList PythonQtShell_QSqlDriver::tables(QSql::TableType tableType0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tables"); + static PyObject* name = PyUnicode_FromString("tables"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QSql::TableType"}; @@ -1103,7 +1103,7 @@ void PythonQtShell_QSqlDriver::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1125,7 +1125,7 @@ bool PythonQtShell_QSqlDriver::unsubscribeFromNotification(const QString& name if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unsubscribeFromNotification"); + static PyObject* name = PyUnicode_FromString("unsubscribeFromNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1321,7 +1321,7 @@ QSqlDriver* PythonQtShell_QSqlDriverCreatorBase::createObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlDriver*"}; @@ -1894,7 +1894,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::buddy(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1927,7 +1927,7 @@ bool PythonQtShell_QSqlQueryModel::canDropMimeData(const QMimeData* data0, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1960,7 +1960,7 @@ bool PythonQtShell_QSqlQueryModel::canFetchMore(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1993,7 +1993,7 @@ void PythonQtShell_QSqlQueryModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2015,7 +2015,7 @@ void PythonQtShell_QSqlQueryModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2037,7 +2037,7 @@ int PythonQtShell_QSqlQueryModel::columnCount(const QModelIndex& parent0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2070,7 +2070,7 @@ void PythonQtShell_QSqlQueryModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2092,7 +2092,7 @@ QVariant PythonQtShell_QSqlQueryModel::data(const QModelIndex& item0, int rol if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2125,7 +2125,7 @@ bool PythonQtShell_QSqlQueryModel::dropMimeData(const QMimeData* data0, Qt::Dr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2158,7 +2158,7 @@ bool PythonQtShell_QSqlQueryModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2191,7 +2191,7 @@ bool PythonQtShell_QSqlQueryModel::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2224,7 +2224,7 @@ void PythonQtShell_QSqlQueryModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2246,7 +2246,7 @@ Qt::ItemFlags PythonQtShell_QSqlQueryModel::flags(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2279,7 +2279,7 @@ QVariant PythonQtShell_QSqlQueryModel::headerData(int section0, Qt::Orientatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2312,7 +2312,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::index(int row0, int column1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2345,7 +2345,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::indexInQuery(const QModelIndex& item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2378,7 +2378,7 @@ bool PythonQtShell_QSqlQueryModel::insertColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2411,7 +2411,7 @@ bool PythonQtShell_QSqlQueryModel::insertRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2444,7 +2444,7 @@ QMap PythonQtShell_QSqlQueryModel::itemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2477,7 +2477,7 @@ QList PythonQtShell_QSqlQueryModel::match(const QModelIndex& sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2510,7 +2510,7 @@ QMimeData* PythonQtShell_QSqlQueryModel::mimeData(const QList& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2543,7 +2543,7 @@ QStringList PythonQtShell_QSqlQueryModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2576,7 +2576,7 @@ bool PythonQtShell_QSqlQueryModel::moveColumns(const QModelIndex& sourceParent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2609,7 +2609,7 @@ bool PythonQtShell_QSqlQueryModel::moveRows(const QModelIndex& sourceParent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2642,7 +2642,7 @@ void PythonQtShell_QSqlQueryModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2664,7 +2664,7 @@ bool PythonQtShell_QSqlQueryModel::removeColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2697,7 +2697,7 @@ bool PythonQtShell_QSqlQueryModel::removeRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2730,7 +2730,7 @@ void PythonQtShell_QSqlQueryModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2752,7 +2752,7 @@ QHash PythonQtShell_QSqlQueryModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2785,7 +2785,7 @@ int PythonQtShell_QSqlQueryModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2818,7 +2818,7 @@ bool PythonQtShell_QSqlQueryModel::setData(const QModelIndex& index0, const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2851,7 +2851,7 @@ bool PythonQtShell_QSqlQueryModel::setHeaderData(int section0, Qt::Orientation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2884,7 +2884,7 @@ bool PythonQtShell_QSqlQueryModel::setItemData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2917,7 +2917,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::sibling(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2950,7 +2950,7 @@ void PythonQtShell_QSqlQueryModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2972,7 +2972,7 @@ QSize PythonQtShell_QSqlQueryModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -3005,7 +3005,7 @@ bool PythonQtShell_QSqlQueryModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3038,7 +3038,7 @@ Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3071,7 +3071,7 @@ Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3104,7 +3104,7 @@ void PythonQtShell_QSqlQueryModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3441,7 +3441,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::buddy(const QModelIndex& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3474,7 +3474,7 @@ bool PythonQtShell_QSqlRelationalTableModel::canDropMimeData(const QMimeData* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3507,7 +3507,7 @@ bool PythonQtShell_QSqlRelationalTableModel::canFetchMore(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3540,7 +3540,7 @@ void PythonQtShell_QSqlRelationalTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3562,7 +3562,7 @@ void PythonQtShell_QSqlRelationalTableModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3584,7 +3584,7 @@ int PythonQtShell_QSqlRelationalTableModel::columnCount(const QModelIndex& par if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3617,7 +3617,7 @@ void PythonQtShell_QSqlRelationalTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3639,7 +3639,7 @@ QVariant PythonQtShell_QSqlRelationalTableModel::data(const QModelIndex& item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3672,7 +3672,7 @@ bool PythonQtShell_QSqlRelationalTableModel::deleteRowFromTable(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3705,7 +3705,7 @@ bool PythonQtShell_QSqlRelationalTableModel::dropMimeData(const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3738,7 +3738,7 @@ bool PythonQtShell_QSqlRelationalTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3771,7 +3771,7 @@ bool PythonQtShell_QSqlRelationalTableModel::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3804,7 +3804,7 @@ void PythonQtShell_QSqlRelationalTableModel::fetchMore(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3826,7 +3826,7 @@ Qt::ItemFlags PythonQtShell_QSqlRelationalTableModel::flags(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3859,7 +3859,7 @@ QVariant PythonQtShell_QSqlRelationalTableModel::headerData(int section0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3892,7 +3892,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::index(int row0, int colum if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3925,7 +3925,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::indexInQuery(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3958,7 +3958,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertColumns(int column0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3991,7 +3991,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertRowIntoTable(const QSqlRecor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -4024,7 +4024,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertRows(int row0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4057,7 +4057,7 @@ QMap PythonQtShell_QSqlRelationalTableModel::itemData(const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -4090,7 +4090,7 @@ QList PythonQtShell_QSqlRelationalTableModel::match(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -4123,7 +4123,7 @@ QMimeData* PythonQtShell_QSqlRelationalTableModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -4156,7 +4156,7 @@ QStringList PythonQtShell_QSqlRelationalTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4189,7 +4189,7 @@ bool PythonQtShell_QSqlRelationalTableModel::moveColumns(const QModelIndex& so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4222,7 +4222,7 @@ bool PythonQtShell_QSqlRelationalTableModel::moveRows(const QModelIndex& sourc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4255,7 +4255,7 @@ QString PythonQtShell_QSqlRelationalTableModel::orderByClause() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4288,7 +4288,7 @@ void PythonQtShell_QSqlRelationalTableModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4310,7 +4310,7 @@ QSqlTableModel* PythonQtShell_QSqlRelationalTableModel::relationModel(int colu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("relationModel"); + static PyObject* name = PyUnicode_FromString("relationModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlTableModel*" , "int"}; @@ -4343,7 +4343,7 @@ bool PythonQtShell_QSqlRelationalTableModel::removeColumns(int column0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4376,7 +4376,7 @@ bool PythonQtShell_QSqlRelationalTableModel::removeRows(int row0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4409,7 +4409,7 @@ void PythonQtShell_QSqlRelationalTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4431,7 +4431,7 @@ void PythonQtShell_QSqlRelationalTableModel::revertRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4453,7 +4453,7 @@ QHash PythonQtShell_QSqlRelationalTableModel::roleNames() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4486,7 +4486,7 @@ int PythonQtShell_QSqlRelationalTableModel::rowCount(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4519,7 +4519,7 @@ bool PythonQtShell_QSqlRelationalTableModel::select() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4552,7 +4552,7 @@ bool PythonQtShell_QSqlRelationalTableModel::selectRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4585,7 +4585,7 @@ QString PythonQtShell_QSqlRelationalTableModel::selectStatement() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4618,7 +4618,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setData(const QModelIndex& item0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4651,7 +4651,7 @@ void PythonQtShell_QSqlRelationalTableModel::setEditStrategy(QSqlTableModel::Edi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -4673,7 +4673,7 @@ void PythonQtShell_QSqlRelationalTableModel::setFilter(const QString& filter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4695,7 +4695,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setHeaderData(int section0, Qt::O if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4728,7 +4728,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setItemData(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4761,7 +4761,7 @@ void PythonQtShell_QSqlRelationalTableModel::setRelation(int column0, const QSq if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRelation"); + static PyObject* name = PyUnicode_FromString("setRelation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QSqlRelation&"}; @@ -4783,7 +4783,7 @@ void PythonQtShell_QSqlRelationalTableModel::setSort(int column0, Qt::SortOrder if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4805,7 +4805,7 @@ void PythonQtShell_QSqlRelationalTableModel::setTable(const QString& tableName0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4827,7 +4827,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::sibling(int row0, int col if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4860,7 +4860,7 @@ void PythonQtShell_QSqlRelationalTableModel::sort(int column0, Qt::SortOrder o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4882,7 +4882,7 @@ QSize PythonQtShell_QSqlRelationalTableModel::span(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4915,7 +4915,7 @@ bool PythonQtShell_QSqlRelationalTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4948,7 +4948,7 @@ Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDragActions() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4981,7 +4981,7 @@ Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDropActions() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -5014,7 +5014,7 @@ void PythonQtShell_QSqlRelationalTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5036,7 +5036,7 @@ bool PythonQtShell_QSqlRelationalTableModel::updateRowInTable(int row0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; @@ -5112,7 +5112,7 @@ void PythonQtShell_QSqlResult::bindValue(const QString& placeholder0, const QVa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&" , "QSql::ParamType"}; @@ -5134,7 +5134,7 @@ void PythonQtShell_QSqlResult::bindValue(int pos0, const QVariant& val1, QSql: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&" , "QSql::ParamType"}; @@ -5156,7 +5156,7 @@ QVariant PythonQtShell_QSqlResult::data(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -5189,7 +5189,7 @@ void PythonQtShell_QSqlResult::detachFromResultSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("detachFromResultSet"); + static PyObject* name = PyUnicode_FromString("detachFromResultSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5211,7 +5211,7 @@ bool PythonQtShell_QSqlResult::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5244,7 +5244,7 @@ bool PythonQtShell_QSqlResult::execBatch(bool arrayBind0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("execBatch"); + static PyObject* name = PyUnicode_FromString("execBatch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5277,7 +5277,7 @@ bool PythonQtShell_QSqlResult::fetch(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetch"); + static PyObject* name = PyUnicode_FromString("fetch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5310,7 +5310,7 @@ bool PythonQtShell_QSqlResult::fetchFirst() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchFirst"); + static PyObject* name = PyUnicode_FromString("fetchFirst"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5343,7 +5343,7 @@ bool PythonQtShell_QSqlResult::fetchLast() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchLast"); + static PyObject* name = PyUnicode_FromString("fetchLast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5376,7 +5376,7 @@ bool PythonQtShell_QSqlResult::fetchNext() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchNext"); + static PyObject* name = PyUnicode_FromString("fetchNext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5409,7 +5409,7 @@ bool PythonQtShell_QSqlResult::fetchPrevious() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchPrevious"); + static PyObject* name = PyUnicode_FromString("fetchPrevious"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5442,7 +5442,7 @@ QVariant PythonQtShell_QSqlResult::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5475,7 +5475,7 @@ bool PythonQtShell_QSqlResult::isNull(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isNull"); + static PyObject* name = PyUnicode_FromString("isNull"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5508,7 +5508,7 @@ QVariant PythonQtShell_QSqlResult::lastInsertId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lastInsertId"); + static PyObject* name = PyUnicode_FromString("lastInsertId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5541,7 +5541,7 @@ bool PythonQtShell_QSqlResult::nextResult() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextResult"); + static PyObject* name = PyUnicode_FromString("nextResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5574,7 +5574,7 @@ int PythonQtShell_QSqlResult::numRowsAffected() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("numRowsAffected"); + static PyObject* name = PyUnicode_FromString("numRowsAffected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5607,7 +5607,7 @@ bool PythonQtShell_QSqlResult::prepare(const QString& query0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5640,7 +5640,7 @@ QSqlRecord PythonQtShell_QSqlResult::record() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord"}; @@ -5673,7 +5673,7 @@ bool PythonQtShell_QSqlResult::reset(const QString& sqlquery0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5706,7 +5706,7 @@ bool PythonQtShell_QSqlResult::savePrepare(const QString& sqlquery0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("savePrepare"); + static PyObject* name = PyUnicode_FromString("savePrepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5739,7 +5739,7 @@ void PythonQtShell_QSqlResult::setActive(bool a0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5761,7 +5761,7 @@ void PythonQtShell_QSqlResult::setAt(int at0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAt"); + static PyObject* name = PyUnicode_FromString("setAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5783,7 +5783,7 @@ void PythonQtShell_QSqlResult::setForwardOnly(bool forward0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setForwardOnly"); + static PyObject* name = PyUnicode_FromString("setForwardOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5805,7 +5805,7 @@ void PythonQtShell_QSqlResult::setLastError(const QSqlError& e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -5827,7 +5827,7 @@ void PythonQtShell_QSqlResult::setNumericalPrecisionPolicy(QSql::NumericalPrecis if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNumericalPrecisionPolicy"); + static PyObject* name = PyUnicode_FromString("setNumericalPrecisionPolicy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSql::NumericalPrecisionPolicy"}; @@ -5849,7 +5849,7 @@ void PythonQtShell_QSqlResult::setQuery(const QString& query0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setQuery"); + static PyObject* name = PyUnicode_FromString("setQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5871,7 +5871,7 @@ void PythonQtShell_QSqlResult::setSelect(bool s0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelect"); + static PyObject* name = PyUnicode_FromString("setSelect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5893,7 +5893,7 @@ int PythonQtShell_QSqlResult::size() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6186,7 +6186,7 @@ QModelIndex PythonQtShell_QSqlTableModel::buddy(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6219,7 +6219,7 @@ bool PythonQtShell_QSqlTableModel::canDropMimeData(const QMimeData* data0, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6252,7 +6252,7 @@ bool PythonQtShell_QSqlTableModel::canFetchMore(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6285,7 +6285,7 @@ void PythonQtShell_QSqlTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6307,7 +6307,7 @@ void PythonQtShell_QSqlTableModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6329,7 +6329,7 @@ int PythonQtShell_QSqlTableModel::columnCount(const QModelIndex& parent0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6362,7 +6362,7 @@ void PythonQtShell_QSqlTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6384,7 +6384,7 @@ QVariant PythonQtShell_QSqlTableModel::data(const QModelIndex& idx0, int role if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -6417,7 +6417,7 @@ bool PythonQtShell_QSqlTableModel::deleteRowFromTable(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6450,7 +6450,7 @@ bool PythonQtShell_QSqlTableModel::dropMimeData(const QMimeData* data0, Qt::Dr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6483,7 +6483,7 @@ bool PythonQtShell_QSqlTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6516,7 +6516,7 @@ bool PythonQtShell_QSqlTableModel::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6549,7 +6549,7 @@ void PythonQtShell_QSqlTableModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6571,7 +6571,7 @@ Qt::ItemFlags PythonQtShell_QSqlTableModel::flags(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6604,7 +6604,7 @@ QVariant PythonQtShell_QSqlTableModel::headerData(int section0, Qt::Orientatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6637,7 +6637,7 @@ QModelIndex PythonQtShell_QSqlTableModel::index(int row0, int column1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6670,7 +6670,7 @@ QModelIndex PythonQtShell_QSqlTableModel::indexInQuery(const QModelIndex& item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6703,7 +6703,7 @@ bool PythonQtShell_QSqlTableModel::insertColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6736,7 +6736,7 @@ bool PythonQtShell_QSqlTableModel::insertRowIntoTable(const QSqlRecord& values if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -6769,7 +6769,7 @@ bool PythonQtShell_QSqlTableModel::insertRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6802,7 +6802,7 @@ QMap PythonQtShell_QSqlTableModel::itemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6835,7 +6835,7 @@ QList PythonQtShell_QSqlTableModel::match(const QModelIndex& sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6868,7 +6868,7 @@ QMimeData* PythonQtShell_QSqlTableModel::mimeData(const QList& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6901,7 +6901,7 @@ QStringList PythonQtShell_QSqlTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6934,7 +6934,7 @@ bool PythonQtShell_QSqlTableModel::moveColumns(const QModelIndex& sourceParent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6967,7 +6967,7 @@ bool PythonQtShell_QSqlTableModel::moveRows(const QModelIndex& sourceParent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7000,7 +7000,7 @@ QString PythonQtShell_QSqlTableModel::orderByClause() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7033,7 +7033,7 @@ void PythonQtShell_QSqlTableModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7055,7 +7055,7 @@ bool PythonQtShell_QSqlTableModel::removeColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7088,7 +7088,7 @@ bool PythonQtShell_QSqlTableModel::removeRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7121,7 +7121,7 @@ void PythonQtShell_QSqlTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7143,7 +7143,7 @@ void PythonQtShell_QSqlTableModel::revertRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7165,7 +7165,7 @@ QHash PythonQtShell_QSqlTableModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7198,7 +7198,7 @@ int PythonQtShell_QSqlTableModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7231,7 +7231,7 @@ bool PythonQtShell_QSqlTableModel::select() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7264,7 +7264,7 @@ bool PythonQtShell_QSqlTableModel::selectRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7297,7 +7297,7 @@ QString PythonQtShell_QSqlTableModel::selectStatement() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7330,7 +7330,7 @@ bool PythonQtShell_QSqlTableModel::setData(const QModelIndex& index0, const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7363,7 +7363,7 @@ void PythonQtShell_QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -7385,7 +7385,7 @@ void PythonQtShell_QSqlTableModel::setFilter(const QString& filter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7407,7 +7407,7 @@ bool PythonQtShell_QSqlTableModel::setHeaderData(int section0, Qt::Orientation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7440,7 +7440,7 @@ bool PythonQtShell_QSqlTableModel::setItemData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -7473,7 +7473,7 @@ void PythonQtShell_QSqlTableModel::setSort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7495,7 +7495,7 @@ void PythonQtShell_QSqlTableModel::setTable(const QString& tableName0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7517,7 +7517,7 @@ QModelIndex PythonQtShell_QSqlTableModel::sibling(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7550,7 +7550,7 @@ void PythonQtShell_QSqlTableModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7572,7 +7572,7 @@ QSize PythonQtShell_QSqlTableModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7605,7 +7605,7 @@ bool PythonQtShell_QSqlTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7638,7 +7638,7 @@ Qt::DropActions PythonQtShell_QSqlTableModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7671,7 +7671,7 @@ Qt::DropActions PythonQtShell_QSqlTableModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7704,7 +7704,7 @@ void PythonQtShell_QSqlTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7726,7 +7726,7 @@ bool PythonQtShell_QSqlTableModel::updateRowInTable(int row0, const QSqlRecord if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; diff --git a/generated_cpp_511/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp b/generated_cpp_511/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp index 9219c779e..555ae821a 100644 --- a/generated_cpp_511/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +++ b/generated_cpp_511/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp @@ -59,7 +59,7 @@ QRectF PythonQtShell_QGraphicsSvgItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -92,7 +92,7 @@ void PythonQtShell_QGraphicsSvgItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -114,7 +114,7 @@ void PythonQtShell_QGraphicsSvgItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -136,7 +136,7 @@ bool PythonQtShell_QGraphicsSvgItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -169,7 +169,7 @@ bool PythonQtShell_QGraphicsSvgItem::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -202,7 +202,7 @@ void PythonQtShell_QGraphicsSvgItem::paint(QPainter* painter0, const QStyleOpti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -224,7 +224,7 @@ void PythonQtShell_QGraphicsSvgItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -246,7 +246,7 @@ int PythonQtShell_QGraphicsSvgItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -361,7 +361,7 @@ int PythonQtShell_QSvgGenerator::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -394,7 +394,7 @@ void PythonQtShell_QSvgGenerator::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -416,7 +416,7 @@ int PythonQtShell_QSvgGenerator::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -449,7 +449,7 @@ QPaintEngine* PythonQtShell_QSvgGenerator::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -482,7 +482,7 @@ QPaintDevice* PythonQtShell_QSvgGenerator::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -515,7 +515,7 @@ QPainter* PythonQtShell_QSvgGenerator::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -638,7 +638,7 @@ void PythonQtShell_QSvgRenderer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -660,7 +660,7 @@ void PythonQtShell_QSvgRenderer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -682,7 +682,7 @@ bool PythonQtShell_QSvgRenderer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -715,7 +715,7 @@ bool PythonQtShell_QSvgRenderer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -748,7 +748,7 @@ void PythonQtShell_QSvgRenderer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -880,7 +880,7 @@ void PythonQtShell_QSvgWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -902,7 +902,7 @@ void PythonQtShell_QSvgWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -924,7 +924,7 @@ void PythonQtShell_QSvgWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -946,7 +946,7 @@ void PythonQtShell_QSvgWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -968,7 +968,7 @@ void PythonQtShell_QSvgWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -990,7 +990,7 @@ void PythonQtShell_QSvgWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1012,7 +1012,7 @@ int PythonQtShell_QSvgWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1045,7 +1045,7 @@ void PythonQtShell_QSvgWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1067,7 +1067,7 @@ void PythonQtShell_QSvgWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1089,7 +1089,7 @@ void PythonQtShell_QSvgWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1111,7 +1111,7 @@ void PythonQtShell_QSvgWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1133,7 +1133,7 @@ void PythonQtShell_QSvgWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1155,7 +1155,7 @@ bool PythonQtShell_QSvgWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1188,7 +1188,7 @@ bool PythonQtShell_QSvgWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1221,7 +1221,7 @@ void PythonQtShell_QSvgWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1243,7 +1243,7 @@ bool PythonQtShell_QSvgWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1276,7 +1276,7 @@ void PythonQtShell_QSvgWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1298,7 +1298,7 @@ bool PythonQtShell_QSvgWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1331,7 +1331,7 @@ int PythonQtShell_QSvgWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1364,7 +1364,7 @@ void PythonQtShell_QSvgWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1386,7 +1386,7 @@ void PythonQtShell_QSvgWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1408,7 +1408,7 @@ void PythonQtShell_QSvgWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1430,7 +1430,7 @@ QVariant PythonQtShell_QSvgWidget::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1463,7 +1463,7 @@ void PythonQtShell_QSvgWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1485,7 +1485,7 @@ void PythonQtShell_QSvgWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1507,7 +1507,7 @@ void PythonQtShell_QSvgWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1529,7 +1529,7 @@ int PythonQtShell_QSvgWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1562,7 +1562,7 @@ QSize PythonQtShell_QSvgWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1595,7 +1595,7 @@ void PythonQtShell_QSvgWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1617,7 +1617,7 @@ void PythonQtShell_QSvgWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1639,7 +1639,7 @@ void PythonQtShell_QSvgWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1661,7 +1661,7 @@ void PythonQtShell_QSvgWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1683,7 +1683,7 @@ void PythonQtShell_QSvgWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1705,7 +1705,7 @@ bool PythonQtShell_QSvgWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1738,7 +1738,7 @@ QPaintEngine* PythonQtShell_QSvgWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1771,7 +1771,7 @@ void PythonQtShell_QSvgWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1793,7 +1793,7 @@ QPaintDevice* PythonQtShell_QSvgWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1826,7 +1826,7 @@ void PythonQtShell_QSvgWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1848,7 +1848,7 @@ void PythonQtShell_QSvgWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1870,7 +1870,7 @@ QPainter* PythonQtShell_QSvgWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1903,7 +1903,7 @@ void PythonQtShell_QSvgWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1925,7 +1925,7 @@ QSize PythonQtShell_QSvgWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1958,7 +1958,7 @@ void PythonQtShell_QSvgWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1980,7 +1980,7 @@ void PythonQtShell_QSvgWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2002,7 +2002,7 @@ void PythonQtShell_QSvgWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp b/generated_cpp_511/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp index a0e419f12..f19096147 100644 --- a/generated_cpp_511/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +++ b/generated_cpp_511/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp @@ -26,7 +26,7 @@ void PythonQtShell_QUiLoader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -48,7 +48,7 @@ QAction* PythonQtShell_QUiLoader::createAction(QObject* parent0, const QString if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createAction"); + static PyObject* name = PyUnicode_FromString("createAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAction*" , "QObject*" , "const QString&"}; @@ -81,7 +81,7 @@ QActionGroup* PythonQtShell_QUiLoader::createActionGroup(QObject* parent0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createActionGroup"); + static PyObject* name = PyUnicode_FromString("createActionGroup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QActionGroup*" , "QObject*" , "const QString&"}; @@ -114,7 +114,7 @@ QLayout* PythonQtShell_QUiLoader::createLayout(const QString& className0, QObj if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createLayout"); + static PyObject* name = PyUnicode_FromString("createLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*" , "const QString&" , "QObject*" , "const QString&"}; @@ -147,7 +147,7 @@ QWidget* PythonQtShell_QUiLoader::createWidget(const QString& className0, QWid if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "const QString&" , "QWidget*" , "const QString&"}; @@ -180,7 +180,7 @@ void PythonQtShell_QUiLoader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -202,7 +202,7 @@ bool PythonQtShell_QUiLoader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -235,7 +235,7 @@ bool PythonQtShell_QUiLoader::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -268,7 +268,7 @@ void PythonQtShell_QUiLoader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_511/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp b/generated_cpp_511/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp index d2abb0e4f..f5d6d216b 100644 --- a/generated_cpp_511/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +++ b/generated_cpp_511/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp @@ -1162,7 +1162,7 @@ bool PythonQtShell_QXmlContentHandler::characters(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1195,7 +1195,7 @@ bool PythonQtShell_QXmlContentHandler::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1228,7 +1228,7 @@ bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1261,7 +1261,7 @@ bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1294,7 +1294,7 @@ QString PythonQtShell_QXmlContentHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1327,7 +1327,7 @@ bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1360,7 +1360,7 @@ bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& ta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1393,7 +1393,7 @@ void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -1415,7 +1415,7 @@ bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1448,7 +1448,7 @@ bool PythonQtShell_QXmlContentHandler::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1481,7 +1481,7 @@ bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceUR if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -1514,7 +1514,7 @@ bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1617,7 +1617,7 @@ QString PythonQtShell_QXmlDTDHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1650,7 +1650,7 @@ bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1683,7 +1683,7 @@ bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1741,7 +1741,7 @@ bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1774,7 +1774,7 @@ QString PythonQtShell_QXmlDeclHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1807,7 +1807,7 @@ bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1840,7 +1840,7 @@ bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1903,7 +1903,7 @@ bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1936,7 +1936,7 @@ bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1969,7 +1969,7 @@ bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2002,7 +2002,7 @@ bool PythonQtShell_QXmlDefaultHandler::endCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2035,7 +2035,7 @@ bool PythonQtShell_QXmlDefaultHandler::endDTD() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2068,7 +2068,7 @@ bool PythonQtShell_QXmlDefaultHandler::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2101,7 +2101,7 @@ bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2134,7 +2134,7 @@ bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2167,7 +2167,7 @@ bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2200,7 +2200,7 @@ bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& excepti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2233,7 +2233,7 @@ QString PythonQtShell_QXmlDefaultHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2266,7 +2266,7 @@ bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2299,7 +2299,7 @@ bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2332,7 +2332,7 @@ bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2365,7 +2365,7 @@ bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2398,7 +2398,7 @@ bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2431,7 +2431,7 @@ bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& ta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2464,7 +2464,7 @@ bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2497,7 +2497,7 @@ void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -2519,7 +2519,7 @@ bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2552,7 +2552,7 @@ bool PythonQtShell_QXmlDefaultHandler::startCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2585,7 +2585,7 @@ bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2618,7 +2618,7 @@ bool PythonQtShell_QXmlDefaultHandler::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2651,7 +2651,7 @@ bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceUR if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -2684,7 +2684,7 @@ bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2717,7 +2717,7 @@ bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2750,7 +2750,7 @@ bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -2783,7 +2783,7 @@ bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& excep if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2826,7 +2826,7 @@ QString PythonQtShell_QXmlEntityResolver::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2859,7 +2859,7 @@ bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2912,7 +2912,7 @@ bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2945,7 +2945,7 @@ QString PythonQtShell_QXmlErrorHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2978,7 +2978,7 @@ bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exce if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3011,7 +3011,7 @@ bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& excepti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3074,7 +3074,7 @@ QString PythonQtShell_QXmlInputSource::data() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3107,7 +3107,7 @@ void PythonQtShell_QXmlInputSource::fetchData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchData"); + static PyObject* name = PyUnicode_FromString("fetchData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3129,7 +3129,7 @@ QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data0, bo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fromRawData"); + static PyObject* name = PyUnicode_FromString("fromRawData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"}; @@ -3162,7 +3162,7 @@ QChar PythonQtShell_QXmlInputSource::next() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("next"); + static PyObject* name = PyUnicode_FromString("next"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QChar"}; @@ -3195,7 +3195,7 @@ void PythonQtShell_QXmlInputSource::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QByteArray&"}; @@ -3239,7 +3239,7 @@ void PythonQtShell_QXmlInputSource::setData(const QString& dat0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3310,7 +3310,7 @@ bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3343,7 +3343,7 @@ bool PythonQtShell_QXmlLexicalHandler::endCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3376,7 +3376,7 @@ bool PythonQtShell_QXmlLexicalHandler::endDTD() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3409,7 +3409,7 @@ bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3442,7 +3442,7 @@ QString PythonQtShell_QXmlLexicalHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3475,7 +3475,7 @@ bool PythonQtShell_QXmlLexicalHandler::startCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3508,7 +3508,7 @@ bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -3541,7 +3541,7 @@ bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3624,7 +3624,7 @@ int PythonQtShell_QXmlLocator::columnNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnNumber"); + static PyObject* name = PyUnicode_FromString("columnNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3657,7 +3657,7 @@ int PythonQtShell_QXmlLocator::lineNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lineNumber"); + static PyObject* name = PyUnicode_FromString("lineNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3745,7 +3745,7 @@ QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -3778,7 +3778,7 @@ QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -3811,7 +3811,7 @@ QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -3844,7 +3844,7 @@ QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -3877,7 +3877,7 @@ QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -3910,7 +3910,7 @@ bool PythonQtShell_QXmlReader::feature(const QString& name0, bool* ok1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -3943,7 +3943,7 @@ bool PythonQtShell_QXmlReader::hasFeature(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3976,7 +3976,7 @@ bool PythonQtShell_QXmlReader::hasProperty(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4009,7 +4009,7 @@ QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4042,7 +4042,7 @@ bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4075,7 +4075,7 @@ bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4108,7 +4108,7 @@ void* PythonQtShell_QXmlReader::property(const QString& name0, bool* ok1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4141,7 +4141,7 @@ void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4163,7 +4163,7 @@ void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4185,7 +4185,7 @@ void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4207,7 +4207,7 @@ void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4229,7 +4229,7 @@ void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4251,7 +4251,7 @@ void PythonQtShell_QXmlReader::setFeature(const QString& name0, bool value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4273,7 +4273,7 @@ void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4295,7 +4295,7 @@ void PythonQtShell_QXmlReader::setProperty(const QString& name0, void* value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; @@ -4427,7 +4427,7 @@ QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -4460,7 +4460,7 @@ QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -4493,7 +4493,7 @@ QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -4526,7 +4526,7 @@ QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -4559,7 +4559,7 @@ QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -4592,7 +4592,7 @@ bool PythonQtShell_QXmlSimpleReader::feature(const QString& name0, bool* ok1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -4625,7 +4625,7 @@ bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4658,7 +4658,7 @@ bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4691,7 +4691,7 @@ QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4724,7 +4724,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4757,7 +4757,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4790,7 +4790,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0, bool if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"}; @@ -4823,7 +4823,7 @@ bool PythonQtShell_QXmlSimpleReader::parseContinue() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parseContinue"); + static PyObject* name = PyUnicode_FromString("parseContinue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4856,7 +4856,7 @@ void* PythonQtShell_QXmlSimpleReader::property(const QString& name0, bool* ok if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4889,7 +4889,7 @@ void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4911,7 +4911,7 @@ void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4933,7 +4933,7 @@ void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4955,7 +4955,7 @@ void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4977,7 +4977,7 @@ void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4999,7 +4999,7 @@ void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name0, bool val if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -5021,7 +5021,7 @@ void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -5043,7 +5043,7 @@ void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name0, void* v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; diff --git a/generated_cpp_511/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp b/generated_cpp_511/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp index 9476670b6..c5e710f53 100644 --- a/generated_cpp_511/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +++ b/generated_cpp_511/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp @@ -34,7 +34,7 @@ void PythonQtShell_QAbstractMessageHandler::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -56,7 +56,7 @@ void PythonQtShell_QAbstractMessageHandler::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -78,7 +78,7 @@ bool PythonQtShell_QAbstractMessageHandler::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -111,7 +111,7 @@ bool PythonQtShell_QAbstractMessageHandler::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -144,7 +144,7 @@ void PythonQtShell_QAbstractMessageHandler::handleMessage(QtMsgType type0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handleMessage"); + static PyObject* name = PyUnicode_FromString("handleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QtMsgType" , "const QString&" , "const QUrl&" , "const QSourceLocation&"}; @@ -166,7 +166,7 @@ void PythonQtShell_QAbstractMessageHandler::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -221,7 +221,7 @@ void PythonQtShell_QAbstractUriResolver::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -243,7 +243,7 @@ void PythonQtShell_QAbstractUriResolver::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -265,7 +265,7 @@ bool PythonQtShell_QAbstractUriResolver::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -298,7 +298,7 @@ bool PythonQtShell_QAbstractUriResolver::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -331,7 +331,7 @@ QUrl PythonQtShell_QAbstractUriResolver::resolve(const QUrl& relative0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolve"); + static PyObject* name = PyUnicode_FromString("resolve"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "const QUrl&"}; @@ -364,7 +364,7 @@ void PythonQtShell_QAbstractUriResolver::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -414,7 +414,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::attributes(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -447,7 +447,7 @@ QUrl PythonQtShell_QAbstractXmlNodeModel::baseUri(const QXmlNodeModelIndex& ni if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -480,7 +480,7 @@ QXmlNodeModelIndex::DocumentOrder PythonQtShell_QAbstractXmlNodeModel::compareO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -513,7 +513,7 @@ QUrl PythonQtShell_QAbstractXmlNodeModel::documentUri(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -546,7 +546,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::elementById(const QXmlN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -579,7 +579,7 @@ bool PythonQtShell_QAbstractXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -612,7 +612,7 @@ QXmlNodeModelIndex::NodeKind PythonQtShell_QAbstractXmlNodeModel::kind(const QX if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -645,7 +645,7 @@ QXmlName PythonQtShell_QAbstractXmlNodeModel::name(const QXmlNodeModelIndex& n if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -678,7 +678,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::namespaceBindings(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -711,7 +711,7 @@ short PythonQtShell_QAbstractXmlNodeModel::namespaceForPrefix(const QXmlNodeMod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -744,7 +744,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::nextFromSimpleAxis(QAbs if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -777,7 +777,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::nodesByIdref( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -810,7 +810,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::root(const QXmlNodeMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -843,7 +843,7 @@ QString PythonQtShell_QAbstractXmlNodeModel::stringValue(const QXmlNodeModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -876,7 +876,7 @@ QVariant PythonQtShell_QAbstractXmlNodeModel::typedValue(const QXmlNodeModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1014,7 +1014,7 @@ void PythonQtShell_QAbstractXmlReceiver::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1036,7 +1036,7 @@ void PythonQtShell_QAbstractXmlReceiver::attribute(const QXmlName& name0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1058,7 +1058,7 @@ void PythonQtShell_QAbstractXmlReceiver::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1080,7 +1080,7 @@ void PythonQtShell_QAbstractXmlReceiver::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1102,7 +1102,7 @@ void PythonQtShell_QAbstractXmlReceiver::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1124,7 +1124,7 @@ void PythonQtShell_QAbstractXmlReceiver::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1146,7 +1146,7 @@ void PythonQtShell_QAbstractXmlReceiver::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1168,7 +1168,7 @@ void PythonQtShell_QAbstractXmlReceiver::namespaceBinding(const QXmlName& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1190,7 +1190,7 @@ void PythonQtShell_QAbstractXmlReceiver::processingInstruction(const QXmlName& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1212,7 +1212,7 @@ void PythonQtShell_QAbstractXmlReceiver::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1234,7 +1234,7 @@ void PythonQtShell_QAbstractXmlReceiver::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1256,7 +1256,7 @@ void PythonQtShell_QAbstractXmlReceiver::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1278,7 +1278,7 @@ void PythonQtShell_QAbstractXmlReceiver::whitespaceOnly(const QStringRef& value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1379,7 +1379,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::attributes(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1412,7 +1412,7 @@ QUrl PythonQtShell_QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex& node if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1445,7 +1445,7 @@ QXmlNodeModelIndex::DocumentOrder PythonQtShell_QSimpleXmlNodeModel::compareOrd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1478,7 +1478,7 @@ QUrl PythonQtShell_QSimpleXmlNodeModel::documentUri(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1511,7 +1511,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::elementById(const QXmlNam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -1544,7 +1544,7 @@ bool PythonQtShell_QSimpleXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1577,7 +1577,7 @@ QXmlNodeModelIndex::NodeKind PythonQtShell_QSimpleXmlNodeModel::kind(const QXml if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -1610,7 +1610,7 @@ QXmlName PythonQtShell_QSimpleXmlNodeModel::name(const QXmlNodeModelIndex& ni0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -1643,7 +1643,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::namespaceBindings(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1676,7 +1676,7 @@ short PythonQtShell_QSimpleXmlNodeModel::namespaceForPrefix(const QXmlNodeModel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -1709,7 +1709,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::nextFromSimpleAxis(QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -1742,7 +1742,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::nodesByIdref(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -1775,7 +1775,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::root(const QXmlNodeModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -1808,7 +1808,7 @@ QString PythonQtShell_QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -1841,7 +1841,7 @@ QVariant PythonQtShell_QSimpleXmlNodeModel::typedValue(const QXmlNodeModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1955,7 +1955,7 @@ void PythonQtShell_QXmlFormatter::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1977,7 +1977,7 @@ void PythonQtShell_QXmlFormatter::attribute(const QXmlName& name0, const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1999,7 +1999,7 @@ void PythonQtShell_QXmlFormatter::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2021,7 +2021,7 @@ void PythonQtShell_QXmlFormatter::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2043,7 +2043,7 @@ void PythonQtShell_QXmlFormatter::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2065,7 +2065,7 @@ void PythonQtShell_QXmlFormatter::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2087,7 +2087,7 @@ void PythonQtShell_QXmlFormatter::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2109,7 +2109,7 @@ void PythonQtShell_QXmlFormatter::namespaceBinding(const QXmlName& nb0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2131,7 +2131,7 @@ void PythonQtShell_QXmlFormatter::processingInstruction(const QXmlName& name0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2153,7 +2153,7 @@ void PythonQtShell_QXmlFormatter::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2175,7 +2175,7 @@ void PythonQtShell_QXmlFormatter::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2197,7 +2197,7 @@ void PythonQtShell_QXmlFormatter::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2219,7 +2219,7 @@ void PythonQtShell_QXmlFormatter::whitespaceOnly(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2741,7 +2741,7 @@ void PythonQtShell_QXmlSerializer::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2763,7 +2763,7 @@ void PythonQtShell_QXmlSerializer::attribute(const QXmlName& name0, const QStri if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -2785,7 +2785,7 @@ void PythonQtShell_QXmlSerializer::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2807,7 +2807,7 @@ void PythonQtShell_QXmlSerializer::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2829,7 +2829,7 @@ void PythonQtShell_QXmlSerializer::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2851,7 +2851,7 @@ void PythonQtShell_QXmlSerializer::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2873,7 +2873,7 @@ void PythonQtShell_QXmlSerializer::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2895,7 +2895,7 @@ void PythonQtShell_QXmlSerializer::namespaceBinding(const QXmlName& nb0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2917,7 +2917,7 @@ void PythonQtShell_QXmlSerializer::processingInstruction(const QXmlName& name0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2939,7 +2939,7 @@ void PythonQtShell_QXmlSerializer::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2961,7 +2961,7 @@ void PythonQtShell_QXmlSerializer::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2983,7 +2983,7 @@ void PythonQtShell_QXmlSerializer::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3005,7 +3005,7 @@ void PythonQtShell_QXmlSerializer::whitespaceOnly(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; diff --git a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core0.cpp b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core0.cpp index bde2aeeb0..936bfdd90 100644 --- a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +++ b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core0.cpp @@ -55,7 +55,7 @@ void PythonQtShell_QAbstractAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -77,7 +77,7 @@ void PythonQtShell_QAbstractAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -99,7 +99,7 @@ int PythonQtShell_QAbstractAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -132,7 +132,7 @@ bool PythonQtShell_QAbstractAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -165,7 +165,7 @@ bool PythonQtShell_QAbstractAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -198,7 +198,7 @@ void PythonQtShell_QAbstractAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -220,7 +220,7 @@ void PythonQtShell_QAbstractAnimation::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -242,7 +242,7 @@ void PythonQtShell_QAbstractAnimation::updateDirection(QAbstractAnimation::Direc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -264,7 +264,7 @@ void PythonQtShell_QAbstractAnimation::updateState(QAbstractAnimation::State ne if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -379,7 +379,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -412,7 +412,7 @@ bool PythonQtShell_QAbstractItemModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -445,7 +445,7 @@ bool PythonQtShell_QAbstractItemModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -478,7 +478,7 @@ void PythonQtShell_QAbstractItemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -500,7 +500,7 @@ int PythonQtShell_QAbstractItemModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -533,7 +533,7 @@ void PythonQtShell_QAbstractItemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -555,7 +555,7 @@ QVariant PythonQtShell_QAbstractItemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -588,7 +588,7 @@ bool PythonQtShell_QAbstractItemModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -621,7 +621,7 @@ bool PythonQtShell_QAbstractItemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -654,7 +654,7 @@ bool PythonQtShell_QAbstractItemModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -687,7 +687,7 @@ void PythonQtShell_QAbstractItemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -709,7 +709,7 @@ Qt::ItemFlags PythonQtShell_QAbstractItemModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -742,7 +742,7 @@ bool PythonQtShell_QAbstractItemModel::hasChildren(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -775,7 +775,7 @@ QVariant PythonQtShell_QAbstractItemModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -808,7 +808,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -841,7 +841,7 @@ bool PythonQtShell_QAbstractItemModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -874,7 +874,7 @@ bool PythonQtShell_QAbstractItemModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -907,7 +907,7 @@ QMap PythonQtShell_QAbstractItemModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -940,7 +940,7 @@ QList PythonQtShell_QAbstractItemModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -973,7 +973,7 @@ QMimeData* PythonQtShell_QAbstractItemModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -1006,7 +1006,7 @@ QStringList PythonQtShell_QAbstractItemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1039,7 +1039,7 @@ bool PythonQtShell_QAbstractItemModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -1072,7 +1072,7 @@ bool PythonQtShell_QAbstractItemModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -1105,7 +1105,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::parent(const QModelIndex& child0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1138,7 +1138,7 @@ bool PythonQtShell_QAbstractItemModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1171,7 +1171,7 @@ bool PythonQtShell_QAbstractItemModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1204,7 +1204,7 @@ void PythonQtShell_QAbstractItemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1226,7 +1226,7 @@ QHash PythonQtShell_QAbstractItemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -1259,7 +1259,7 @@ int PythonQtShell_QAbstractItemModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1292,7 +1292,7 @@ bool PythonQtShell_QAbstractItemModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1325,7 +1325,7 @@ bool PythonQtShell_QAbstractItemModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1358,7 +1358,7 @@ bool PythonQtShell_QAbstractItemModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1391,7 +1391,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1424,7 +1424,7 @@ void PythonQtShell_QAbstractItemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1446,7 +1446,7 @@ QSize PythonQtShell_QAbstractItemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1479,7 +1479,7 @@ bool PythonQtShell_QAbstractItemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1512,7 +1512,7 @@ Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1545,7 +1545,7 @@ Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1578,7 +1578,7 @@ void PythonQtShell_QAbstractItemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1923,7 +1923,7 @@ QModelIndex PythonQtShell_QAbstractListModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1956,7 +1956,7 @@ bool PythonQtShell_QAbstractListModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1989,7 +1989,7 @@ bool PythonQtShell_QAbstractListModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2022,7 +2022,7 @@ void PythonQtShell_QAbstractListModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2044,7 +2044,7 @@ void PythonQtShell_QAbstractListModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2066,7 +2066,7 @@ QVariant PythonQtShell_QAbstractListModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2099,7 +2099,7 @@ bool PythonQtShell_QAbstractListModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2132,7 +2132,7 @@ bool PythonQtShell_QAbstractListModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2165,7 +2165,7 @@ bool PythonQtShell_QAbstractListModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2198,7 +2198,7 @@ void PythonQtShell_QAbstractListModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2220,7 +2220,7 @@ Qt::ItemFlags PythonQtShell_QAbstractListModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2253,7 +2253,7 @@ QVariant PythonQtShell_QAbstractListModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2286,7 +2286,7 @@ QModelIndex PythonQtShell_QAbstractListModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2319,7 +2319,7 @@ bool PythonQtShell_QAbstractListModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2352,7 +2352,7 @@ bool PythonQtShell_QAbstractListModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2385,7 +2385,7 @@ QMap PythonQtShell_QAbstractListModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2418,7 +2418,7 @@ QList PythonQtShell_QAbstractListModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2451,7 +2451,7 @@ QMimeData* PythonQtShell_QAbstractListModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2484,7 +2484,7 @@ QStringList PythonQtShell_QAbstractListModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2517,7 +2517,7 @@ bool PythonQtShell_QAbstractListModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2550,7 +2550,7 @@ bool PythonQtShell_QAbstractListModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2583,7 +2583,7 @@ bool PythonQtShell_QAbstractListModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2616,7 +2616,7 @@ bool PythonQtShell_QAbstractListModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2649,7 +2649,7 @@ void PythonQtShell_QAbstractListModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2671,7 +2671,7 @@ QHash PythonQtShell_QAbstractListModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2704,7 +2704,7 @@ int PythonQtShell_QAbstractListModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2737,7 +2737,7 @@ bool PythonQtShell_QAbstractListModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2770,7 +2770,7 @@ bool PythonQtShell_QAbstractListModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2803,7 +2803,7 @@ bool PythonQtShell_QAbstractListModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2836,7 +2836,7 @@ QModelIndex PythonQtShell_QAbstractListModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2869,7 +2869,7 @@ void PythonQtShell_QAbstractListModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2891,7 +2891,7 @@ QSize PythonQtShell_QAbstractListModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2924,7 +2924,7 @@ bool PythonQtShell_QAbstractListModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2957,7 +2957,7 @@ Qt::DropActions PythonQtShell_QAbstractListModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2990,7 +2990,7 @@ Qt::DropActions PythonQtShell_QAbstractListModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3023,7 +3023,7 @@ void PythonQtShell_QAbstractListModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3068,7 +3068,7 @@ void PythonQtShell_QAbstractState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3090,7 +3090,7 @@ void PythonQtShell_QAbstractState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3112,7 +3112,7 @@ bool PythonQtShell_QAbstractState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3145,7 +3145,7 @@ bool PythonQtShell_QAbstractState::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3178,7 +3178,7 @@ void PythonQtShell_QAbstractState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3200,7 +3200,7 @@ void PythonQtShell_QAbstractState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3222,7 +3222,7 @@ void PythonQtShell_QAbstractState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3292,7 +3292,7 @@ void PythonQtShell_QAbstractTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3314,7 +3314,7 @@ void PythonQtShell_QAbstractTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3336,7 +3336,7 @@ bool PythonQtShell_QAbstractTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3369,7 +3369,7 @@ bool PythonQtShell_QAbstractTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3402,7 +3402,7 @@ bool PythonQtShell_QAbstractTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3435,7 +3435,7 @@ void PythonQtShell_QAbstractTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3457,7 +3457,7 @@ void PythonQtShell_QAbstractTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3567,7 +3567,7 @@ void PythonQtShell_QAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3589,7 +3589,7 @@ void PythonQtShell_QAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3611,7 +3611,7 @@ int PythonQtShell_QAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3644,7 +3644,7 @@ bool PythonQtShell_QAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3677,7 +3677,7 @@ bool PythonQtShell_QAnimationGroup::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3710,7 +3710,7 @@ void PythonQtShell_QAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3732,7 +3732,7 @@ void PythonQtShell_QAnimationGroup::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3754,7 +3754,7 @@ void PythonQtShell_QAnimationGroup::updateDirection(QAbstractAnimation::Directio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3776,7 +3776,7 @@ void PythonQtShell_QAnimationGroup::updateState(QAbstractAnimation::State newSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3957,7 +3957,7 @@ bool PythonQtShell_QBuffer::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3990,7 +3990,7 @@ qint64 PythonQtShell_QBuffer::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4023,7 +4023,7 @@ qint64 PythonQtShell_QBuffer::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4056,7 +4056,7 @@ bool PythonQtShell_QBuffer::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4089,7 +4089,7 @@ void PythonQtShell_QBuffer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4111,7 +4111,7 @@ void PythonQtShell_QBuffer::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4133,7 +4133,7 @@ void PythonQtShell_QBuffer::connectNotify(const QMetaMethod& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -4155,7 +4155,7 @@ void PythonQtShell_QBuffer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4177,7 +4177,7 @@ void PythonQtShell_QBuffer::disconnectNotify(const QMetaMethod& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -4199,7 +4199,7 @@ bool PythonQtShell_QBuffer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4232,7 +4232,7 @@ bool PythonQtShell_QBuffer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4265,7 +4265,7 @@ bool PythonQtShell_QBuffer::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4298,7 +4298,7 @@ bool PythonQtShell_QBuffer::open(QIODevice::OpenMode openMode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4331,7 +4331,7 @@ qint64 PythonQtShell_QBuffer::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4364,7 +4364,7 @@ qint64 PythonQtShell_QBuffer::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4397,7 +4397,7 @@ qint64 PythonQtShell_QBuffer::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4430,7 +4430,7 @@ bool PythonQtShell_QBuffer::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4463,7 +4463,7 @@ bool PythonQtShell_QBuffer::seek(qint64 off0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4496,7 +4496,7 @@ qint64 PythonQtShell_QBuffer::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4529,7 +4529,7 @@ void PythonQtShell_QBuffer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4551,7 +4551,7 @@ bool PythonQtShell_QBuffer::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4584,7 +4584,7 @@ bool PythonQtShell_QBuffer::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4617,7 +4617,7 @@ qint64 PythonQtShell_QBuffer::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core1.cpp b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core1.cpp index 3709dad88..187936627 100644 --- a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +++ b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core1.cpp @@ -705,7 +705,7 @@ void PythonQtShell_QEventLoop::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -727,7 +727,7 @@ void PythonQtShell_QEventLoop::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -749,7 +749,7 @@ bool PythonQtShell_QEventLoop::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -782,7 +782,7 @@ bool PythonQtShell_QEventLoop::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -815,7 +815,7 @@ void PythonQtShell_QEventLoop::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -890,7 +890,7 @@ void PythonQtShell_QEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -912,7 +912,7 @@ void PythonQtShell_QEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -934,7 +934,7 @@ bool PythonQtShell_QEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -967,7 +967,7 @@ bool PythonQtShell_QEventTransition::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1000,7 +1000,7 @@ bool PythonQtShell_QEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1033,7 +1033,7 @@ void PythonQtShell_QEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1055,7 +1055,7 @@ void PythonQtShell_QEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1124,7 +1124,7 @@ QStringList PythonQtShell_QFactoryInterface::keys() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keys"); + static PyObject* name = PyUnicode_FromString("keys"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1172,7 +1172,7 @@ bool PythonQtShell_QFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1205,7 +1205,7 @@ qint64 PythonQtShell_QFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1238,7 +1238,7 @@ qint64 PythonQtShell_QFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1271,7 +1271,7 @@ bool PythonQtShell_QFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1304,7 +1304,7 @@ void PythonQtShell_QFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1326,7 +1326,7 @@ void PythonQtShell_QFile::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1348,7 +1348,7 @@ void PythonQtShell_QFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1370,7 +1370,7 @@ bool PythonQtShell_QFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1403,7 +1403,7 @@ bool PythonQtShell_QFile::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1436,7 +1436,7 @@ QString PythonQtShell_QFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1469,7 +1469,7 @@ bool PythonQtShell_QFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1502,7 +1502,7 @@ bool PythonQtShell_QFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1535,7 +1535,7 @@ QFileDevice::Permissions PythonQtShell_QFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -1568,7 +1568,7 @@ qint64 PythonQtShell_QFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1601,7 +1601,7 @@ qint64 PythonQtShell_QFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1634,7 +1634,7 @@ qint64 PythonQtShell_QFile::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1667,7 +1667,7 @@ bool PythonQtShell_QFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1700,7 +1700,7 @@ bool PythonQtShell_QFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1733,7 +1733,7 @@ bool PythonQtShell_QFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1766,7 +1766,7 @@ bool PythonQtShell_QFile::setPermissions(QFileDevice::Permissions permissionSp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -1799,7 +1799,7 @@ qint64 PythonQtShell_QFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1832,7 +1832,7 @@ void PythonQtShell_QFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1854,7 +1854,7 @@ bool PythonQtShell_QFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1887,7 +1887,7 @@ bool PythonQtShell_QFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1920,7 +1920,7 @@ qint64 PythonQtShell_QFile::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2093,7 +2093,7 @@ bool PythonQtShell_QFileDevice::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2126,7 +2126,7 @@ qint64 PythonQtShell_QFileDevice::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2159,7 +2159,7 @@ qint64 PythonQtShell_QFileDevice::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2192,7 +2192,7 @@ bool PythonQtShell_QFileDevice::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2225,7 +2225,7 @@ void PythonQtShell_QFileDevice::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2247,7 +2247,7 @@ void PythonQtShell_QFileDevice::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2269,7 +2269,7 @@ void PythonQtShell_QFileDevice::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2291,7 +2291,7 @@ bool PythonQtShell_QFileDevice::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2324,7 +2324,7 @@ bool PythonQtShell_QFileDevice::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2357,7 +2357,7 @@ QString PythonQtShell_QFileDevice::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2390,7 +2390,7 @@ bool PythonQtShell_QFileDevice::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2423,7 +2423,7 @@ bool PythonQtShell_QFileDevice::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2456,7 +2456,7 @@ QFileDevice::Permissions PythonQtShell_QFileDevice::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -2489,7 +2489,7 @@ qint64 PythonQtShell_QFileDevice::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2522,7 +2522,7 @@ qint64 PythonQtShell_QFileDevice::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2555,7 +2555,7 @@ qint64 PythonQtShell_QFileDevice::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2588,7 +2588,7 @@ bool PythonQtShell_QFileDevice::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2621,7 +2621,7 @@ bool PythonQtShell_QFileDevice::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2654,7 +2654,7 @@ bool PythonQtShell_QFileDevice::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2687,7 +2687,7 @@ bool PythonQtShell_QFileDevice::setPermissions(QFileDevice::Permissions permis if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -2720,7 +2720,7 @@ qint64 PythonQtShell_QFileDevice::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2753,7 +2753,7 @@ void PythonQtShell_QFileDevice::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2775,7 +2775,7 @@ bool PythonQtShell_QFileDevice::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2808,7 +2808,7 @@ bool PythonQtShell_QFileDevice::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2841,7 +2841,7 @@ qint64 PythonQtShell_QFileDevice::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3250,7 +3250,7 @@ void PythonQtShell_QFileSelector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3272,7 +3272,7 @@ void PythonQtShell_QFileSelector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3294,7 +3294,7 @@ bool PythonQtShell_QFileSelector::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3327,7 +3327,7 @@ bool PythonQtShell_QFileSelector::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3360,7 +3360,7 @@ void PythonQtShell_QFileSelector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3430,7 +3430,7 @@ void PythonQtShell_QFileSystemWatcher::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3452,7 +3452,7 @@ void PythonQtShell_QFileSystemWatcher::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3474,7 +3474,7 @@ bool PythonQtShell_QFileSystemWatcher::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3507,7 +3507,7 @@ bool PythonQtShell_QFileSystemWatcher::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3540,7 +3540,7 @@ void PythonQtShell_QFileSystemWatcher::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3619,7 +3619,7 @@ void PythonQtShell_QFinalState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3641,7 +3641,7 @@ void PythonQtShell_QFinalState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3663,7 +3663,7 @@ bool PythonQtShell_QFinalState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3696,7 +3696,7 @@ bool PythonQtShell_QFinalState::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3729,7 +3729,7 @@ void PythonQtShell_QFinalState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3751,7 +3751,7 @@ void PythonQtShell_QFinalState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3773,7 +3773,7 @@ void PythonQtShell_QFinalState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3818,7 +3818,7 @@ void PythonQtShell_QHistoryState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3840,7 +3840,7 @@ void PythonQtShell_QHistoryState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3862,7 +3862,7 @@ bool PythonQtShell_QHistoryState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3895,7 +3895,7 @@ bool PythonQtShell_QHistoryState::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3928,7 +3928,7 @@ void PythonQtShell_QHistoryState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3950,7 +3950,7 @@ void PythonQtShell_QHistoryState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3972,7 +3972,7 @@ void PythonQtShell_QHistoryState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4051,7 +4051,7 @@ bool PythonQtShell_QIODevice::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4084,7 +4084,7 @@ qint64 PythonQtShell_QIODevice::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4117,7 +4117,7 @@ qint64 PythonQtShell_QIODevice::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4150,7 +4150,7 @@ bool PythonQtShell_QIODevice::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4183,7 +4183,7 @@ void PythonQtShell_QIODevice::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4205,7 +4205,7 @@ void PythonQtShell_QIODevice::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4227,7 +4227,7 @@ void PythonQtShell_QIODevice::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4249,7 +4249,7 @@ bool PythonQtShell_QIODevice::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4282,7 +4282,7 @@ bool PythonQtShell_QIODevice::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4315,7 +4315,7 @@ bool PythonQtShell_QIODevice::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4348,7 +4348,7 @@ bool PythonQtShell_QIODevice::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4381,7 +4381,7 @@ qint64 PythonQtShell_QIODevice::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4414,7 +4414,7 @@ qint64 PythonQtShell_QIODevice::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4447,7 +4447,7 @@ qint64 PythonQtShell_QIODevice::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4480,7 +4480,7 @@ bool PythonQtShell_QIODevice::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4513,7 +4513,7 @@ bool PythonQtShell_QIODevice::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4546,7 +4546,7 @@ qint64 PythonQtShell_QIODevice::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4579,7 +4579,7 @@ void PythonQtShell_QIODevice::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4601,7 +4601,7 @@ bool PythonQtShell_QIODevice::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4634,7 +4634,7 @@ bool PythonQtShell_QIODevice::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4667,7 +4667,7 @@ qint64 PythonQtShell_QIODevice::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -4952,7 +4952,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -4985,7 +4985,7 @@ bool PythonQtShell_QIdentityProxyModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5018,7 +5018,7 @@ bool PythonQtShell_QIdentityProxyModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5051,7 +5051,7 @@ void PythonQtShell_QIdentityProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5073,7 +5073,7 @@ int PythonQtShell_QIdentityProxyModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5106,7 +5106,7 @@ void PythonQtShell_QIdentityProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5128,7 +5128,7 @@ QVariant PythonQtShell_QIdentityProxyModel::data(const QModelIndex& proxyIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5161,7 +5161,7 @@ bool PythonQtShell_QIdentityProxyModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5194,7 +5194,7 @@ bool PythonQtShell_QIdentityProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5227,7 +5227,7 @@ bool PythonQtShell_QIdentityProxyModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5260,7 +5260,7 @@ void PythonQtShell_QIdentityProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5282,7 +5282,7 @@ Qt::ItemFlags PythonQtShell_QIdentityProxyModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -5315,7 +5315,7 @@ bool PythonQtShell_QIdentityProxyModel::hasChildren(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5348,7 +5348,7 @@ QVariant PythonQtShell_QIdentityProxyModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -5381,7 +5381,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -5414,7 +5414,7 @@ bool PythonQtShell_QIdentityProxyModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5447,7 +5447,7 @@ bool PythonQtShell_QIdentityProxyModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5480,7 +5480,7 @@ QMap PythonQtShell_QIdentityProxyModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -5513,7 +5513,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::mapFromSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5546,7 +5546,7 @@ QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -5579,7 +5579,7 @@ QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionToSource(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -5612,7 +5612,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5645,7 +5645,7 @@ QList PythonQtShell_QIdentityProxyModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -5678,7 +5678,7 @@ QMimeData* PythonQtShell_QIdentityProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -5711,7 +5711,7 @@ QStringList PythonQtShell_QIdentityProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5744,7 +5744,7 @@ bool PythonQtShell_QIdentityProxyModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5777,7 +5777,7 @@ bool PythonQtShell_QIdentityProxyModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5810,7 +5810,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::parent(const QModelIndex& child if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5843,7 +5843,7 @@ bool PythonQtShell_QIdentityProxyModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5876,7 +5876,7 @@ bool PythonQtShell_QIdentityProxyModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5909,7 +5909,7 @@ void PythonQtShell_QIdentityProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5931,7 +5931,7 @@ QHash PythonQtShell_QIdentityProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -5964,7 +5964,7 @@ int PythonQtShell_QIdentityProxyModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5997,7 +5997,7 @@ bool PythonQtShell_QIdentityProxyModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -6030,7 +6030,7 @@ bool PythonQtShell_QIdentityProxyModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -6063,7 +6063,7 @@ bool PythonQtShell_QIdentityProxyModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -6096,7 +6096,7 @@ void PythonQtShell_QIdentityProxyModel::setSourceModel(QAbstractItemModel* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -6118,7 +6118,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6151,7 +6151,7 @@ void PythonQtShell_QIdentityProxyModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -6173,7 +6173,7 @@ QSize PythonQtShell_QIdentityProxyModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -6206,7 +6206,7 @@ bool PythonQtShell_QIdentityProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6239,7 +6239,7 @@ Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -6272,7 +6272,7 @@ Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -6305,7 +6305,7 @@ void PythonQtShell_QIdentityProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6996,7 +6996,7 @@ void PythonQtShell_QLibrary::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7018,7 +7018,7 @@ void PythonQtShell_QLibrary::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7040,7 +7040,7 @@ bool PythonQtShell_QLibrary::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7073,7 +7073,7 @@ bool PythonQtShell_QLibrary::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7106,7 +7106,7 @@ void PythonQtShell_QLibrary::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core2.cpp b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core2.cpp index 4565599a9..35c047306 100644 --- a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +++ b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core2.cpp @@ -623,7 +623,7 @@ void PythonQtShell_QMimeData::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -645,7 +645,7 @@ void PythonQtShell_QMimeData::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -667,7 +667,7 @@ bool PythonQtShell_QMimeData::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -700,7 +700,7 @@ bool PythonQtShell_QMimeData::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -733,7 +733,7 @@ QStringList PythonQtShell_QMimeData::formats() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("formats"); + static PyObject* name = PyUnicode_FromString("formats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -766,7 +766,7 @@ bool PythonQtShell_QMimeData::hasFormat(const QString& mimetype0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFormat"); + static PyObject* name = PyUnicode_FromString("hasFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -799,7 +799,7 @@ QVariant PythonQtShell_QMimeData::retrieveData(const QString& mimetype0, QVari if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("retrieveData"); + static PyObject* name = PyUnicode_FromString("retrieveData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "QVariant::Type"}; @@ -832,7 +832,7 @@ void PythonQtShell_QMimeData::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1308,7 +1308,7 @@ void PythonQtShell_QObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1330,7 +1330,7 @@ void PythonQtShell_QObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1352,7 +1352,7 @@ bool PythonQtShell_QObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1385,7 +1385,7 @@ bool PythonQtShell_QObject::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1418,7 +1418,7 @@ void PythonQtShell_QObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1670,7 +1670,7 @@ void PythonQtShell_QParallelAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1692,7 +1692,7 @@ void PythonQtShell_QParallelAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1714,7 +1714,7 @@ int PythonQtShell_QParallelAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1747,7 +1747,7 @@ bool PythonQtShell_QParallelAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1780,7 +1780,7 @@ bool PythonQtShell_QParallelAnimationGroup::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1813,7 +1813,7 @@ void PythonQtShell_QParallelAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1835,7 +1835,7 @@ void PythonQtShell_QParallelAnimationGroup::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1857,7 +1857,7 @@ void PythonQtShell_QParallelAnimationGroup::updateDirection(QAbstractAnimation:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -1879,7 +1879,7 @@ void PythonQtShell_QParallelAnimationGroup::updateState(QAbstractAnimation::Stat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -1924,7 +1924,7 @@ void PythonQtShell_QPauseAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1946,7 +1946,7 @@ void PythonQtShell_QPauseAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1968,7 +1968,7 @@ int PythonQtShell_QPauseAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2001,7 +2001,7 @@ bool PythonQtShell_QPauseAnimation::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2034,7 +2034,7 @@ bool PythonQtShell_QPauseAnimation::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2067,7 +2067,7 @@ void PythonQtShell_QPauseAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2089,7 +2089,7 @@ void PythonQtShell_QPauseAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2111,7 +2111,7 @@ void PythonQtShell_QPauseAnimation::updateDirection(QAbstractAnimation::Directio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -2133,7 +2133,7 @@ void PythonQtShell_QPauseAnimation::updateState(QAbstractAnimation::State newSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2293,7 +2293,7 @@ bool PythonQtShell_QProcess::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2326,7 +2326,7 @@ qint64 PythonQtShell_QProcess::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2359,7 +2359,7 @@ qint64 PythonQtShell_QProcess::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2392,7 +2392,7 @@ bool PythonQtShell_QProcess::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2425,7 +2425,7 @@ void PythonQtShell_QProcess::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2447,7 +2447,7 @@ void PythonQtShell_QProcess::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2469,7 +2469,7 @@ void PythonQtShell_QProcess::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2491,7 +2491,7 @@ bool PythonQtShell_QProcess::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2524,7 +2524,7 @@ bool PythonQtShell_QProcess::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2557,7 +2557,7 @@ bool PythonQtShell_QProcess::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2590,7 +2590,7 @@ bool PythonQtShell_QProcess::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2623,7 +2623,7 @@ qint64 PythonQtShell_QProcess::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2656,7 +2656,7 @@ qint64 PythonQtShell_QProcess::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2689,7 +2689,7 @@ qint64 PythonQtShell_QProcess::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2722,7 +2722,7 @@ bool PythonQtShell_QProcess::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2755,7 +2755,7 @@ bool PythonQtShell_QProcess::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2788,7 +2788,7 @@ void PythonQtShell_QProcess::setupChildProcess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupChildProcess"); + static PyObject* name = PyUnicode_FromString("setupChildProcess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2810,7 +2810,7 @@ qint64 PythonQtShell_QProcess::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2843,7 +2843,7 @@ void PythonQtShell_QProcess::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2865,7 +2865,7 @@ bool PythonQtShell_QProcess::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2898,7 +2898,7 @@ bool PythonQtShell_QProcess::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2931,7 +2931,7 @@ qint64 PythonQtShell_QProcess::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3292,7 +3292,7 @@ void PythonQtShell_QPropertyAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3314,7 +3314,7 @@ void PythonQtShell_QPropertyAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3336,7 +3336,7 @@ int PythonQtShell_QPropertyAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3369,7 +3369,7 @@ bool PythonQtShell_QPropertyAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3402,7 +3402,7 @@ bool PythonQtShell_QPropertyAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3435,7 +3435,7 @@ QVariant PythonQtShell_QPropertyAnimation::interpolated(const QVariant& from0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -3468,7 +3468,7 @@ void PythonQtShell_QPropertyAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3490,7 +3490,7 @@ void PythonQtShell_QPropertyAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3512,7 +3512,7 @@ void PythonQtShell_QPropertyAnimation::updateCurrentValue(const QVariant& value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -3534,7 +3534,7 @@ void PythonQtShell_QPropertyAnimation::updateDirection(QAbstractAnimation::Direc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3556,7 +3556,7 @@ void PythonQtShell_QPropertyAnimation::updateState(QAbstractAnimation::State ne if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; diff --git a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core3.cpp b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core3.cpp index c5e81d11a..39cb91b48 100644 --- a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +++ b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core3.cpp @@ -48,7 +48,7 @@ void PythonQtShell_QRunnable::run() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -95,7 +95,7 @@ bool PythonQtShell_QSaveFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -128,7 +128,7 @@ qint64 PythonQtShell_QSaveFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -161,7 +161,7 @@ qint64 PythonQtShell_QSaveFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -194,7 +194,7 @@ bool PythonQtShell_QSaveFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -227,7 +227,7 @@ void PythonQtShell_QSaveFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -249,7 +249,7 @@ void PythonQtShell_QSaveFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -271,7 +271,7 @@ bool PythonQtShell_QSaveFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -304,7 +304,7 @@ bool PythonQtShell_QSaveFile::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -337,7 +337,7 @@ QString PythonQtShell_QSaveFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -370,7 +370,7 @@ bool PythonQtShell_QSaveFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -403,7 +403,7 @@ bool PythonQtShell_QSaveFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -436,7 +436,7 @@ QFileDevice::Permissions PythonQtShell_QSaveFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -469,7 +469,7 @@ qint64 PythonQtShell_QSaveFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -502,7 +502,7 @@ qint64 PythonQtShell_QSaveFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -535,7 +535,7 @@ qint64 PythonQtShell_QSaveFile::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -568,7 +568,7 @@ bool PythonQtShell_QSaveFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -601,7 +601,7 @@ bool PythonQtShell_QSaveFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -634,7 +634,7 @@ bool PythonQtShell_QSaveFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -667,7 +667,7 @@ bool PythonQtShell_QSaveFile::setPermissions(QFileDevice::Permissions permissi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -700,7 +700,7 @@ qint64 PythonQtShell_QSaveFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -733,7 +733,7 @@ void PythonQtShell_QSaveFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -755,7 +755,7 @@ bool PythonQtShell_QSaveFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -788,7 +788,7 @@ bool PythonQtShell_QSaveFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -821,7 +821,7 @@ qint64 PythonQtShell_QSaveFile::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -941,7 +941,7 @@ void PythonQtShell_QSequentialAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -963,7 +963,7 @@ void PythonQtShell_QSequentialAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -985,7 +985,7 @@ int PythonQtShell_QSequentialAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1018,7 +1018,7 @@ bool PythonQtShell_QSequentialAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1051,7 +1051,7 @@ bool PythonQtShell_QSequentialAnimationGroup::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1084,7 +1084,7 @@ void PythonQtShell_QSequentialAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1106,7 +1106,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1128,7 +1128,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateDirection(QAbstractAnimation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -1150,7 +1150,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateState(QAbstractAnimation::St if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -1210,7 +1210,7 @@ void PythonQtShell_QSettings::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1232,7 +1232,7 @@ void PythonQtShell_QSettings::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1254,7 +1254,7 @@ bool PythonQtShell_QSettings::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1287,7 +1287,7 @@ bool PythonQtShell_QSettings::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1320,7 +1320,7 @@ void PythonQtShell_QSettings::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1550,7 +1550,7 @@ void PythonQtShell_QSharedMemory::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1572,7 +1572,7 @@ void PythonQtShell_QSharedMemory::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1594,7 +1594,7 @@ bool PythonQtShell_QSharedMemory::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1627,7 +1627,7 @@ bool PythonQtShell_QSharedMemory::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1660,7 +1660,7 @@ void PythonQtShell_QSharedMemory::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1804,7 +1804,7 @@ void PythonQtShell_QSignalMapper::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1826,7 +1826,7 @@ void PythonQtShell_QSignalMapper::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1848,7 +1848,7 @@ bool PythonQtShell_QSignalMapper::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1881,7 +1881,7 @@ bool PythonQtShell_QSignalMapper::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1914,7 +1914,7 @@ void PythonQtShell_QSignalMapper::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2004,7 +2004,7 @@ void PythonQtShell_QSignalTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2026,7 +2026,7 @@ void PythonQtShell_QSignalTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2048,7 +2048,7 @@ bool PythonQtShell_QSignalTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2081,7 +2081,7 @@ bool PythonQtShell_QSignalTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2114,7 +2114,7 @@ bool PythonQtShell_QSignalTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2147,7 +2147,7 @@ void PythonQtShell_QSignalTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2169,7 +2169,7 @@ void PythonQtShell_QSignalTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2238,7 +2238,7 @@ void PythonQtShell_QSocketNotifier::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2260,7 +2260,7 @@ void PythonQtShell_QSocketNotifier::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2282,7 +2282,7 @@ bool PythonQtShell_QSocketNotifier::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2315,7 +2315,7 @@ bool PythonQtShell_QSocketNotifier::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2348,7 +2348,7 @@ void PythonQtShell_QSocketNotifier::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2455,7 +2455,7 @@ void PythonQtShell_QState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2477,7 +2477,7 @@ void PythonQtShell_QState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2499,7 +2499,7 @@ bool PythonQtShell_QState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2532,7 +2532,7 @@ bool PythonQtShell_QState::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2565,7 +2565,7 @@ void PythonQtShell_QState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2587,7 +2587,7 @@ void PythonQtShell_QState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2609,7 +2609,7 @@ void PythonQtShell_QState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2718,7 +2718,7 @@ void PythonQtShell_QStateMachine::beginMicrostep(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginMicrostep"); + static PyObject* name = PyUnicode_FromString("beginMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2740,7 +2740,7 @@ void PythonQtShell_QStateMachine::beginSelectTransitions(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginSelectTransitions"); + static PyObject* name = PyUnicode_FromString("beginSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2762,7 +2762,7 @@ void PythonQtShell_QStateMachine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2784,7 +2784,7 @@ void PythonQtShell_QStateMachine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2806,7 +2806,7 @@ void PythonQtShell_QStateMachine::endMicrostep(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endMicrostep"); + static PyObject* name = PyUnicode_FromString("endMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2828,7 +2828,7 @@ void PythonQtShell_QStateMachine::endSelectTransitions(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endSelectTransitions"); + static PyObject* name = PyUnicode_FromString("endSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2850,7 +2850,7 @@ bool PythonQtShell_QStateMachine::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2883,7 +2883,7 @@ bool PythonQtShell_QStateMachine::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2916,7 +2916,7 @@ void PythonQtShell_QStateMachine::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2938,7 +2938,7 @@ void PythonQtShell_QStateMachine::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2960,7 +2960,7 @@ void PythonQtShell_QStateMachine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3476,7 +3476,7 @@ bool PythonQtShell_QTemporaryFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3509,7 +3509,7 @@ qint64 PythonQtShell_QTemporaryFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3542,7 +3542,7 @@ qint64 PythonQtShell_QTemporaryFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3575,7 +3575,7 @@ bool PythonQtShell_QTemporaryFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3608,7 +3608,7 @@ void PythonQtShell_QTemporaryFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3630,7 +3630,7 @@ void PythonQtShell_QTemporaryFile::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3652,7 +3652,7 @@ void PythonQtShell_QTemporaryFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3674,7 +3674,7 @@ bool PythonQtShell_QTemporaryFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3707,7 +3707,7 @@ bool PythonQtShell_QTemporaryFile::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3740,7 +3740,7 @@ QString PythonQtShell_QTemporaryFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("uniqueFilename"); + static PyObject* name = PyUnicode_FromString("uniqueFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3773,7 +3773,7 @@ bool PythonQtShell_QTemporaryFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3806,7 +3806,7 @@ bool PythonQtShell_QTemporaryFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3839,7 +3839,7 @@ QFileDevice::Permissions PythonQtShell_QTemporaryFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -3872,7 +3872,7 @@ qint64 PythonQtShell_QTemporaryFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3905,7 +3905,7 @@ qint64 PythonQtShell_QTemporaryFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3938,7 +3938,7 @@ qint64 PythonQtShell_QTemporaryFile::readLineData(char* data0, qint64 maxlen1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3971,7 +3971,7 @@ bool PythonQtShell_QTemporaryFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4004,7 +4004,7 @@ bool PythonQtShell_QTemporaryFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4037,7 +4037,7 @@ bool PythonQtShell_QTemporaryFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4070,7 +4070,7 @@ bool PythonQtShell_QTemporaryFile::setPermissions(QFileDevice::Permissions per if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -4103,7 +4103,7 @@ qint64 PythonQtShell_QTemporaryFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4136,7 +4136,7 @@ void PythonQtShell_QTemporaryFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4158,7 +4158,7 @@ bool PythonQtShell_QTemporaryFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4191,7 +4191,7 @@ bool PythonQtShell_QTemporaryFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4224,7 +4224,7 @@ qint64 PythonQtShell_QTemporaryFile::writeData(const char* data0, qint64 len1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -4416,7 +4416,7 @@ QList PythonQtShell_QTextCodec::aliases() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aliases"); + static PyObject* name = PyUnicode_FromString("aliases"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4449,7 +4449,7 @@ QByteArray PythonQtShell_QTextCodec::convertFromUnicode(const QChar* in0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("convertFromUnicode"); + static PyObject* name = PyUnicode_FromString("convertFromUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QChar*" , "int" , "QTextCodec::ConverterState*"}; @@ -4482,7 +4482,7 @@ QString PythonQtShell_QTextCodec::convertToUnicode(const char* in0, int lengt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("convertToUnicode"); + static PyObject* name = PyUnicode_FromString("convertToUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "int" , "QTextCodec::ConverterState*"}; @@ -4515,7 +4515,7 @@ int PythonQtShell_QTextCodec::mibEnum() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mibEnum"); + static PyObject* name = PyUnicode_FromString("mibEnum"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4548,7 +4548,7 @@ QByteArray PythonQtShell_QTextCodec::name() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -5014,7 +5014,7 @@ void PythonQtShell_QThread::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5036,7 +5036,7 @@ void PythonQtShell_QThread::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5058,7 +5058,7 @@ bool PythonQtShell_QThread::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5091,7 +5091,7 @@ bool PythonQtShell_QThread::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5124,7 +5124,7 @@ void PythonQtShell_QThread::run() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5146,7 +5146,7 @@ void PythonQtShell_QThread::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5311,7 +5311,7 @@ void PythonQtShell_QThreadPool::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5333,7 +5333,7 @@ void PythonQtShell_QThreadPool::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5355,7 +5355,7 @@ bool PythonQtShell_QThreadPool::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5388,7 +5388,7 @@ bool PythonQtShell_QThreadPool::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5421,7 +5421,7 @@ void PythonQtShell_QThreadPool::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5551,7 +5551,7 @@ void PythonQtShell_QTimeLine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5573,7 +5573,7 @@ void PythonQtShell_QTimeLine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5595,7 +5595,7 @@ bool PythonQtShell_QTimeLine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5628,7 +5628,7 @@ bool PythonQtShell_QTimeLine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5661,7 +5661,7 @@ void PythonQtShell_QTimeLine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5683,7 +5683,7 @@ qreal PythonQtShell_QTimeLine::valueForTime(int msec0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueForTime"); + static PyObject* name = PyUnicode_FromString("valueForTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal" , "int"}; diff --git a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core4.cpp b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core4.cpp index e66f92b13..9ed540b9b 100644 --- a/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core4.cpp +++ b/generated_cpp_515/com_trolltech_qt_core/com_trolltech_qt_core4.cpp @@ -34,7 +34,7 @@ void PythonQtShell_QTimer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -56,7 +56,7 @@ void PythonQtShell_QTimer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -78,7 +78,7 @@ bool PythonQtShell_QTimer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -111,7 +111,7 @@ bool PythonQtShell_QTimer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -144,7 +144,7 @@ void PythonQtShell_QTimer::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -259,7 +259,7 @@ void PythonQtShell_QTranslator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -281,7 +281,7 @@ void PythonQtShell_QTranslator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -303,7 +303,7 @@ bool PythonQtShell_QTranslator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -336,7 +336,7 @@ bool PythonQtShell_QTranslator::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -369,7 +369,7 @@ bool PythonQtShell_QTranslator::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -402,7 +402,7 @@ void PythonQtShell_QTranslator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -424,7 +424,7 @@ QString PythonQtShell_QTranslator::translate(const char* context0, const char* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("translate"); + static PyObject* name = PyUnicode_FromString("translate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "const char*" , "const char*" , "int"}; @@ -787,7 +787,7 @@ void PythonQtShell_QVariantAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -809,7 +809,7 @@ void PythonQtShell_QVariantAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -831,7 +831,7 @@ int PythonQtShell_QVariantAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -864,7 +864,7 @@ bool PythonQtShell_QVariantAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -897,7 +897,7 @@ bool PythonQtShell_QVariantAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -930,7 +930,7 @@ QVariant PythonQtShell_QVariantAnimation::interpolated(const QVariant& from0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -963,7 +963,7 @@ void PythonQtShell_QVariantAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -985,7 +985,7 @@ void PythonQtShell_QVariantAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1007,7 +1007,7 @@ void PythonQtShell_QVariantAnimation::updateCurrentValue(const QVariant& value0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1029,7 +1029,7 @@ void PythonQtShell_QVariantAnimation::updateDirection(QAbstractAnimation::Direct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -1051,7 +1051,7 @@ void PythonQtShell_QVariantAnimation::updateState(QAbstractAnimation::State new if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -1233,7 +1233,7 @@ QString PythonQtShell_QXmlStreamEntityResolver::resolveEntity(const QString& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "const QString&"}; @@ -1266,7 +1266,7 @@ QString PythonQtShell_QXmlStreamEntityResolver::resolveUndeclaredEntity(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveUndeclaredEntity"); + static PyObject* name = PyUnicode_FromString("resolveUndeclaredEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp index c0b8ca0cc..4448976a5 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp @@ -109,7 +109,7 @@ void PythonQtShell_QAbstractButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -131,7 +131,7 @@ void PythonQtShell_QAbstractButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -153,7 +153,7 @@ void PythonQtShell_QAbstractButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -175,7 +175,7 @@ void PythonQtShell_QAbstractButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -197,7 +197,7 @@ void PythonQtShell_QAbstractButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -219,7 +219,7 @@ void PythonQtShell_QAbstractButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -241,7 +241,7 @@ void PythonQtShell_QAbstractButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -263,7 +263,7 @@ int PythonQtShell_QAbstractButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -296,7 +296,7 @@ void PythonQtShell_QAbstractButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -318,7 +318,7 @@ void PythonQtShell_QAbstractButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -340,7 +340,7 @@ void PythonQtShell_QAbstractButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -362,7 +362,7 @@ void PythonQtShell_QAbstractButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -384,7 +384,7 @@ void PythonQtShell_QAbstractButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -406,7 +406,7 @@ bool PythonQtShell_QAbstractButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -439,7 +439,7 @@ bool PythonQtShell_QAbstractButton::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -472,7 +472,7 @@ void PythonQtShell_QAbstractButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -494,7 +494,7 @@ bool PythonQtShell_QAbstractButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -527,7 +527,7 @@ void PythonQtShell_QAbstractButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -549,7 +549,7 @@ bool PythonQtShell_QAbstractButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -582,7 +582,7 @@ int PythonQtShell_QAbstractButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -615,7 +615,7 @@ void PythonQtShell_QAbstractButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -637,7 +637,7 @@ bool PythonQtShell_QAbstractButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -670,7 +670,7 @@ void PythonQtShell_QAbstractButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -692,7 +692,7 @@ void PythonQtShell_QAbstractButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -714,7 +714,7 @@ QVariant PythonQtShell_QAbstractButton::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -747,7 +747,7 @@ void PythonQtShell_QAbstractButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -769,7 +769,7 @@ void PythonQtShell_QAbstractButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -791,7 +791,7 @@ void PythonQtShell_QAbstractButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -813,7 +813,7 @@ int PythonQtShell_QAbstractButton::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -846,7 +846,7 @@ QSize PythonQtShell_QAbstractButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -879,7 +879,7 @@ void PythonQtShell_QAbstractButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -901,7 +901,7 @@ void PythonQtShell_QAbstractButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -923,7 +923,7 @@ void PythonQtShell_QAbstractButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -945,7 +945,7 @@ void PythonQtShell_QAbstractButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -967,7 +967,7 @@ void PythonQtShell_QAbstractButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -989,7 +989,7 @@ bool PythonQtShell_QAbstractButton::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1022,7 +1022,7 @@ void PythonQtShell_QAbstractButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1044,7 +1044,7 @@ QPaintEngine* PythonQtShell_QAbstractButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1077,7 +1077,7 @@ void PythonQtShell_QAbstractButton::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1099,7 +1099,7 @@ QPaintDevice* PythonQtShell_QAbstractButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1132,7 +1132,7 @@ void PythonQtShell_QAbstractButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1154,7 +1154,7 @@ void PythonQtShell_QAbstractButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1176,7 +1176,7 @@ QPainter* PythonQtShell_QAbstractButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1209,7 +1209,7 @@ void PythonQtShell_QAbstractButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1231,7 +1231,7 @@ QSize PythonQtShell_QAbstractButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1264,7 +1264,7 @@ void PythonQtShell_QAbstractButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1286,7 +1286,7 @@ void PythonQtShell_QAbstractButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1308,7 +1308,7 @@ void PythonQtShell_QAbstractButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1473,7 +1473,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1495,7 +1495,7 @@ QRectF PythonQtShell_QAbstractGraphicsShapeItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1528,7 +1528,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithItem(const QGraphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1561,7 +1561,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithPath(const QPainterP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1594,7 +1594,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::contains(const QPointF& point0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1627,7 +1627,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::contextMenuEvent(QGraphicsSceneCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1649,7 +1649,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragEnterEvent(QGraphicsSceneDrag if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1671,7 +1671,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragLeaveEvent(QGraphicsSceneDrag if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1693,7 +1693,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragMoveEvent(QGraphicsSceneDragD if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1715,7 +1715,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dropEvent(QGraphicsSceneDragDropE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1737,7 +1737,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::extension(const QVariant& v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1770,7 +1770,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::focusInEvent(QFocusEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1792,7 +1792,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::focusOutEvent(QFocusEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1814,7 +1814,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverEnterEvent(QGraphicsSceneHov if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1836,7 +1836,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverLeaveEvent(QGraphicsSceneHov if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1858,7 +1858,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverMoveEvent(QGraphicsSceneHove if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1880,7 +1880,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::inputMethodEvent(QInputMethodEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1902,7 +1902,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::inputMethodQuery(Qt::InputMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1935,7 +1935,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1968,7 +1968,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::itemChange(QGraphicsItem::Gr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -2004,7 +2004,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2026,7 +2026,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::keyReleaseEvent(QKeyEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2048,7 +2048,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseDoubleClickEvent(QGraphicsSc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2070,7 +2070,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseMoveEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2092,7 +2092,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mousePressEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2114,7 +2114,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseReleaseEvent(QGraphicsSceneM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2136,7 +2136,7 @@ QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2169,7 +2169,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::paint(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2191,7 +2191,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2224,7 +2224,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEventFilter(QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2257,7 +2257,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::setExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2279,7 +2279,7 @@ QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2312,7 +2312,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::supportsExtension(QGraphicsItem: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2345,7 +2345,7 @@ int PythonQtShell_QAbstractGraphicsShapeItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2378,7 +2378,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::wheelEvent(QGraphicsSceneWheelEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2430,7 +2430,7 @@ void PythonQtShell_QAbstractItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2452,7 +2452,7 @@ QWidget* PythonQtShell_QAbstractItemDelegate::createEditor(QWidget* parent0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2485,7 +2485,7 @@ void PythonQtShell_QAbstractItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2507,7 +2507,7 @@ void PythonQtShell_QAbstractItemDelegate::destroyEditor(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2529,7 +2529,7 @@ bool PythonQtShell_QAbstractItemDelegate::editorEvent(QEvent* event0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2562,7 +2562,7 @@ bool PythonQtShell_QAbstractItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2595,7 +2595,7 @@ bool PythonQtShell_QAbstractItemDelegate::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2628,7 +2628,7 @@ bool PythonQtShell_QAbstractItemDelegate::helpEvent(QHelpEvent* event0, QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2661,7 +2661,7 @@ void PythonQtShell_QAbstractItemDelegate::paint(QPainter* painter0, const QStyl if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2683,7 +2683,7 @@ QVector PythonQtShell_QAbstractItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -2716,7 +2716,7 @@ void PythonQtShell_QAbstractItemDelegate::setEditorData(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2738,7 +2738,7 @@ void PythonQtShell_QAbstractItemDelegate::setModelData(QWidget* editor0, QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -2760,7 +2760,7 @@ QSize PythonQtShell_QAbstractItemDelegate::sizeHint(const QStyleOptionViewItem& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2793,7 +2793,7 @@ void PythonQtShell_QAbstractItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2815,7 +2815,7 @@ void PythonQtShell_QAbstractItemDelegate::updateEditorGeometry(QWidget* editor0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2910,7 +2910,7 @@ void PythonQtShell_QAbstractItemView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2932,7 +2932,7 @@ void PythonQtShell_QAbstractItemView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2954,7 +2954,7 @@ void PythonQtShell_QAbstractItemView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2976,7 +2976,7 @@ void PythonQtShell_QAbstractItemView::closeEditor(QWidget* editor0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -2998,7 +2998,7 @@ void PythonQtShell_QAbstractItemView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3020,7 +3020,7 @@ void PythonQtShell_QAbstractItemView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3042,7 +3042,7 @@ void PythonQtShell_QAbstractItemView::contextMenuEvent(QContextMenuEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3064,7 +3064,7 @@ void PythonQtShell_QAbstractItemView::currentChanged(const QModelIndex& current if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3086,7 +3086,7 @@ void PythonQtShell_QAbstractItemView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3108,7 +3108,7 @@ void PythonQtShell_QAbstractItemView::dataChanged(const QModelIndex& topLeft0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -3130,7 +3130,7 @@ int PythonQtShell_QAbstractItemView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3163,7 +3163,7 @@ void PythonQtShell_QAbstractItemView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3185,7 +3185,7 @@ void PythonQtShell_QAbstractItemView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3207,7 +3207,7 @@ void PythonQtShell_QAbstractItemView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3229,7 +3229,7 @@ void PythonQtShell_QAbstractItemView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3251,7 +3251,7 @@ void PythonQtShell_QAbstractItemView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3273,7 +3273,7 @@ bool PythonQtShell_QAbstractItemView::edit(const QModelIndex& index0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -3306,7 +3306,7 @@ void PythonQtShell_QAbstractItemView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3328,7 +3328,7 @@ void PythonQtShell_QAbstractItemView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3350,7 +3350,7 @@ bool PythonQtShell_QAbstractItemView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3383,7 +3383,7 @@ bool PythonQtShell_QAbstractItemView::eventFilter(QObject* object0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3416,7 +3416,7 @@ void PythonQtShell_QAbstractItemView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3438,7 +3438,7 @@ bool PythonQtShell_QAbstractItemView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3471,7 +3471,7 @@ void PythonQtShell_QAbstractItemView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3493,7 +3493,7 @@ bool PythonQtShell_QAbstractItemView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3526,7 +3526,7 @@ int PythonQtShell_QAbstractItemView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3559,7 +3559,7 @@ void PythonQtShell_QAbstractItemView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3581,7 +3581,7 @@ int PythonQtShell_QAbstractItemView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3614,7 +3614,7 @@ void PythonQtShell_QAbstractItemView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3636,7 +3636,7 @@ void PythonQtShell_QAbstractItemView::horizontalScrollbarValueChanged(int value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3658,7 +3658,7 @@ QModelIndex PythonQtShell_QAbstractItemView::indexAt(const QPoint& point0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3691,7 +3691,7 @@ void PythonQtShell_QAbstractItemView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3713,7 +3713,7 @@ void PythonQtShell_QAbstractItemView::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3735,7 +3735,7 @@ QVariant PythonQtShell_QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3768,7 +3768,7 @@ bool PythonQtShell_QAbstractItemView::isIndexHidden(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3801,7 +3801,7 @@ void PythonQtShell_QAbstractItemView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3823,7 +3823,7 @@ void PythonQtShell_QAbstractItemView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3845,7 +3845,7 @@ void PythonQtShell_QAbstractItemView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3867,7 +3867,7 @@ void PythonQtShell_QAbstractItemView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3889,7 +3889,7 @@ int PythonQtShell_QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3922,7 +3922,7 @@ QSize PythonQtShell_QAbstractItemView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3955,7 +3955,7 @@ void PythonQtShell_QAbstractItemView::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3977,7 +3977,7 @@ void PythonQtShell_QAbstractItemView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3999,7 +3999,7 @@ void PythonQtShell_QAbstractItemView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4021,7 +4021,7 @@ void PythonQtShell_QAbstractItemView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4043,7 +4043,7 @@ QModelIndex PythonQtShell_QAbstractItemView::moveCursor(QAbstractItemView::Curs if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -4076,7 +4076,7 @@ void PythonQtShell_QAbstractItemView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4098,7 +4098,7 @@ bool PythonQtShell_QAbstractItemView::nativeEvent(const QByteArray& eventType0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4131,7 +4131,7 @@ QPaintEngine* PythonQtShell_QAbstractItemView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4164,7 +4164,7 @@ void PythonQtShell_QAbstractItemView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4186,7 +4186,7 @@ QPaintDevice* PythonQtShell_QAbstractItemView::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4219,7 +4219,7 @@ void PythonQtShell_QAbstractItemView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4241,7 +4241,7 @@ void PythonQtShell_QAbstractItemView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4263,7 +4263,7 @@ void PythonQtShell_QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4285,7 +4285,7 @@ void PythonQtShell_QAbstractItemView::rowsInserted(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4307,7 +4307,7 @@ void PythonQtShell_QAbstractItemView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4329,7 +4329,7 @@ void PythonQtShell_QAbstractItemView::scrollTo(const QModelIndex& index0, QAbst if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -4351,7 +4351,7 @@ void PythonQtShell_QAbstractItemView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4373,7 +4373,7 @@ QList PythonQtShell_QAbstractItemView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4406,7 +4406,7 @@ void PythonQtShell_QAbstractItemView::selectionChanged(const QItemSelection& se if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -4428,7 +4428,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QAbstractItemView::selectionC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -4461,7 +4461,7 @@ void PythonQtShell_QAbstractItemView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -4483,7 +4483,7 @@ void PythonQtShell_QAbstractItemView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4505,7 +4505,7 @@ void PythonQtShell_QAbstractItemView::setSelection(const QRect& rect0, QItemSel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4527,7 +4527,7 @@ void PythonQtShell_QAbstractItemView::setSelectionModel(QItemSelectionModel* se if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4549,7 +4549,7 @@ void PythonQtShell_QAbstractItemView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4571,7 +4571,7 @@ void PythonQtShell_QAbstractItemView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4593,7 +4593,7 @@ QPainter* PythonQtShell_QAbstractItemView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4626,7 +4626,7 @@ void PythonQtShell_QAbstractItemView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4648,7 +4648,7 @@ QSize PythonQtShell_QAbstractItemView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4681,7 +4681,7 @@ int PythonQtShell_QAbstractItemView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4714,7 +4714,7 @@ int PythonQtShell_QAbstractItemView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4747,7 +4747,7 @@ void PythonQtShell_QAbstractItemView::startDrag(Qt::DropActions supportedAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4769,7 +4769,7 @@ void PythonQtShell_QAbstractItemView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4791,7 +4791,7 @@ void PythonQtShell_QAbstractItemView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4813,7 +4813,7 @@ void PythonQtShell_QAbstractItemView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4835,7 +4835,7 @@ void PythonQtShell_QAbstractItemView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4857,7 +4857,7 @@ void PythonQtShell_QAbstractItemView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4879,7 +4879,7 @@ int PythonQtShell_QAbstractItemView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4912,7 +4912,7 @@ void PythonQtShell_QAbstractItemView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4934,7 +4934,7 @@ void PythonQtShell_QAbstractItemView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4956,7 +4956,7 @@ QStyleOptionViewItem PythonQtShell_QAbstractItemView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4989,7 +4989,7 @@ bool PythonQtShell_QAbstractItemView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5022,7 +5022,7 @@ QSize PythonQtShell_QAbstractItemView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5055,7 +5055,7 @@ QRect PythonQtShell_QAbstractItemView::visualRect(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -5088,7 +5088,7 @@ QRegion PythonQtShell_QAbstractItemView::visualRegionForSelection(const QItemSe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -5121,7 +5121,7 @@ void PythonQtShell_QAbstractItemView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5571,7 +5571,7 @@ void PythonQtShell_QAbstractPrintDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5593,7 +5593,7 @@ void PythonQtShell_QAbstractPrintDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5615,7 +5615,7 @@ void PythonQtShell_QAbstractPrintDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5637,7 +5637,7 @@ void PythonQtShell_QAbstractPrintDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5659,7 +5659,7 @@ void PythonQtShell_QAbstractPrintDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5681,7 +5681,7 @@ void PythonQtShell_QAbstractPrintDialog::contextMenuEvent(QContextMenuEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5703,7 +5703,7 @@ void PythonQtShell_QAbstractPrintDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5725,7 +5725,7 @@ int PythonQtShell_QAbstractPrintDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5758,7 +5758,7 @@ void PythonQtShell_QAbstractPrintDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5780,7 +5780,7 @@ void PythonQtShell_QAbstractPrintDialog::dragEnterEvent(QDragEnterEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5802,7 +5802,7 @@ void PythonQtShell_QAbstractPrintDialog::dragLeaveEvent(QDragLeaveEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5824,7 +5824,7 @@ void PythonQtShell_QAbstractPrintDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5846,7 +5846,7 @@ void PythonQtShell_QAbstractPrintDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5868,7 +5868,7 @@ void PythonQtShell_QAbstractPrintDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5890,7 +5890,7 @@ bool PythonQtShell_QAbstractPrintDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5923,7 +5923,7 @@ bool PythonQtShell_QAbstractPrintDialog::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5956,7 +5956,7 @@ int PythonQtShell_QAbstractPrintDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5989,7 +5989,7 @@ void PythonQtShell_QAbstractPrintDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6011,7 +6011,7 @@ bool PythonQtShell_QAbstractPrintDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6044,7 +6044,7 @@ void PythonQtShell_QAbstractPrintDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6066,7 +6066,7 @@ bool PythonQtShell_QAbstractPrintDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6099,7 +6099,7 @@ int PythonQtShell_QAbstractPrintDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6132,7 +6132,7 @@ void PythonQtShell_QAbstractPrintDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6154,7 +6154,7 @@ void PythonQtShell_QAbstractPrintDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6176,7 +6176,7 @@ void PythonQtShell_QAbstractPrintDialog::inputMethodEvent(QInputMethodEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6198,7 +6198,7 @@ QVariant PythonQtShell_QAbstractPrintDialog::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6231,7 +6231,7 @@ void PythonQtShell_QAbstractPrintDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6253,7 +6253,7 @@ void PythonQtShell_QAbstractPrintDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6275,7 +6275,7 @@ void PythonQtShell_QAbstractPrintDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6297,7 +6297,7 @@ int PythonQtShell_QAbstractPrintDialog::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6330,7 +6330,7 @@ QSize PythonQtShell_QAbstractPrintDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6363,7 +6363,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseDoubleClickEvent(QMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6385,7 +6385,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6407,7 +6407,7 @@ void PythonQtShell_QAbstractPrintDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6429,7 +6429,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6451,7 +6451,7 @@ void PythonQtShell_QAbstractPrintDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6473,7 +6473,7 @@ bool PythonQtShell_QAbstractPrintDialog::nativeEvent(const QByteArray& eventTy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6506,7 +6506,7 @@ void PythonQtShell_QAbstractPrintDialog::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6528,7 +6528,7 @@ QPaintEngine* PythonQtShell_QAbstractPrintDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6561,7 +6561,7 @@ void PythonQtShell_QAbstractPrintDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6583,7 +6583,7 @@ QPaintDevice* PythonQtShell_QAbstractPrintDialog::redirected(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6616,7 +6616,7 @@ void PythonQtShell_QAbstractPrintDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6638,7 +6638,7 @@ void PythonQtShell_QAbstractPrintDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6660,7 +6660,7 @@ void PythonQtShell_QAbstractPrintDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6682,7 +6682,7 @@ QPainter* PythonQtShell_QAbstractPrintDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6715,7 +6715,7 @@ void PythonQtShell_QAbstractPrintDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6737,7 +6737,7 @@ QSize PythonQtShell_QAbstractPrintDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6770,7 +6770,7 @@ void PythonQtShell_QAbstractPrintDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6792,7 +6792,7 @@ void PythonQtShell_QAbstractPrintDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6814,7 +6814,7 @@ void PythonQtShell_QAbstractPrintDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6929,7 +6929,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6962,7 +6962,7 @@ bool PythonQtShell_QAbstractProxyModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6995,7 +6995,7 @@ bool PythonQtShell_QAbstractProxyModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7028,7 +7028,7 @@ void PythonQtShell_QAbstractProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7050,7 +7050,7 @@ int PythonQtShell_QAbstractProxyModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7083,7 +7083,7 @@ void PythonQtShell_QAbstractProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7105,7 +7105,7 @@ QVariant PythonQtShell_QAbstractProxyModel::data(const QModelIndex& proxyIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -7138,7 +7138,7 @@ bool PythonQtShell_QAbstractProxyModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7171,7 +7171,7 @@ bool PythonQtShell_QAbstractProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7204,7 +7204,7 @@ bool PythonQtShell_QAbstractProxyModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7237,7 +7237,7 @@ void PythonQtShell_QAbstractProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7259,7 +7259,7 @@ Qt::ItemFlags PythonQtShell_QAbstractProxyModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -7292,7 +7292,7 @@ bool PythonQtShell_QAbstractProxyModel::hasChildren(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7325,7 +7325,7 @@ QVariant PythonQtShell_QAbstractProxyModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -7358,7 +7358,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7391,7 +7391,7 @@ bool PythonQtShell_QAbstractProxyModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7424,7 +7424,7 @@ bool PythonQtShell_QAbstractProxyModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7457,7 +7457,7 @@ QMap PythonQtShell_QAbstractProxyModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -7490,7 +7490,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::mapFromSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7523,7 +7523,7 @@ QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -7556,7 +7556,7 @@ QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionToSource(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -7589,7 +7589,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7622,7 +7622,7 @@ QList PythonQtShell_QAbstractProxyModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -7655,7 +7655,7 @@ QMimeData* PythonQtShell_QAbstractProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -7688,7 +7688,7 @@ QStringList PythonQtShell_QAbstractProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7721,7 +7721,7 @@ bool PythonQtShell_QAbstractProxyModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7754,7 +7754,7 @@ bool PythonQtShell_QAbstractProxyModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7787,7 +7787,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::parent(const QModelIndex& child if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7820,7 +7820,7 @@ bool PythonQtShell_QAbstractProxyModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7853,7 +7853,7 @@ bool PythonQtShell_QAbstractProxyModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7886,7 +7886,7 @@ void PythonQtShell_QAbstractProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7908,7 +7908,7 @@ QHash PythonQtShell_QAbstractProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7941,7 +7941,7 @@ int PythonQtShell_QAbstractProxyModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7974,7 +7974,7 @@ bool PythonQtShell_QAbstractProxyModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -8007,7 +8007,7 @@ bool PythonQtShell_QAbstractProxyModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -8040,7 +8040,7 @@ bool PythonQtShell_QAbstractProxyModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -8073,7 +8073,7 @@ void PythonQtShell_QAbstractProxyModel::setSourceModel(QAbstractItemModel* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -8095,7 +8095,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8128,7 +8128,7 @@ void PythonQtShell_QAbstractProxyModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -8150,7 +8150,7 @@ QSize PythonQtShell_QAbstractProxyModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -8183,7 +8183,7 @@ bool PythonQtShell_QAbstractProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8216,7 +8216,7 @@ Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8249,7 +8249,7 @@ Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8282,7 +8282,7 @@ void PythonQtShell_QAbstractProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8357,7 +8357,7 @@ void PythonQtShell_QAbstractScrollArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8379,7 +8379,7 @@ void PythonQtShell_QAbstractScrollArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8401,7 +8401,7 @@ void PythonQtShell_QAbstractScrollArea::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8423,7 +8423,7 @@ void PythonQtShell_QAbstractScrollArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8445,7 +8445,7 @@ void PythonQtShell_QAbstractScrollArea::contextMenuEvent(QContextMenuEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8467,7 +8467,7 @@ void PythonQtShell_QAbstractScrollArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8489,7 +8489,7 @@ int PythonQtShell_QAbstractScrollArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8522,7 +8522,7 @@ void PythonQtShell_QAbstractScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8544,7 +8544,7 @@ void PythonQtShell_QAbstractScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8566,7 +8566,7 @@ void PythonQtShell_QAbstractScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8588,7 +8588,7 @@ void PythonQtShell_QAbstractScrollArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8610,7 +8610,7 @@ void PythonQtShell_QAbstractScrollArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8632,7 +8632,7 @@ bool PythonQtShell_QAbstractScrollArea::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8665,7 +8665,7 @@ bool PythonQtShell_QAbstractScrollArea::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8698,7 +8698,7 @@ void PythonQtShell_QAbstractScrollArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8720,7 +8720,7 @@ bool PythonQtShell_QAbstractScrollArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8753,7 +8753,7 @@ void PythonQtShell_QAbstractScrollArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8775,7 +8775,7 @@ bool PythonQtShell_QAbstractScrollArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8808,7 +8808,7 @@ int PythonQtShell_QAbstractScrollArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8841,7 +8841,7 @@ void PythonQtShell_QAbstractScrollArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8863,7 +8863,7 @@ void PythonQtShell_QAbstractScrollArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8885,7 +8885,7 @@ void PythonQtShell_QAbstractScrollArea::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8907,7 +8907,7 @@ QVariant PythonQtShell_QAbstractScrollArea::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8940,7 +8940,7 @@ void PythonQtShell_QAbstractScrollArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8962,7 +8962,7 @@ void PythonQtShell_QAbstractScrollArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8984,7 +8984,7 @@ void PythonQtShell_QAbstractScrollArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9006,7 +9006,7 @@ int PythonQtShell_QAbstractScrollArea::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9039,7 +9039,7 @@ QSize PythonQtShell_QAbstractScrollArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9072,7 +9072,7 @@ void PythonQtShell_QAbstractScrollArea::mouseDoubleClickEvent(QMouseEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9094,7 +9094,7 @@ void PythonQtShell_QAbstractScrollArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9116,7 +9116,7 @@ void PythonQtShell_QAbstractScrollArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9138,7 +9138,7 @@ void PythonQtShell_QAbstractScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9160,7 +9160,7 @@ void PythonQtShell_QAbstractScrollArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9182,7 +9182,7 @@ bool PythonQtShell_QAbstractScrollArea::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9215,7 +9215,7 @@ QPaintEngine* PythonQtShell_QAbstractScrollArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9248,7 +9248,7 @@ void PythonQtShell_QAbstractScrollArea::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9270,7 +9270,7 @@ QPaintDevice* PythonQtShell_QAbstractScrollArea::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9303,7 +9303,7 @@ void PythonQtShell_QAbstractScrollArea::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9325,7 +9325,7 @@ void PythonQtShell_QAbstractScrollArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9347,7 +9347,7 @@ void PythonQtShell_QAbstractScrollArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9369,7 +9369,7 @@ void PythonQtShell_QAbstractScrollArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9391,7 +9391,7 @@ QPainter* PythonQtShell_QAbstractScrollArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9424,7 +9424,7 @@ void PythonQtShell_QAbstractScrollArea::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9446,7 +9446,7 @@ QSize PythonQtShell_QAbstractScrollArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9479,7 +9479,7 @@ void PythonQtShell_QAbstractScrollArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9501,7 +9501,7 @@ void PythonQtShell_QAbstractScrollArea::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9523,7 +9523,7 @@ bool PythonQtShell_QAbstractScrollArea::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9556,7 +9556,7 @@ QSize PythonQtShell_QAbstractScrollArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9589,7 +9589,7 @@ void PythonQtShell_QAbstractScrollArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9759,7 +9759,7 @@ void PythonQtShell_QAbstractSlider::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9781,7 +9781,7 @@ void PythonQtShell_QAbstractSlider::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9803,7 +9803,7 @@ void PythonQtShell_QAbstractSlider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9825,7 +9825,7 @@ void PythonQtShell_QAbstractSlider::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9847,7 +9847,7 @@ void PythonQtShell_QAbstractSlider::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9869,7 +9869,7 @@ void PythonQtShell_QAbstractSlider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9891,7 +9891,7 @@ int PythonQtShell_QAbstractSlider::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9924,7 +9924,7 @@ void PythonQtShell_QAbstractSlider::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9946,7 +9946,7 @@ void PythonQtShell_QAbstractSlider::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9968,7 +9968,7 @@ void PythonQtShell_QAbstractSlider::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9990,7 +9990,7 @@ void PythonQtShell_QAbstractSlider::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10012,7 +10012,7 @@ void PythonQtShell_QAbstractSlider::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10034,7 +10034,7 @@ bool PythonQtShell_QAbstractSlider::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10067,7 +10067,7 @@ bool PythonQtShell_QAbstractSlider::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10100,7 +10100,7 @@ void PythonQtShell_QAbstractSlider::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10122,7 +10122,7 @@ bool PythonQtShell_QAbstractSlider::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10155,7 +10155,7 @@ void PythonQtShell_QAbstractSlider::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10177,7 +10177,7 @@ bool PythonQtShell_QAbstractSlider::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10210,7 +10210,7 @@ int PythonQtShell_QAbstractSlider::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10243,7 +10243,7 @@ void PythonQtShell_QAbstractSlider::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10265,7 +10265,7 @@ void PythonQtShell_QAbstractSlider::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10287,7 +10287,7 @@ void PythonQtShell_QAbstractSlider::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10309,7 +10309,7 @@ QVariant PythonQtShell_QAbstractSlider::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10342,7 +10342,7 @@ void PythonQtShell_QAbstractSlider::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10364,7 +10364,7 @@ void PythonQtShell_QAbstractSlider::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10386,7 +10386,7 @@ void PythonQtShell_QAbstractSlider::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10408,7 +10408,7 @@ int PythonQtShell_QAbstractSlider::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10441,7 +10441,7 @@ QSize PythonQtShell_QAbstractSlider::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10474,7 +10474,7 @@ void PythonQtShell_QAbstractSlider::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10496,7 +10496,7 @@ void PythonQtShell_QAbstractSlider::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10518,7 +10518,7 @@ void PythonQtShell_QAbstractSlider::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10540,7 +10540,7 @@ void PythonQtShell_QAbstractSlider::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10562,7 +10562,7 @@ void PythonQtShell_QAbstractSlider::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10584,7 +10584,7 @@ bool PythonQtShell_QAbstractSlider::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10617,7 +10617,7 @@ QPaintEngine* PythonQtShell_QAbstractSlider::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10650,7 +10650,7 @@ void PythonQtShell_QAbstractSlider::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10672,7 +10672,7 @@ QPaintDevice* PythonQtShell_QAbstractSlider::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10705,7 +10705,7 @@ void PythonQtShell_QAbstractSlider::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10727,7 +10727,7 @@ void PythonQtShell_QAbstractSlider::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10749,7 +10749,7 @@ QPainter* PythonQtShell_QAbstractSlider::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10782,7 +10782,7 @@ void PythonQtShell_QAbstractSlider::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10804,7 +10804,7 @@ QSize PythonQtShell_QAbstractSlider::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10837,7 +10837,7 @@ void PythonQtShell_QAbstractSlider::sliderChange(QAbstractSlider::SliderChange if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -10859,7 +10859,7 @@ void PythonQtShell_QAbstractSlider::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10881,7 +10881,7 @@ void PythonQtShell_QAbstractSlider::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10903,7 +10903,7 @@ void PythonQtShell_QAbstractSlider::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11068,7 +11068,7 @@ void PythonQtShell_QAbstractSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11090,7 +11090,7 @@ void PythonQtShell_QAbstractSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11112,7 +11112,7 @@ void PythonQtShell_QAbstractSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11134,7 +11134,7 @@ void PythonQtShell_QAbstractSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11156,7 +11156,7 @@ void PythonQtShell_QAbstractSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11178,7 +11178,7 @@ void PythonQtShell_QAbstractSpinBox::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11200,7 +11200,7 @@ void PythonQtShell_QAbstractSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11222,7 +11222,7 @@ int PythonQtShell_QAbstractSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11255,7 +11255,7 @@ void PythonQtShell_QAbstractSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11277,7 +11277,7 @@ void PythonQtShell_QAbstractSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11299,7 +11299,7 @@ void PythonQtShell_QAbstractSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11321,7 +11321,7 @@ void PythonQtShell_QAbstractSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11343,7 +11343,7 @@ void PythonQtShell_QAbstractSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11365,7 +11365,7 @@ bool PythonQtShell_QAbstractSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11398,7 +11398,7 @@ bool PythonQtShell_QAbstractSpinBox::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11431,7 +11431,7 @@ void PythonQtShell_QAbstractSpinBox::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11453,7 +11453,7 @@ void PythonQtShell_QAbstractSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11475,7 +11475,7 @@ bool PythonQtShell_QAbstractSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11508,7 +11508,7 @@ void PythonQtShell_QAbstractSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11530,7 +11530,7 @@ bool PythonQtShell_QAbstractSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11563,7 +11563,7 @@ int PythonQtShell_QAbstractSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11596,7 +11596,7 @@ void PythonQtShell_QAbstractSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11618,7 +11618,7 @@ void PythonQtShell_QAbstractSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11640,7 +11640,7 @@ void PythonQtShell_QAbstractSpinBox::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11662,7 +11662,7 @@ QVariant PythonQtShell_QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11695,7 +11695,7 @@ void PythonQtShell_QAbstractSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11717,7 +11717,7 @@ void PythonQtShell_QAbstractSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11739,7 +11739,7 @@ void PythonQtShell_QAbstractSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11761,7 +11761,7 @@ int PythonQtShell_QAbstractSpinBox::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11794,7 +11794,7 @@ QSize PythonQtShell_QAbstractSpinBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11827,7 +11827,7 @@ void PythonQtShell_QAbstractSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11849,7 +11849,7 @@ void PythonQtShell_QAbstractSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11871,7 +11871,7 @@ void PythonQtShell_QAbstractSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11893,7 +11893,7 @@ void PythonQtShell_QAbstractSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11915,7 +11915,7 @@ void PythonQtShell_QAbstractSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11937,7 +11937,7 @@ bool PythonQtShell_QAbstractSpinBox::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11970,7 +11970,7 @@ QPaintEngine* PythonQtShell_QAbstractSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12003,7 +12003,7 @@ void PythonQtShell_QAbstractSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12025,7 +12025,7 @@ QPaintDevice* PythonQtShell_QAbstractSpinBox::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12058,7 +12058,7 @@ void PythonQtShell_QAbstractSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12080,7 +12080,7 @@ void PythonQtShell_QAbstractSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12102,7 +12102,7 @@ QPainter* PythonQtShell_QAbstractSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12135,7 +12135,7 @@ void PythonQtShell_QAbstractSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12157,7 +12157,7 @@ QSize PythonQtShell_QAbstractSpinBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12190,7 +12190,7 @@ void PythonQtShell_QAbstractSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12212,7 +12212,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QAbstractSpinBox::stepEnabled() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -12245,7 +12245,7 @@ void PythonQtShell_QAbstractSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12267,7 +12267,7 @@ void PythonQtShell_QAbstractSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12289,7 +12289,7 @@ QValidator::State PythonQtShell_QAbstractSpinBox::validate(QString& input0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12322,7 +12322,7 @@ void PythonQtShell_QAbstractSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12527,7 +12527,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12560,7 +12560,7 @@ bool PythonQtShell_QAbstractTableModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12593,7 +12593,7 @@ bool PythonQtShell_QAbstractTableModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12626,7 +12626,7 @@ void PythonQtShell_QAbstractTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12648,7 +12648,7 @@ int PythonQtShell_QAbstractTableModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12681,7 +12681,7 @@ void PythonQtShell_QAbstractTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12703,7 +12703,7 @@ QVariant PythonQtShell_QAbstractTableModel::data(const QModelIndex& index0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -12736,7 +12736,7 @@ bool PythonQtShell_QAbstractTableModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12769,7 +12769,7 @@ bool PythonQtShell_QAbstractTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12802,7 +12802,7 @@ bool PythonQtShell_QAbstractTableModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12835,7 +12835,7 @@ void PythonQtShell_QAbstractTableModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12857,7 +12857,7 @@ Qt::ItemFlags PythonQtShell_QAbstractTableModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -12890,7 +12890,7 @@ QVariant PythonQtShell_QAbstractTableModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -12923,7 +12923,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12956,7 +12956,7 @@ bool PythonQtShell_QAbstractTableModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12989,7 +12989,7 @@ bool PythonQtShell_QAbstractTableModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13022,7 +13022,7 @@ QMap PythonQtShell_QAbstractTableModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -13055,7 +13055,7 @@ QList PythonQtShell_QAbstractTableModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -13088,7 +13088,7 @@ QMimeData* PythonQtShell_QAbstractTableModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -13121,7 +13121,7 @@ QStringList PythonQtShell_QAbstractTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13154,7 +13154,7 @@ bool PythonQtShell_QAbstractTableModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13187,7 +13187,7 @@ bool PythonQtShell_QAbstractTableModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13220,7 +13220,7 @@ bool PythonQtShell_QAbstractTableModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13253,7 +13253,7 @@ bool PythonQtShell_QAbstractTableModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13286,7 +13286,7 @@ void PythonQtShell_QAbstractTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13308,7 +13308,7 @@ QHash PythonQtShell_QAbstractTableModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -13341,7 +13341,7 @@ int PythonQtShell_QAbstractTableModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13374,7 +13374,7 @@ bool PythonQtShell_QAbstractTableModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -13407,7 +13407,7 @@ bool PythonQtShell_QAbstractTableModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -13440,7 +13440,7 @@ bool PythonQtShell_QAbstractTableModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -13473,7 +13473,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13506,7 +13506,7 @@ void PythonQtShell_QAbstractTableModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -13528,7 +13528,7 @@ QSize PythonQtShell_QAbstractTableModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -13561,7 +13561,7 @@ bool PythonQtShell_QAbstractTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13594,7 +13594,7 @@ Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13627,7 +13627,7 @@ Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13660,7 +13660,7 @@ void PythonQtShell_QAbstractTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13705,7 +13705,7 @@ QRectF PythonQtShell_QAbstractTextDocumentLayout::blockBoundingRect(const QText if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -13738,7 +13738,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13760,7 +13760,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13782,7 +13782,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::documentChanged(int from0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -13804,7 +13804,7 @@ QSizeF PythonQtShell_QAbstractTextDocumentLayout::documentSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -13837,7 +13837,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::draw(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -13859,7 +13859,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::drawInlineObject(QPainter* pain if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -13881,7 +13881,7 @@ bool PythonQtShell_QAbstractTextDocumentLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13914,7 +13914,7 @@ bool PythonQtShell_QAbstractTextDocumentLayout::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13947,7 +13947,7 @@ QRectF PythonQtShell_QAbstractTextDocumentLayout::frameBoundingRect(QTextFrame* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -13980,7 +13980,7 @@ int PythonQtShell_QAbstractTextDocumentLayout::hitTest(const QPointF& point0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -14013,7 +14013,7 @@ int PythonQtShell_QAbstractTextDocumentLayout::pageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14046,7 +14046,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::positionInlineObject(QTextInline if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -14068,7 +14068,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::resizeInlineObject(QTextInlineOb if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -14090,7 +14090,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14297,7 +14297,7 @@ void PythonQtShell_QAction::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14319,7 +14319,7 @@ void PythonQtShell_QAction::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14341,7 +14341,7 @@ bool PythonQtShell_QAction::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14374,7 +14374,7 @@ bool PythonQtShell_QAction::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14407,7 +14407,7 @@ void PythonQtShell_QAction::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14728,7 +14728,7 @@ void PythonQtShell_QActionGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14750,7 +14750,7 @@ void PythonQtShell_QActionGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14772,7 +14772,7 @@ bool PythonQtShell_QActionGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14805,7 +14805,7 @@ bool PythonQtShell_QActionGroup::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14838,7 +14838,7 @@ void PythonQtShell_QActionGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15221,7 +15221,7 @@ void PythonQtShell_QBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -15243,7 +15243,7 @@ void PythonQtShell_QBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15265,7 +15265,7 @@ QSizePolicy::ControlTypes PythonQtShell_QBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -15298,7 +15298,7 @@ int PythonQtShell_QBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15331,7 +15331,7 @@ void PythonQtShell_QBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15353,7 +15353,7 @@ bool PythonQtShell_QBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15386,7 +15386,7 @@ bool PythonQtShell_QBoxLayout::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15419,7 +15419,7 @@ Qt::Orientations PythonQtShell_QBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -15452,7 +15452,7 @@ QRect PythonQtShell_QBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -15485,7 +15485,7 @@ bool PythonQtShell_QBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15518,7 +15518,7 @@ int PythonQtShell_QBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15551,7 +15551,7 @@ int PythonQtShell_QBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -15584,7 +15584,7 @@ void PythonQtShell_QBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15606,7 +15606,7 @@ bool PythonQtShell_QBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15639,7 +15639,7 @@ QLayoutItem* PythonQtShell_QBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15672,7 +15672,7 @@ QLayout* PythonQtShell_QBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -15705,7 +15705,7 @@ QSize PythonQtShell_QBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15738,7 +15738,7 @@ int PythonQtShell_QBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15771,7 +15771,7 @@ QSize PythonQtShell_QBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15804,7 +15804,7 @@ void PythonQtShell_QBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -15826,7 +15826,7 @@ QSize PythonQtShell_QBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15859,7 +15859,7 @@ QSpacerItem* PythonQtShell_QBoxLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -15892,7 +15892,7 @@ QLayoutItem* PythonQtShell_QBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15925,7 +15925,7 @@ void PythonQtShell_QBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15947,7 +15947,7 @@ QWidget* PythonQtShell_QBoxLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -16103,7 +16103,7 @@ void PythonQtShell_QButtonGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16125,7 +16125,7 @@ void PythonQtShell_QButtonGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16147,7 +16147,7 @@ bool PythonQtShell_QButtonGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16180,7 +16180,7 @@ bool PythonQtShell_QButtonGroup::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16213,7 +16213,7 @@ void PythonQtShell_QButtonGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16308,7 +16308,7 @@ void PythonQtShell_QCalendarWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16330,7 +16330,7 @@ void PythonQtShell_QCalendarWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16352,7 +16352,7 @@ void PythonQtShell_QCalendarWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16374,7 +16374,7 @@ void PythonQtShell_QCalendarWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16396,7 +16396,7 @@ void PythonQtShell_QCalendarWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16418,7 +16418,7 @@ void PythonQtShell_QCalendarWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16440,7 +16440,7 @@ int PythonQtShell_QCalendarWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16473,7 +16473,7 @@ void PythonQtShell_QCalendarWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16495,7 +16495,7 @@ void PythonQtShell_QCalendarWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16517,7 +16517,7 @@ void PythonQtShell_QCalendarWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16539,7 +16539,7 @@ void PythonQtShell_QCalendarWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16561,7 +16561,7 @@ void PythonQtShell_QCalendarWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16583,7 +16583,7 @@ bool PythonQtShell_QCalendarWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16616,7 +16616,7 @@ bool PythonQtShell_QCalendarWidget::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16649,7 +16649,7 @@ void PythonQtShell_QCalendarWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16671,7 +16671,7 @@ bool PythonQtShell_QCalendarWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16704,7 +16704,7 @@ void PythonQtShell_QCalendarWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16726,7 +16726,7 @@ bool PythonQtShell_QCalendarWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16759,7 +16759,7 @@ int PythonQtShell_QCalendarWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16792,7 +16792,7 @@ void PythonQtShell_QCalendarWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16814,7 +16814,7 @@ void PythonQtShell_QCalendarWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16836,7 +16836,7 @@ void PythonQtShell_QCalendarWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16858,7 +16858,7 @@ QVariant PythonQtShell_QCalendarWidget::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16891,7 +16891,7 @@ void PythonQtShell_QCalendarWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16913,7 +16913,7 @@ void PythonQtShell_QCalendarWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16935,7 +16935,7 @@ void PythonQtShell_QCalendarWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16957,7 +16957,7 @@ int PythonQtShell_QCalendarWidget::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16990,7 +16990,7 @@ QSize PythonQtShell_QCalendarWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17023,7 +17023,7 @@ void PythonQtShell_QCalendarWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17045,7 +17045,7 @@ void PythonQtShell_QCalendarWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17067,7 +17067,7 @@ void PythonQtShell_QCalendarWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17089,7 +17089,7 @@ void PythonQtShell_QCalendarWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17111,7 +17111,7 @@ void PythonQtShell_QCalendarWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17133,7 +17133,7 @@ bool PythonQtShell_QCalendarWidget::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17166,7 +17166,7 @@ void PythonQtShell_QCalendarWidget::paintCell(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintCell"); + static PyObject* name = PyUnicode_FromString("paintCell"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QDate&"}; @@ -17188,7 +17188,7 @@ QPaintEngine* PythonQtShell_QCalendarWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17221,7 +17221,7 @@ void PythonQtShell_QCalendarWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17243,7 +17243,7 @@ QPaintDevice* PythonQtShell_QCalendarWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17276,7 +17276,7 @@ void PythonQtShell_QCalendarWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17298,7 +17298,7 @@ void PythonQtShell_QCalendarWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -17320,7 +17320,7 @@ QPainter* PythonQtShell_QCalendarWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17353,7 +17353,7 @@ void PythonQtShell_QCalendarWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17375,7 +17375,7 @@ QSize PythonQtShell_QCalendarWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17408,7 +17408,7 @@ void PythonQtShell_QCalendarWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17430,7 +17430,7 @@ void PythonQtShell_QCalendarWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17452,7 +17452,7 @@ void PythonQtShell_QCalendarWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17662,7 +17662,7 @@ void PythonQtShell_QCheckBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17684,7 +17684,7 @@ void PythonQtShell_QCheckBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17706,7 +17706,7 @@ void PythonQtShell_QCheckBox::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17728,7 +17728,7 @@ void PythonQtShell_QCheckBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17750,7 +17750,7 @@ void PythonQtShell_QCheckBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17772,7 +17772,7 @@ void PythonQtShell_QCheckBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17794,7 +17794,7 @@ void PythonQtShell_QCheckBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17816,7 +17816,7 @@ int PythonQtShell_QCheckBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17849,7 +17849,7 @@ void PythonQtShell_QCheckBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17871,7 +17871,7 @@ void PythonQtShell_QCheckBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17893,7 +17893,7 @@ void PythonQtShell_QCheckBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17915,7 +17915,7 @@ void PythonQtShell_QCheckBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17937,7 +17937,7 @@ void PythonQtShell_QCheckBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17959,7 +17959,7 @@ bool PythonQtShell_QCheckBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17992,7 +17992,7 @@ bool PythonQtShell_QCheckBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -18025,7 +18025,7 @@ void PythonQtShell_QCheckBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18047,7 +18047,7 @@ bool PythonQtShell_QCheckBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18080,7 +18080,7 @@ void PythonQtShell_QCheckBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18102,7 +18102,7 @@ bool PythonQtShell_QCheckBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18135,7 +18135,7 @@ int PythonQtShell_QCheckBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18168,7 +18168,7 @@ void PythonQtShell_QCheckBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18190,7 +18190,7 @@ bool PythonQtShell_QCheckBox::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -18223,7 +18223,7 @@ void PythonQtShell_QCheckBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18245,7 +18245,7 @@ void PythonQtShell_QCheckBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18267,7 +18267,7 @@ QVariant PythonQtShell_QCheckBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18300,7 +18300,7 @@ void PythonQtShell_QCheckBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18322,7 +18322,7 @@ void PythonQtShell_QCheckBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18344,7 +18344,7 @@ void PythonQtShell_QCheckBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18366,7 +18366,7 @@ int PythonQtShell_QCheckBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18399,7 +18399,7 @@ QSize PythonQtShell_QCheckBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18432,7 +18432,7 @@ void PythonQtShell_QCheckBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18454,7 +18454,7 @@ void PythonQtShell_QCheckBox::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18476,7 +18476,7 @@ void PythonQtShell_QCheckBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18498,7 +18498,7 @@ void PythonQtShell_QCheckBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18520,7 +18520,7 @@ void PythonQtShell_QCheckBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18542,7 +18542,7 @@ bool PythonQtShell_QCheckBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18575,7 +18575,7 @@ void PythonQtShell_QCheckBox::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18597,7 +18597,7 @@ QPaintEngine* PythonQtShell_QCheckBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18630,7 +18630,7 @@ void PythonQtShell_QCheckBox::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18652,7 +18652,7 @@ QPaintDevice* PythonQtShell_QCheckBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18685,7 +18685,7 @@ void PythonQtShell_QCheckBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18707,7 +18707,7 @@ void PythonQtShell_QCheckBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -18729,7 +18729,7 @@ QPainter* PythonQtShell_QCheckBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18762,7 +18762,7 @@ void PythonQtShell_QCheckBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18784,7 +18784,7 @@ QSize PythonQtShell_QCheckBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18817,7 +18817,7 @@ void PythonQtShell_QCheckBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18839,7 +18839,7 @@ void PythonQtShell_QCheckBox::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18861,7 +18861,7 @@ void PythonQtShell_QCheckBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -19028,7 +19028,7 @@ void PythonQtShell_QColorDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19050,7 +19050,7 @@ void PythonQtShell_QColorDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -19072,7 +19072,7 @@ void PythonQtShell_QColorDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19094,7 +19094,7 @@ void PythonQtShell_QColorDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -19116,7 +19116,7 @@ void PythonQtShell_QColorDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -19138,7 +19138,7 @@ void PythonQtShell_QColorDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -19160,7 +19160,7 @@ void PythonQtShell_QColorDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19182,7 +19182,7 @@ int PythonQtShell_QColorDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19215,7 +19215,7 @@ void PythonQtShell_QColorDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19237,7 +19237,7 @@ void PythonQtShell_QColorDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -19259,7 +19259,7 @@ void PythonQtShell_QColorDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -19281,7 +19281,7 @@ void PythonQtShell_QColorDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -19303,7 +19303,7 @@ void PythonQtShell_QColorDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -19325,7 +19325,7 @@ void PythonQtShell_QColorDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19347,7 +19347,7 @@ bool PythonQtShell_QColorDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19380,7 +19380,7 @@ bool PythonQtShell_QColorDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -19413,7 +19413,7 @@ int PythonQtShell_QColorDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19446,7 +19446,7 @@ void PythonQtShell_QColorDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19468,7 +19468,7 @@ bool PythonQtShell_QColorDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19501,7 +19501,7 @@ void PythonQtShell_QColorDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19523,7 +19523,7 @@ bool PythonQtShell_QColorDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19556,7 +19556,7 @@ int PythonQtShell_QColorDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19589,7 +19589,7 @@ void PythonQtShell_QColorDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19611,7 +19611,7 @@ void PythonQtShell_QColorDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19633,7 +19633,7 @@ void PythonQtShell_QColorDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19655,7 +19655,7 @@ QVariant PythonQtShell_QColorDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19688,7 +19688,7 @@ void PythonQtShell_QColorDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19710,7 +19710,7 @@ void PythonQtShell_QColorDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19732,7 +19732,7 @@ void PythonQtShell_QColorDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19754,7 +19754,7 @@ int PythonQtShell_QColorDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19787,7 +19787,7 @@ QSize PythonQtShell_QColorDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19820,7 +19820,7 @@ void PythonQtShell_QColorDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19842,7 +19842,7 @@ void PythonQtShell_QColorDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19864,7 +19864,7 @@ void PythonQtShell_QColorDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19886,7 +19886,7 @@ void PythonQtShell_QColorDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19908,7 +19908,7 @@ void PythonQtShell_QColorDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19930,7 +19930,7 @@ bool PythonQtShell_QColorDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19963,7 +19963,7 @@ QPaintEngine* PythonQtShell_QColorDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19996,7 +19996,7 @@ void PythonQtShell_QColorDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -20018,7 +20018,7 @@ QPaintDevice* PythonQtShell_QColorDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -20051,7 +20051,7 @@ void PythonQtShell_QColorDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20073,7 +20073,7 @@ void PythonQtShell_QColorDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -20095,7 +20095,7 @@ void PythonQtShell_QColorDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -20117,7 +20117,7 @@ QPainter* PythonQtShell_QColorDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -20150,7 +20150,7 @@ void PythonQtShell_QColorDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -20172,7 +20172,7 @@ QSize PythonQtShell_QColorDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -20205,7 +20205,7 @@ void PythonQtShell_QColorDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -20227,7 +20227,7 @@ void PythonQtShell_QColorDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -20249,7 +20249,7 @@ void PythonQtShell_QColorDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -20526,7 +20526,7 @@ void PythonQtShell_QColumnView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -20548,7 +20548,7 @@ void PythonQtShell_QColumnView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20570,7 +20570,7 @@ void PythonQtShell_QColumnView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20592,7 +20592,7 @@ void PythonQtShell_QColumnView::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -20614,7 +20614,7 @@ void PythonQtShell_QColumnView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -20636,7 +20636,7 @@ void PythonQtShell_QColumnView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -20658,7 +20658,7 @@ void PythonQtShell_QColumnView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -20680,7 +20680,7 @@ QAbstractItemView* PythonQtShell_QColumnView::createColumn(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createColumn"); + static PyObject* name = PyUnicode_FromString("createColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractItemView*" , "const QModelIndex&"}; @@ -20713,7 +20713,7 @@ void PythonQtShell_QColumnView::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -20735,7 +20735,7 @@ void PythonQtShell_QColumnView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20757,7 +20757,7 @@ void PythonQtShell_QColumnView::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -20779,7 +20779,7 @@ int PythonQtShell_QColumnView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20812,7 +20812,7 @@ void PythonQtShell_QColumnView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20834,7 +20834,7 @@ void PythonQtShell_QColumnView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -20856,7 +20856,7 @@ void PythonQtShell_QColumnView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -20878,7 +20878,7 @@ void PythonQtShell_QColumnView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -20900,7 +20900,7 @@ void PythonQtShell_QColumnView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -20922,7 +20922,7 @@ bool PythonQtShell_QColumnView::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -20955,7 +20955,7 @@ void PythonQtShell_QColumnView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -20977,7 +20977,7 @@ void PythonQtShell_QColumnView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20999,7 +20999,7 @@ bool PythonQtShell_QColumnView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -21032,7 +21032,7 @@ bool PythonQtShell_QColumnView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -21065,7 +21065,7 @@ void PythonQtShell_QColumnView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -21087,7 +21087,7 @@ bool PythonQtShell_QColumnView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -21120,7 +21120,7 @@ void PythonQtShell_QColumnView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -21142,7 +21142,7 @@ bool PythonQtShell_QColumnView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -21175,7 +21175,7 @@ int PythonQtShell_QColumnView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -21208,7 +21208,7 @@ void PythonQtShell_QColumnView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -21230,7 +21230,7 @@ int PythonQtShell_QColumnView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -21263,7 +21263,7 @@ void PythonQtShell_QColumnView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -21285,7 +21285,7 @@ void PythonQtShell_QColumnView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -21307,7 +21307,7 @@ QModelIndex PythonQtShell_QColumnView::indexAt(const QPoint& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -21340,7 +21340,7 @@ void PythonQtShell_QColumnView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -21362,7 +21362,7 @@ void PythonQtShell_QColumnView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -21384,7 +21384,7 @@ QVariant PythonQtShell_QColumnView::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -21417,7 +21417,7 @@ bool PythonQtShell_QColumnView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -21450,7 +21450,7 @@ void PythonQtShell_QColumnView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21472,7 +21472,7 @@ void PythonQtShell_QColumnView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21494,7 +21494,7 @@ void PythonQtShell_QColumnView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -21516,7 +21516,7 @@ void PythonQtShell_QColumnView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21538,7 +21538,7 @@ int PythonQtShell_QColumnView::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -21571,7 +21571,7 @@ QSize PythonQtShell_QColumnView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -21604,7 +21604,7 @@ void PythonQtShell_QColumnView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21626,7 +21626,7 @@ void PythonQtShell_QColumnView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21648,7 +21648,7 @@ void PythonQtShell_QColumnView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21670,7 +21670,7 @@ void PythonQtShell_QColumnView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21692,7 +21692,7 @@ QModelIndex PythonQtShell_QColumnView::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -21725,7 +21725,7 @@ void PythonQtShell_QColumnView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -21747,7 +21747,7 @@ bool PythonQtShell_QColumnView::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -21780,7 +21780,7 @@ QPaintEngine* PythonQtShell_QColumnView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -21813,7 +21813,7 @@ void PythonQtShell_QColumnView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -21835,7 +21835,7 @@ QPaintDevice* PythonQtShell_QColumnView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -21868,7 +21868,7 @@ void PythonQtShell_QColumnView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21890,7 +21890,7 @@ void PythonQtShell_QColumnView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -21912,7 +21912,7 @@ void PythonQtShell_QColumnView::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -21934,7 +21934,7 @@ void PythonQtShell_QColumnView::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -21956,7 +21956,7 @@ void PythonQtShell_QColumnView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -21978,7 +21978,7 @@ void PythonQtShell_QColumnView::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -22000,7 +22000,7 @@ void PythonQtShell_QColumnView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22022,7 +22022,7 @@ QList PythonQtShell_QColumnView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -22055,7 +22055,7 @@ void PythonQtShell_QColumnView::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -22077,7 +22077,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QColumnView::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -22110,7 +22110,7 @@ void PythonQtShell_QColumnView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -22132,7 +22132,7 @@ void PythonQtShell_QColumnView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -22154,7 +22154,7 @@ void PythonQtShell_QColumnView::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -22176,7 +22176,7 @@ void PythonQtShell_QColumnView::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -22198,7 +22198,7 @@ void PythonQtShell_QColumnView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -22220,7 +22220,7 @@ void PythonQtShell_QColumnView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -22242,7 +22242,7 @@ QPainter* PythonQtShell_QColumnView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -22275,7 +22275,7 @@ void PythonQtShell_QColumnView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -22297,7 +22297,7 @@ QSize PythonQtShell_QColumnView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -22330,7 +22330,7 @@ int PythonQtShell_QColumnView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -22363,7 +22363,7 @@ int PythonQtShell_QColumnView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -22396,7 +22396,7 @@ void PythonQtShell_QColumnView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -22418,7 +22418,7 @@ void PythonQtShell_QColumnView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -22440,7 +22440,7 @@ void PythonQtShell_QColumnView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -22462,7 +22462,7 @@ void PythonQtShell_QColumnView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22484,7 +22484,7 @@ void PythonQtShell_QColumnView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22506,7 +22506,7 @@ void PythonQtShell_QColumnView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22528,7 +22528,7 @@ int PythonQtShell_QColumnView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -22561,7 +22561,7 @@ void PythonQtShell_QColumnView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -22583,7 +22583,7 @@ void PythonQtShell_QColumnView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -22605,7 +22605,7 @@ QStyleOptionViewItem PythonQtShell_QColumnView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -22638,7 +22638,7 @@ bool PythonQtShell_QColumnView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22671,7 +22671,7 @@ QSize PythonQtShell_QColumnView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -22704,7 +22704,7 @@ QRect PythonQtShell_QColumnView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -22737,7 +22737,7 @@ QRegion PythonQtShell_QColumnView::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -22770,7 +22770,7 @@ void PythonQtShell_QColumnView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -22855,7 +22855,7 @@ void PythonQtShell_QComboBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -22877,7 +22877,7 @@ void PythonQtShell_QComboBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22899,7 +22899,7 @@ void PythonQtShell_QComboBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -22921,7 +22921,7 @@ void PythonQtShell_QComboBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -22943,7 +22943,7 @@ void PythonQtShell_QComboBox::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -22965,7 +22965,7 @@ void PythonQtShell_QComboBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22987,7 +22987,7 @@ int PythonQtShell_QComboBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -23020,7 +23020,7 @@ void PythonQtShell_QComboBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -23042,7 +23042,7 @@ void PythonQtShell_QComboBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -23064,7 +23064,7 @@ void PythonQtShell_QComboBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -23086,7 +23086,7 @@ void PythonQtShell_QComboBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -23108,7 +23108,7 @@ void PythonQtShell_QComboBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -23130,7 +23130,7 @@ bool PythonQtShell_QComboBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -23163,7 +23163,7 @@ bool PythonQtShell_QComboBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -23196,7 +23196,7 @@ void PythonQtShell_QComboBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -23218,7 +23218,7 @@ bool PythonQtShell_QComboBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -23251,7 +23251,7 @@ void PythonQtShell_QComboBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -23273,7 +23273,7 @@ bool PythonQtShell_QComboBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -23306,7 +23306,7 @@ int PythonQtShell_QComboBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -23339,7 +23339,7 @@ void PythonQtShell_QComboBox::hideEvent(QHideEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -23361,7 +23361,7 @@ void PythonQtShell_QComboBox::hidePopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -23383,7 +23383,7 @@ void PythonQtShell_QComboBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -23405,7 +23405,7 @@ void PythonQtShell_QComboBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -23427,7 +23427,7 @@ QVariant PythonQtShell_QComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -23460,7 +23460,7 @@ void PythonQtShell_QComboBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -23482,7 +23482,7 @@ void PythonQtShell_QComboBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -23504,7 +23504,7 @@ void PythonQtShell_QComboBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -23526,7 +23526,7 @@ int PythonQtShell_QComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -23559,7 +23559,7 @@ QSize PythonQtShell_QComboBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -23592,7 +23592,7 @@ void PythonQtShell_QComboBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23614,7 +23614,7 @@ void PythonQtShell_QComboBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23636,7 +23636,7 @@ void PythonQtShell_QComboBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23658,7 +23658,7 @@ void PythonQtShell_QComboBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23680,7 +23680,7 @@ void PythonQtShell_QComboBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -23702,7 +23702,7 @@ bool PythonQtShell_QComboBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -23735,7 +23735,7 @@ QPaintEngine* PythonQtShell_QComboBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -23768,7 +23768,7 @@ void PythonQtShell_QComboBox::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -23790,7 +23790,7 @@ QPaintDevice* PythonQtShell_QComboBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -23823,7 +23823,7 @@ void PythonQtShell_QComboBox::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -23845,7 +23845,7 @@ void PythonQtShell_QComboBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -23867,7 +23867,7 @@ QPainter* PythonQtShell_QComboBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -23900,7 +23900,7 @@ void PythonQtShell_QComboBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -23922,7 +23922,7 @@ void PythonQtShell_QComboBox::showPopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -23944,7 +23944,7 @@ QSize PythonQtShell_QComboBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -23977,7 +23977,7 @@ void PythonQtShell_QComboBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -23999,7 +23999,7 @@ void PythonQtShell_QComboBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -24021,7 +24021,7 @@ void PythonQtShell_QComboBox::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp index 9cda3aa6b..626362bcb 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp @@ -78,7 +78,7 @@ void PythonQtShell_QCommandLinkButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -100,7 +100,7 @@ void PythonQtShell_QCommandLinkButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -122,7 +122,7 @@ void PythonQtShell_QCommandLinkButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -144,7 +144,7 @@ void PythonQtShell_QCommandLinkButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -166,7 +166,7 @@ void PythonQtShell_QCommandLinkButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -188,7 +188,7 @@ void PythonQtShell_QCommandLinkButton::contextMenuEvent(QContextMenuEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -210,7 +210,7 @@ void PythonQtShell_QCommandLinkButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -232,7 +232,7 @@ int PythonQtShell_QCommandLinkButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -265,7 +265,7 @@ void PythonQtShell_QCommandLinkButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -287,7 +287,7 @@ void PythonQtShell_QCommandLinkButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -309,7 +309,7 @@ void PythonQtShell_QCommandLinkButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -331,7 +331,7 @@ void PythonQtShell_QCommandLinkButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -353,7 +353,7 @@ void PythonQtShell_QCommandLinkButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -375,7 +375,7 @@ bool PythonQtShell_QCommandLinkButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -408,7 +408,7 @@ bool PythonQtShell_QCommandLinkButton::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -441,7 +441,7 @@ void PythonQtShell_QCommandLinkButton::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -463,7 +463,7 @@ bool PythonQtShell_QCommandLinkButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -496,7 +496,7 @@ void PythonQtShell_QCommandLinkButton::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -518,7 +518,7 @@ bool PythonQtShell_QCommandLinkButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -551,7 +551,7 @@ int PythonQtShell_QCommandLinkButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -584,7 +584,7 @@ void PythonQtShell_QCommandLinkButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -606,7 +606,7 @@ bool PythonQtShell_QCommandLinkButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -639,7 +639,7 @@ void PythonQtShell_QCommandLinkButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -661,7 +661,7 @@ void PythonQtShell_QCommandLinkButton::inputMethodEvent(QInputMethodEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -683,7 +683,7 @@ QVariant PythonQtShell_QCommandLinkButton::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -716,7 +716,7 @@ void PythonQtShell_QCommandLinkButton::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -738,7 +738,7 @@ void PythonQtShell_QCommandLinkButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -760,7 +760,7 @@ void PythonQtShell_QCommandLinkButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -782,7 +782,7 @@ int PythonQtShell_QCommandLinkButton::metric(QPaintDevice::PaintDeviceMetric a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -815,7 +815,7 @@ QSize PythonQtShell_QCommandLinkButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -848,7 +848,7 @@ void PythonQtShell_QCommandLinkButton::mouseDoubleClickEvent(QMouseEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -870,7 +870,7 @@ void PythonQtShell_QCommandLinkButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -892,7 +892,7 @@ void PythonQtShell_QCommandLinkButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -914,7 +914,7 @@ void PythonQtShell_QCommandLinkButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -936,7 +936,7 @@ void PythonQtShell_QCommandLinkButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -958,7 +958,7 @@ bool PythonQtShell_QCommandLinkButton::nativeEvent(const QByteArray& eventType if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -991,7 +991,7 @@ void PythonQtShell_QCommandLinkButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1013,7 +1013,7 @@ QPaintEngine* PythonQtShell_QCommandLinkButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1046,7 +1046,7 @@ void PythonQtShell_QCommandLinkButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1068,7 +1068,7 @@ QPaintDevice* PythonQtShell_QCommandLinkButton::redirected(QPoint* offset0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1101,7 +1101,7 @@ void PythonQtShell_QCommandLinkButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1123,7 +1123,7 @@ void PythonQtShell_QCommandLinkButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1145,7 +1145,7 @@ QPainter* PythonQtShell_QCommandLinkButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1178,7 +1178,7 @@ void PythonQtShell_QCommandLinkButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1200,7 +1200,7 @@ QSize PythonQtShell_QCommandLinkButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1233,7 +1233,7 @@ void PythonQtShell_QCommandLinkButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1255,7 +1255,7 @@ void PythonQtShell_QCommandLinkButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1277,7 +1277,7 @@ void PythonQtShell_QCommandLinkButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1340,7 +1340,7 @@ void PythonQtShell_QCommonStyle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1362,7 +1362,7 @@ void PythonQtShell_QCommonStyle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1384,7 +1384,7 @@ void PythonQtShell_QCommonStyle::drawComplexControl(QStyle::ComplexControl cc0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -1406,7 +1406,7 @@ void PythonQtShell_QCommonStyle::drawControl(QStyle::ControlElement element0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -1428,7 +1428,7 @@ void PythonQtShell_QCommonStyle::drawItemPixmap(QPainter* painter0, const QRect if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -1450,7 +1450,7 @@ void PythonQtShell_QCommonStyle::drawItemText(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -1472,7 +1472,7 @@ void PythonQtShell_QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -1494,7 +1494,7 @@ bool PythonQtShell_QCommonStyle::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1527,7 +1527,7 @@ bool PythonQtShell_QCommonStyle::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1560,7 +1560,7 @@ QPixmap PythonQtShell_QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -1593,7 +1593,7 @@ QStyle::SubControl PythonQtShell_QCommonStyle::hitTestComplexControl(QStyle::Co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -1626,7 +1626,7 @@ QRect PythonQtShell_QCommonStyle::itemPixmapRect(const QRect& r0, int flags1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -1659,7 +1659,7 @@ int PythonQtShell_QCommonStyle::layoutSpacing(QSizePolicy::ControlType control if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -1692,7 +1692,7 @@ int PythonQtShell_QCommonStyle::pixelMetric(QStyle::PixelMetric m0, const QSty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -1725,7 +1725,7 @@ void PythonQtShell_QCommonStyle::polish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -1747,7 +1747,7 @@ void PythonQtShell_QCommonStyle::polish(QPalette& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -1769,7 +1769,7 @@ void PythonQtShell_QCommonStyle::polish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1791,7 +1791,7 @@ QSize PythonQtShell_QCommonStyle::sizeFromContents(QStyle::ContentsType ct0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -1824,7 +1824,7 @@ QIcon PythonQtShell_QCommonStyle::standardIcon(QStyle::StandardPixmap standard if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -1857,7 +1857,7 @@ QPalette PythonQtShell_QCommonStyle::standardPalette() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -1890,7 +1890,7 @@ QPixmap PythonQtShell_QCommonStyle::standardPixmap(QStyle::StandardPixmap sp0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -1923,7 +1923,7 @@ int PythonQtShell_QCommonStyle::styleHint(QStyle::StyleHint sh0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -1956,7 +1956,7 @@ QRect PythonQtShell_QCommonStyle::subControlRect(QStyle::ComplexControl cc0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -1989,7 +1989,7 @@ QRect PythonQtShell_QCommonStyle::subElementRect(QStyle::SubElement r0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -2022,7 +2022,7 @@ void PythonQtShell_QCommonStyle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2044,7 +2044,7 @@ void PythonQtShell_QCommonStyle::unpolish(QApplication* application0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -2066,7 +2066,7 @@ void PythonQtShell_QCommonStyle::unpolish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2111,7 +2111,7 @@ void PythonQtShell_QCompleter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2133,7 +2133,7 @@ void PythonQtShell_QCompleter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2155,7 +2155,7 @@ bool PythonQtShell_QCompleter::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2188,7 +2188,7 @@ bool PythonQtShell_QCompleter::eventFilter(QObject* o0, QEvent* e1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2221,7 +2221,7 @@ QString PythonQtShell_QCompleter::pathFromIndex(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pathFromIndex"); + static PyObject* name = PyUnicode_FromString("pathFromIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QModelIndex&"}; @@ -2254,7 +2254,7 @@ QStringList PythonQtShell_QCompleter::splitPath(const QString& path0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("splitPath"); + static PyObject* name = PyUnicode_FromString("splitPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "const QString&"}; @@ -2287,7 +2287,7 @@ void PythonQtShell_QCompleter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2490,7 +2490,7 @@ QModelIndex PythonQtShell_QConcatenateTablesProxyModel::buddy(const QModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2523,7 +2523,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::canDropMimeData(const QMimeDat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2556,7 +2556,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::canFetchMore(const QModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2589,7 +2589,7 @@ void PythonQtShell_QConcatenateTablesProxyModel::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2611,7 +2611,7 @@ int PythonQtShell_QConcatenateTablesProxyModel::columnCount(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2644,7 +2644,7 @@ void PythonQtShell_QConcatenateTablesProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2666,7 +2666,7 @@ QVariant PythonQtShell_QConcatenateTablesProxyModel::data(const QModelIndex& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2699,7 +2699,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::dropMimeData(const QMimeData* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2732,7 +2732,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2765,7 +2765,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2798,7 +2798,7 @@ void PythonQtShell_QConcatenateTablesProxyModel::fetchMore(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2820,7 +2820,7 @@ Qt::ItemFlags PythonQtShell_QConcatenateTablesProxyModel::flags(const QModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2853,7 +2853,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::hasChildren(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2886,7 +2886,7 @@ QVariant PythonQtShell_QConcatenateTablesProxyModel::headerData(int section0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2919,7 +2919,7 @@ QModelIndex PythonQtShell_QConcatenateTablesProxyModel::index(int row0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2952,7 +2952,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::insertColumns(int column0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2985,7 +2985,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::insertRows(int row0, int cou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3018,7 +3018,7 @@ QMap PythonQtShell_QConcatenateTablesProxyModel::itemData(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3051,7 +3051,7 @@ QList PythonQtShell_QConcatenateTablesProxyModel::match(const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3084,7 +3084,7 @@ QMimeData* PythonQtShell_QConcatenateTablesProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3117,7 +3117,7 @@ QStringList PythonQtShell_QConcatenateTablesProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3150,7 +3150,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::moveColumns(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3183,7 +3183,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::moveRows(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3216,7 +3216,7 @@ QModelIndex PythonQtShell_QConcatenateTablesProxyModel::parent(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3249,7 +3249,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::removeColumns(int column0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3282,7 +3282,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::removeRows(int row0, int cou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3315,7 +3315,7 @@ void PythonQtShell_QConcatenateTablesProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3337,7 +3337,7 @@ QHash PythonQtShell_QConcatenateTablesProxyModel::roleNames( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -3370,7 +3370,7 @@ int PythonQtShell_QConcatenateTablesProxyModel::rowCount(const QModelIndex& pa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3403,7 +3403,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::setData(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -3436,7 +3436,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::setHeaderData(int section0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -3469,7 +3469,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::setItemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -3502,7 +3502,7 @@ QModelIndex PythonQtShell_QConcatenateTablesProxyModel::sibling(int row0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3535,7 +3535,7 @@ void PythonQtShell_QConcatenateTablesProxyModel::sort(int column0, Qt::SortOrde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -3557,7 +3557,7 @@ QSize PythonQtShell_QConcatenateTablesProxyModel::span(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -3590,7 +3590,7 @@ bool PythonQtShell_QConcatenateTablesProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3623,7 +3623,7 @@ Qt::DropActions PythonQtShell_QConcatenateTablesProxyModel::supportedDragAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3656,7 +3656,7 @@ Qt::DropActions PythonQtShell_QConcatenateTablesProxyModel::supportedDropAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3689,7 +3689,7 @@ void PythonQtShell_QConcatenateTablesProxyModel::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3851,7 +3851,7 @@ void PythonQtShell_QDataWidgetMapper::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3873,7 +3873,7 @@ void PythonQtShell_QDataWidgetMapper::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3895,7 +3895,7 @@ bool PythonQtShell_QDataWidgetMapper::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3928,7 +3928,7 @@ bool PythonQtShell_QDataWidgetMapper::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3961,7 +3961,7 @@ void PythonQtShell_QDataWidgetMapper::setCurrentIndex(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3983,7 +3983,7 @@ void PythonQtShell_QDataWidgetMapper::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4118,7 +4118,7 @@ void PythonQtShell_QDateEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4140,7 +4140,7 @@ void PythonQtShell_QDateEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4162,7 +4162,7 @@ void PythonQtShell_QDateEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4184,7 +4184,7 @@ void PythonQtShell_QDateEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4206,7 +4206,7 @@ void PythonQtShell_QDateEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4228,7 +4228,7 @@ void PythonQtShell_QDateEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4250,7 +4250,7 @@ void PythonQtShell_QDateEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4272,7 +4272,7 @@ QDateTime PythonQtShell_QDateEdit::dateTimeFromText(const QString& text0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -4305,7 +4305,7 @@ int PythonQtShell_QDateEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4338,7 +4338,7 @@ void PythonQtShell_QDateEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4360,7 +4360,7 @@ void PythonQtShell_QDateEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4382,7 +4382,7 @@ void PythonQtShell_QDateEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4404,7 +4404,7 @@ void PythonQtShell_QDateEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4426,7 +4426,7 @@ void PythonQtShell_QDateEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4448,7 +4448,7 @@ bool PythonQtShell_QDateEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4481,7 +4481,7 @@ bool PythonQtShell_QDateEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4514,7 +4514,7 @@ void PythonQtShell_QDateEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -4536,7 +4536,7 @@ void PythonQtShell_QDateEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4558,7 +4558,7 @@ bool PythonQtShell_QDateEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4591,7 +4591,7 @@ void PythonQtShell_QDateEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4613,7 +4613,7 @@ bool PythonQtShell_QDateEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4646,7 +4646,7 @@ int PythonQtShell_QDateEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4679,7 +4679,7 @@ void PythonQtShell_QDateEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4701,7 +4701,7 @@ void PythonQtShell_QDateEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4723,7 +4723,7 @@ void PythonQtShell_QDateEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4745,7 +4745,7 @@ QVariant PythonQtShell_QDateEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4778,7 +4778,7 @@ void PythonQtShell_QDateEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4800,7 +4800,7 @@ void PythonQtShell_QDateEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4822,7 +4822,7 @@ void PythonQtShell_QDateEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4844,7 +4844,7 @@ int PythonQtShell_QDateEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4877,7 +4877,7 @@ QSize PythonQtShell_QDateEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4910,7 +4910,7 @@ void PythonQtShell_QDateEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4932,7 +4932,7 @@ void PythonQtShell_QDateEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4954,7 +4954,7 @@ void PythonQtShell_QDateEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4976,7 +4976,7 @@ void PythonQtShell_QDateEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4998,7 +4998,7 @@ void PythonQtShell_QDateEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5020,7 +5020,7 @@ bool PythonQtShell_QDateEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5053,7 +5053,7 @@ QPaintEngine* PythonQtShell_QDateEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5086,7 +5086,7 @@ void PythonQtShell_QDateEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5108,7 +5108,7 @@ QPaintDevice* PythonQtShell_QDateEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5141,7 +5141,7 @@ void PythonQtShell_QDateEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5163,7 +5163,7 @@ void PythonQtShell_QDateEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5185,7 +5185,7 @@ QPainter* PythonQtShell_QDateEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5218,7 +5218,7 @@ void PythonQtShell_QDateEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5240,7 +5240,7 @@ QSize PythonQtShell_QDateEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5273,7 +5273,7 @@ void PythonQtShell_QDateEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5295,7 +5295,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDateEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -5328,7 +5328,7 @@ void PythonQtShell_QDateEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5350,7 +5350,7 @@ QString PythonQtShell_QDateEdit::textFromDateTime(const QDateTime& dt0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -5383,7 +5383,7 @@ void PythonQtShell_QDateEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5405,7 +5405,7 @@ QValidator::State PythonQtShell_QDateEdit::validate(QString& input0, int& pos if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -5438,7 +5438,7 @@ void PythonQtShell_QDateEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5487,7 +5487,7 @@ void PythonQtShell_QDateTimeEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5509,7 +5509,7 @@ void PythonQtShell_QDateTimeEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5531,7 +5531,7 @@ void PythonQtShell_QDateTimeEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5553,7 +5553,7 @@ void PythonQtShell_QDateTimeEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5575,7 +5575,7 @@ void PythonQtShell_QDateTimeEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5597,7 +5597,7 @@ void PythonQtShell_QDateTimeEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5619,7 +5619,7 @@ void PythonQtShell_QDateTimeEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5641,7 +5641,7 @@ QDateTime PythonQtShell_QDateTimeEdit::dateTimeFromText(const QString& text0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -5674,7 +5674,7 @@ int PythonQtShell_QDateTimeEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5707,7 +5707,7 @@ void PythonQtShell_QDateTimeEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5729,7 +5729,7 @@ void PythonQtShell_QDateTimeEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5751,7 +5751,7 @@ void PythonQtShell_QDateTimeEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5773,7 +5773,7 @@ void PythonQtShell_QDateTimeEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5795,7 +5795,7 @@ void PythonQtShell_QDateTimeEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5817,7 +5817,7 @@ bool PythonQtShell_QDateTimeEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5850,7 +5850,7 @@ bool PythonQtShell_QDateTimeEdit::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5883,7 +5883,7 @@ void PythonQtShell_QDateTimeEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -5905,7 +5905,7 @@ void PythonQtShell_QDateTimeEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5927,7 +5927,7 @@ bool PythonQtShell_QDateTimeEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5960,7 +5960,7 @@ void PythonQtShell_QDateTimeEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5982,7 +5982,7 @@ bool PythonQtShell_QDateTimeEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6015,7 +6015,7 @@ int PythonQtShell_QDateTimeEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6048,7 +6048,7 @@ void PythonQtShell_QDateTimeEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6070,7 +6070,7 @@ void PythonQtShell_QDateTimeEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6092,7 +6092,7 @@ void PythonQtShell_QDateTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6114,7 +6114,7 @@ QVariant PythonQtShell_QDateTimeEdit::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6147,7 +6147,7 @@ void PythonQtShell_QDateTimeEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6169,7 +6169,7 @@ void PythonQtShell_QDateTimeEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6191,7 +6191,7 @@ void PythonQtShell_QDateTimeEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6213,7 +6213,7 @@ int PythonQtShell_QDateTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6246,7 +6246,7 @@ QSize PythonQtShell_QDateTimeEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6279,7 +6279,7 @@ void PythonQtShell_QDateTimeEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6301,7 +6301,7 @@ void PythonQtShell_QDateTimeEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6323,7 +6323,7 @@ void PythonQtShell_QDateTimeEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6345,7 +6345,7 @@ void PythonQtShell_QDateTimeEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6367,7 +6367,7 @@ void PythonQtShell_QDateTimeEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6389,7 +6389,7 @@ bool PythonQtShell_QDateTimeEdit::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6422,7 +6422,7 @@ QPaintEngine* PythonQtShell_QDateTimeEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6455,7 +6455,7 @@ void PythonQtShell_QDateTimeEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6477,7 +6477,7 @@ QPaintDevice* PythonQtShell_QDateTimeEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6510,7 +6510,7 @@ void PythonQtShell_QDateTimeEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6532,7 +6532,7 @@ void PythonQtShell_QDateTimeEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6554,7 +6554,7 @@ QPainter* PythonQtShell_QDateTimeEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6587,7 +6587,7 @@ void PythonQtShell_QDateTimeEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6609,7 +6609,7 @@ QSize PythonQtShell_QDateTimeEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6642,7 +6642,7 @@ void PythonQtShell_QDateTimeEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6664,7 +6664,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDateTimeEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -6697,7 +6697,7 @@ void PythonQtShell_QDateTimeEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6719,7 +6719,7 @@ QString PythonQtShell_QDateTimeEdit::textFromDateTime(const QDateTime& dt0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -6752,7 +6752,7 @@ void PythonQtShell_QDateTimeEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6774,7 +6774,7 @@ QValidator::State PythonQtShell_QDateTimeEdit::validate(QString& input0, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -6807,7 +6807,7 @@ void PythonQtShell_QDateTimeEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7127,7 +7127,7 @@ void PythonQtShell_QDesktopWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7149,7 +7149,7 @@ void PythonQtShell_QDesktopWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7171,7 +7171,7 @@ void PythonQtShell_QDesktopWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7193,7 +7193,7 @@ void PythonQtShell_QDesktopWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7215,7 +7215,7 @@ void PythonQtShell_QDesktopWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7237,7 +7237,7 @@ void PythonQtShell_QDesktopWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7259,7 +7259,7 @@ int PythonQtShell_QDesktopWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7292,7 +7292,7 @@ void PythonQtShell_QDesktopWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7314,7 +7314,7 @@ void PythonQtShell_QDesktopWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7336,7 +7336,7 @@ void PythonQtShell_QDesktopWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7358,7 +7358,7 @@ void PythonQtShell_QDesktopWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7380,7 +7380,7 @@ void PythonQtShell_QDesktopWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7402,7 +7402,7 @@ bool PythonQtShell_QDesktopWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7435,7 +7435,7 @@ bool PythonQtShell_QDesktopWidget::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7468,7 +7468,7 @@ void PythonQtShell_QDesktopWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7490,7 +7490,7 @@ bool PythonQtShell_QDesktopWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7523,7 +7523,7 @@ void PythonQtShell_QDesktopWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7545,7 +7545,7 @@ bool PythonQtShell_QDesktopWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7578,7 +7578,7 @@ int PythonQtShell_QDesktopWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7611,7 +7611,7 @@ void PythonQtShell_QDesktopWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7633,7 +7633,7 @@ void PythonQtShell_QDesktopWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7655,7 +7655,7 @@ void PythonQtShell_QDesktopWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7677,7 +7677,7 @@ QVariant PythonQtShell_QDesktopWidget::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7710,7 +7710,7 @@ void PythonQtShell_QDesktopWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7732,7 +7732,7 @@ void PythonQtShell_QDesktopWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7754,7 +7754,7 @@ void PythonQtShell_QDesktopWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7776,7 +7776,7 @@ int PythonQtShell_QDesktopWidget::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7809,7 +7809,7 @@ QSize PythonQtShell_QDesktopWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7842,7 +7842,7 @@ void PythonQtShell_QDesktopWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7864,7 +7864,7 @@ void PythonQtShell_QDesktopWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7886,7 +7886,7 @@ void PythonQtShell_QDesktopWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7908,7 +7908,7 @@ void PythonQtShell_QDesktopWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7930,7 +7930,7 @@ void PythonQtShell_QDesktopWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7952,7 +7952,7 @@ bool PythonQtShell_QDesktopWidget::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7985,7 +7985,7 @@ QPaintEngine* PythonQtShell_QDesktopWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8018,7 +8018,7 @@ void PythonQtShell_QDesktopWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8040,7 +8040,7 @@ QPaintDevice* PythonQtShell_QDesktopWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8073,7 +8073,7 @@ void PythonQtShell_QDesktopWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8095,7 +8095,7 @@ void PythonQtShell_QDesktopWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8117,7 +8117,7 @@ QPainter* PythonQtShell_QDesktopWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8150,7 +8150,7 @@ void PythonQtShell_QDesktopWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8172,7 +8172,7 @@ QSize PythonQtShell_QDesktopWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8205,7 +8205,7 @@ void PythonQtShell_QDesktopWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8227,7 +8227,7 @@ void PythonQtShell_QDesktopWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8249,7 +8249,7 @@ void PythonQtShell_QDesktopWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8359,7 +8359,7 @@ void PythonQtShell_QDial::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8381,7 +8381,7 @@ void PythonQtShell_QDial::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8403,7 +8403,7 @@ void PythonQtShell_QDial::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8425,7 +8425,7 @@ void PythonQtShell_QDial::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8447,7 +8447,7 @@ void PythonQtShell_QDial::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8469,7 +8469,7 @@ void PythonQtShell_QDial::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8491,7 +8491,7 @@ int PythonQtShell_QDial::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8524,7 +8524,7 @@ void PythonQtShell_QDial::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8546,7 +8546,7 @@ void PythonQtShell_QDial::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8568,7 +8568,7 @@ void PythonQtShell_QDial::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8590,7 +8590,7 @@ void PythonQtShell_QDial::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8612,7 +8612,7 @@ void PythonQtShell_QDial::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8634,7 +8634,7 @@ bool PythonQtShell_QDial::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8667,7 +8667,7 @@ bool PythonQtShell_QDial::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8700,7 +8700,7 @@ void PythonQtShell_QDial::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8722,7 +8722,7 @@ bool PythonQtShell_QDial::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8755,7 +8755,7 @@ void PythonQtShell_QDial::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8777,7 +8777,7 @@ bool PythonQtShell_QDial::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8810,7 +8810,7 @@ int PythonQtShell_QDial::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8843,7 +8843,7 @@ void PythonQtShell_QDial::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8865,7 +8865,7 @@ void PythonQtShell_QDial::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8887,7 +8887,7 @@ void PythonQtShell_QDial::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8909,7 +8909,7 @@ QVariant PythonQtShell_QDial::inputMethodQuery(Qt::InputMethodQuery arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8942,7 +8942,7 @@ void PythonQtShell_QDial::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8964,7 +8964,7 @@ void PythonQtShell_QDial::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8986,7 +8986,7 @@ void PythonQtShell_QDial::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9008,7 +9008,7 @@ int PythonQtShell_QDial::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9041,7 +9041,7 @@ QSize PythonQtShell_QDial::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9074,7 +9074,7 @@ void PythonQtShell_QDial::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9096,7 +9096,7 @@ void PythonQtShell_QDial::mouseMoveEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9118,7 +9118,7 @@ void PythonQtShell_QDial::mousePressEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9140,7 +9140,7 @@ void PythonQtShell_QDial::mouseReleaseEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9162,7 +9162,7 @@ void PythonQtShell_QDial::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9184,7 +9184,7 @@ bool PythonQtShell_QDial::nativeEvent(const QByteArray& eventType0, void* mes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9217,7 +9217,7 @@ QPaintEngine* PythonQtShell_QDial::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9250,7 +9250,7 @@ void PythonQtShell_QDial::paintEvent(QPaintEvent* pe0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9272,7 +9272,7 @@ QPaintDevice* PythonQtShell_QDial::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9305,7 +9305,7 @@ void PythonQtShell_QDial::resizeEvent(QResizeEvent* re0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9327,7 +9327,7 @@ void PythonQtShell_QDial::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9349,7 +9349,7 @@ QPainter* PythonQtShell_QDial::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9382,7 +9382,7 @@ void PythonQtShell_QDial::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9404,7 +9404,7 @@ QSize PythonQtShell_QDial::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9437,7 +9437,7 @@ void PythonQtShell_QDial::sliderChange(QAbstractSlider::SliderChange change0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -9459,7 +9459,7 @@ void PythonQtShell_QDial::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9481,7 +9481,7 @@ void PythonQtShell_QDial::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9503,7 +9503,7 @@ void PythonQtShell_QDial::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9588,7 +9588,7 @@ void PythonQtShell_QDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9610,7 +9610,7 @@ void PythonQtShell_QDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9632,7 +9632,7 @@ void PythonQtShell_QDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9654,7 +9654,7 @@ void PythonQtShell_QDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9676,7 +9676,7 @@ void PythonQtShell_QDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9698,7 +9698,7 @@ void PythonQtShell_QDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9720,7 +9720,7 @@ void PythonQtShell_QDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9742,7 +9742,7 @@ int PythonQtShell_QDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9775,7 +9775,7 @@ void PythonQtShell_QDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9797,7 +9797,7 @@ void PythonQtShell_QDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9819,7 +9819,7 @@ void PythonQtShell_QDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9841,7 +9841,7 @@ void PythonQtShell_QDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9863,7 +9863,7 @@ void PythonQtShell_QDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9885,7 +9885,7 @@ void PythonQtShell_QDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9907,7 +9907,7 @@ bool PythonQtShell_QDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9940,7 +9940,7 @@ bool PythonQtShell_QDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9973,7 +9973,7 @@ int PythonQtShell_QDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10006,7 +10006,7 @@ void PythonQtShell_QDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10028,7 +10028,7 @@ bool PythonQtShell_QDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10061,7 +10061,7 @@ void PythonQtShell_QDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10083,7 +10083,7 @@ bool PythonQtShell_QDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10116,7 +10116,7 @@ int PythonQtShell_QDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10149,7 +10149,7 @@ void PythonQtShell_QDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10171,7 +10171,7 @@ void PythonQtShell_QDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10193,7 +10193,7 @@ void PythonQtShell_QDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10215,7 +10215,7 @@ QVariant PythonQtShell_QDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10248,7 +10248,7 @@ void PythonQtShell_QDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10270,7 +10270,7 @@ void PythonQtShell_QDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10292,7 +10292,7 @@ void PythonQtShell_QDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10314,7 +10314,7 @@ int PythonQtShell_QDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10347,7 +10347,7 @@ QSize PythonQtShell_QDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10380,7 +10380,7 @@ void PythonQtShell_QDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10402,7 +10402,7 @@ void PythonQtShell_QDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10424,7 +10424,7 @@ void PythonQtShell_QDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10446,7 +10446,7 @@ void PythonQtShell_QDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10468,7 +10468,7 @@ void PythonQtShell_QDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10490,7 +10490,7 @@ bool PythonQtShell_QDialog::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10523,7 +10523,7 @@ void PythonQtShell_QDialog::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10545,7 +10545,7 @@ QPaintEngine* PythonQtShell_QDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10578,7 +10578,7 @@ void PythonQtShell_QDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10600,7 +10600,7 @@ QPaintDevice* PythonQtShell_QDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10633,7 +10633,7 @@ void PythonQtShell_QDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10655,7 +10655,7 @@ void PythonQtShell_QDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10677,7 +10677,7 @@ void PythonQtShell_QDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10699,7 +10699,7 @@ QPainter* PythonQtShell_QDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10732,7 +10732,7 @@ void PythonQtShell_QDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10754,7 +10754,7 @@ QSize PythonQtShell_QDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10787,7 +10787,7 @@ void PythonQtShell_QDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10809,7 +10809,7 @@ void PythonQtShell_QDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10831,7 +10831,7 @@ void PythonQtShell_QDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10916,7 +10916,7 @@ void PythonQtShell_QDialogButtonBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10938,7 +10938,7 @@ void PythonQtShell_QDialogButtonBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10960,7 +10960,7 @@ void PythonQtShell_QDialogButtonBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10982,7 +10982,7 @@ void PythonQtShell_QDialogButtonBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11004,7 +11004,7 @@ void PythonQtShell_QDialogButtonBox::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11026,7 +11026,7 @@ void PythonQtShell_QDialogButtonBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11048,7 +11048,7 @@ int PythonQtShell_QDialogButtonBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11081,7 +11081,7 @@ void PythonQtShell_QDialogButtonBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11103,7 +11103,7 @@ void PythonQtShell_QDialogButtonBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11125,7 +11125,7 @@ void PythonQtShell_QDialogButtonBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11147,7 +11147,7 @@ void PythonQtShell_QDialogButtonBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11169,7 +11169,7 @@ void PythonQtShell_QDialogButtonBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11191,7 +11191,7 @@ bool PythonQtShell_QDialogButtonBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11224,7 +11224,7 @@ bool PythonQtShell_QDialogButtonBox::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11257,7 +11257,7 @@ void PythonQtShell_QDialogButtonBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11279,7 +11279,7 @@ bool PythonQtShell_QDialogButtonBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11312,7 +11312,7 @@ void PythonQtShell_QDialogButtonBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11334,7 +11334,7 @@ bool PythonQtShell_QDialogButtonBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11367,7 +11367,7 @@ int PythonQtShell_QDialogButtonBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11400,7 +11400,7 @@ void PythonQtShell_QDialogButtonBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11422,7 +11422,7 @@ void PythonQtShell_QDialogButtonBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11444,7 +11444,7 @@ void PythonQtShell_QDialogButtonBox::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11466,7 +11466,7 @@ QVariant PythonQtShell_QDialogButtonBox::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11499,7 +11499,7 @@ void PythonQtShell_QDialogButtonBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11521,7 +11521,7 @@ void PythonQtShell_QDialogButtonBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11543,7 +11543,7 @@ void PythonQtShell_QDialogButtonBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11565,7 +11565,7 @@ int PythonQtShell_QDialogButtonBox::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11598,7 +11598,7 @@ QSize PythonQtShell_QDialogButtonBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11631,7 +11631,7 @@ void PythonQtShell_QDialogButtonBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11653,7 +11653,7 @@ void PythonQtShell_QDialogButtonBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11675,7 +11675,7 @@ void PythonQtShell_QDialogButtonBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11697,7 +11697,7 @@ void PythonQtShell_QDialogButtonBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11719,7 +11719,7 @@ void PythonQtShell_QDialogButtonBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11741,7 +11741,7 @@ bool PythonQtShell_QDialogButtonBox::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11774,7 +11774,7 @@ QPaintEngine* PythonQtShell_QDialogButtonBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11807,7 +11807,7 @@ void PythonQtShell_QDialogButtonBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11829,7 +11829,7 @@ QPaintDevice* PythonQtShell_QDialogButtonBox::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11862,7 +11862,7 @@ void PythonQtShell_QDialogButtonBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11884,7 +11884,7 @@ void PythonQtShell_QDialogButtonBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11906,7 +11906,7 @@ QPainter* PythonQtShell_QDialogButtonBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11939,7 +11939,7 @@ void PythonQtShell_QDialogButtonBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11961,7 +11961,7 @@ QSize PythonQtShell_QDialogButtonBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11994,7 +11994,7 @@ void PythonQtShell_QDialogButtonBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12016,7 +12016,7 @@ void PythonQtShell_QDialogButtonBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12038,7 +12038,7 @@ void PythonQtShell_QDialogButtonBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12170,7 +12170,7 @@ QModelIndex PythonQtShell_QDirModel::buddy(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12203,7 +12203,7 @@ bool PythonQtShell_QDirModel::canDropMimeData(const QMimeData* data0, Qt::Drop if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12236,7 +12236,7 @@ bool PythonQtShell_QDirModel::canFetchMore(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12269,7 +12269,7 @@ void PythonQtShell_QDirModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12291,7 +12291,7 @@ int PythonQtShell_QDirModel::columnCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12324,7 +12324,7 @@ void PythonQtShell_QDirModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12346,7 +12346,7 @@ QVariant PythonQtShell_QDirModel::data(const QModelIndex& index0, int role1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -12379,7 +12379,7 @@ bool PythonQtShell_QDirModel::dropMimeData(const QMimeData* data0, Qt::DropAct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12412,7 +12412,7 @@ bool PythonQtShell_QDirModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12445,7 +12445,7 @@ bool PythonQtShell_QDirModel::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12478,7 +12478,7 @@ void PythonQtShell_QDirModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12500,7 +12500,7 @@ Qt::ItemFlags PythonQtShell_QDirModel::flags(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -12533,7 +12533,7 @@ bool PythonQtShell_QDirModel::hasChildren(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12566,7 +12566,7 @@ QVariant PythonQtShell_QDirModel::headerData(int section0, Qt::Orientation or if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -12599,7 +12599,7 @@ QModelIndex PythonQtShell_QDirModel::index(int row0, int column1, const QMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12632,7 +12632,7 @@ bool PythonQtShell_QDirModel::insertColumns(int column0, int count1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12665,7 +12665,7 @@ bool PythonQtShell_QDirModel::insertRows(int row0, int count1, const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12698,7 +12698,7 @@ QMap PythonQtShell_QDirModel::itemData(const QModelIndex& ind if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -12731,7 +12731,7 @@ QList PythonQtShell_QDirModel::match(const QModelIndex& start0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -12764,7 +12764,7 @@ QMimeData* PythonQtShell_QDirModel::mimeData(const QList& indexe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -12797,7 +12797,7 @@ QStringList PythonQtShell_QDirModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -12830,7 +12830,7 @@ bool PythonQtShell_QDirModel::moveColumns(const QModelIndex& sourceParent0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -12863,7 +12863,7 @@ bool PythonQtShell_QDirModel::moveRows(const QModelIndex& sourceParent0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -12896,7 +12896,7 @@ QModelIndex PythonQtShell_QDirModel::parent(const QModelIndex& child0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12929,7 +12929,7 @@ bool PythonQtShell_QDirModel::removeColumns(int column0, int count1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12962,7 +12962,7 @@ bool PythonQtShell_QDirModel::removeRows(int row0, int count1, const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12995,7 +12995,7 @@ void PythonQtShell_QDirModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13017,7 +13017,7 @@ QHash PythonQtShell_QDirModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -13050,7 +13050,7 @@ int PythonQtShell_QDirModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13083,7 +13083,7 @@ bool PythonQtShell_QDirModel::setData(const QModelIndex& index0, const QVarian if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -13116,7 +13116,7 @@ bool PythonQtShell_QDirModel::setHeaderData(int section0, Qt::Orientation ori if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -13149,7 +13149,7 @@ bool PythonQtShell_QDirModel::setItemData(const QModelIndex& index0, const QMa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -13182,7 +13182,7 @@ QModelIndex PythonQtShell_QDirModel::sibling(int row0, int column1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13215,7 +13215,7 @@ void PythonQtShell_QDirModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -13237,7 +13237,7 @@ QSize PythonQtShell_QDirModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -13270,7 +13270,7 @@ bool PythonQtShell_QDirModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13303,7 +13303,7 @@ Qt::DropActions PythonQtShell_QDirModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13336,7 +13336,7 @@ Qt::DropActions PythonQtShell_QDirModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13369,7 +13369,7 @@ void PythonQtShell_QDirModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13533,7 +13533,7 @@ void PythonQtShell_QDockWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13555,7 +13555,7 @@ void PythonQtShell_QDockWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13577,7 +13577,7 @@ void PythonQtShell_QDockWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13599,7 +13599,7 @@ void PythonQtShell_QDockWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13621,7 +13621,7 @@ void PythonQtShell_QDockWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13643,7 +13643,7 @@ void PythonQtShell_QDockWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13665,7 +13665,7 @@ int PythonQtShell_QDockWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13698,7 +13698,7 @@ void PythonQtShell_QDockWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13720,7 +13720,7 @@ void PythonQtShell_QDockWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13742,7 +13742,7 @@ void PythonQtShell_QDockWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13764,7 +13764,7 @@ void PythonQtShell_QDockWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13786,7 +13786,7 @@ void PythonQtShell_QDockWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13808,7 +13808,7 @@ bool PythonQtShell_QDockWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13841,7 +13841,7 @@ bool PythonQtShell_QDockWidget::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13874,7 +13874,7 @@ void PythonQtShell_QDockWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13896,7 +13896,7 @@ bool PythonQtShell_QDockWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13929,7 +13929,7 @@ void PythonQtShell_QDockWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13951,7 +13951,7 @@ bool PythonQtShell_QDockWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13984,7 +13984,7 @@ int PythonQtShell_QDockWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14017,7 +14017,7 @@ void PythonQtShell_QDockWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14039,7 +14039,7 @@ void PythonQtShell_QDockWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14061,7 +14061,7 @@ void PythonQtShell_QDockWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14083,7 +14083,7 @@ QVariant PythonQtShell_QDockWidget::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14116,7 +14116,7 @@ void PythonQtShell_QDockWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14138,7 +14138,7 @@ void PythonQtShell_QDockWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14160,7 +14160,7 @@ void PythonQtShell_QDockWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14182,7 +14182,7 @@ int PythonQtShell_QDockWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14215,7 +14215,7 @@ QSize PythonQtShell_QDockWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14248,7 +14248,7 @@ void PythonQtShell_QDockWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14270,7 +14270,7 @@ void PythonQtShell_QDockWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14292,7 +14292,7 @@ void PythonQtShell_QDockWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14314,7 +14314,7 @@ void PythonQtShell_QDockWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14336,7 +14336,7 @@ void PythonQtShell_QDockWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14358,7 +14358,7 @@ bool PythonQtShell_QDockWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14391,7 +14391,7 @@ QPaintEngine* PythonQtShell_QDockWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14424,7 +14424,7 @@ void PythonQtShell_QDockWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14446,7 +14446,7 @@ QPaintDevice* PythonQtShell_QDockWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14479,7 +14479,7 @@ void PythonQtShell_QDockWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14501,7 +14501,7 @@ void PythonQtShell_QDockWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14523,7 +14523,7 @@ QPainter* PythonQtShell_QDockWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14556,7 +14556,7 @@ void PythonQtShell_QDockWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14578,7 +14578,7 @@ QSize PythonQtShell_QDockWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14611,7 +14611,7 @@ void PythonQtShell_QDockWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14633,7 +14633,7 @@ void PythonQtShell_QDockWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14655,7 +14655,7 @@ void PythonQtShell_QDockWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14769,7 +14769,7 @@ void PythonQtShell_QDoubleSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14791,7 +14791,7 @@ void PythonQtShell_QDoubleSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14813,7 +14813,7 @@ void PythonQtShell_QDoubleSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14835,7 +14835,7 @@ void PythonQtShell_QDoubleSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14857,7 +14857,7 @@ void PythonQtShell_QDoubleSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14879,7 +14879,7 @@ void PythonQtShell_QDoubleSpinBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14901,7 +14901,7 @@ void PythonQtShell_QDoubleSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14923,7 +14923,7 @@ int PythonQtShell_QDoubleSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14956,7 +14956,7 @@ void PythonQtShell_QDoubleSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14978,7 +14978,7 @@ void PythonQtShell_QDoubleSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -15000,7 +15000,7 @@ void PythonQtShell_QDoubleSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -15022,7 +15022,7 @@ void PythonQtShell_QDoubleSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -15044,7 +15044,7 @@ void PythonQtShell_QDoubleSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15066,7 +15066,7 @@ bool PythonQtShell_QDoubleSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15099,7 +15099,7 @@ bool PythonQtShell_QDoubleSpinBox::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15132,7 +15132,7 @@ void PythonQtShell_QDoubleSpinBox::fixup(QString& str0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -15154,7 +15154,7 @@ void PythonQtShell_QDoubleSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15176,7 +15176,7 @@ bool PythonQtShell_QDoubleSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15209,7 +15209,7 @@ void PythonQtShell_QDoubleSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15231,7 +15231,7 @@ bool PythonQtShell_QDoubleSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15264,7 +15264,7 @@ int PythonQtShell_QDoubleSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15297,7 +15297,7 @@ void PythonQtShell_QDoubleSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15319,7 +15319,7 @@ void PythonQtShell_QDoubleSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15341,7 +15341,7 @@ void PythonQtShell_QDoubleSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15363,7 +15363,7 @@ QVariant PythonQtShell_QDoubleSpinBox::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15396,7 +15396,7 @@ void PythonQtShell_QDoubleSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15418,7 +15418,7 @@ void PythonQtShell_QDoubleSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15440,7 +15440,7 @@ void PythonQtShell_QDoubleSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15462,7 +15462,7 @@ int PythonQtShell_QDoubleSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15495,7 +15495,7 @@ QSize PythonQtShell_QDoubleSpinBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15528,7 +15528,7 @@ void PythonQtShell_QDoubleSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15550,7 +15550,7 @@ void PythonQtShell_QDoubleSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15572,7 +15572,7 @@ void PythonQtShell_QDoubleSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15594,7 +15594,7 @@ void PythonQtShell_QDoubleSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15616,7 +15616,7 @@ void PythonQtShell_QDoubleSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15638,7 +15638,7 @@ bool PythonQtShell_QDoubleSpinBox::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15671,7 +15671,7 @@ QPaintEngine* PythonQtShell_QDoubleSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15704,7 +15704,7 @@ void PythonQtShell_QDoubleSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15726,7 +15726,7 @@ QPaintDevice* PythonQtShell_QDoubleSpinBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15759,7 +15759,7 @@ void PythonQtShell_QDoubleSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15781,7 +15781,7 @@ void PythonQtShell_QDoubleSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15803,7 +15803,7 @@ QPainter* PythonQtShell_QDoubleSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15836,7 +15836,7 @@ void PythonQtShell_QDoubleSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15858,7 +15858,7 @@ QSize PythonQtShell_QDoubleSpinBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15891,7 +15891,7 @@ void PythonQtShell_QDoubleSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15913,7 +15913,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDoubleSpinBox::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -15946,7 +15946,7 @@ void PythonQtShell_QDoubleSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15968,7 +15968,7 @@ QString PythonQtShell_QDoubleSpinBox::textFromValue(double val0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "double"}; @@ -16001,7 +16001,7 @@ void PythonQtShell_QDoubleSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16023,7 +16023,7 @@ QValidator::State PythonQtShell_QDoubleSpinBox::validate(QString& input0, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -16056,7 +16056,7 @@ double PythonQtShell_QDoubleSpinBox::valueFromText(const QString& text0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"double" , "const QString&"}; @@ -16089,7 +16089,7 @@ void PythonQtShell_QDoubleSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16229,7 +16229,7 @@ void PythonQtShell_QDoubleValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16251,7 +16251,7 @@ void PythonQtShell_QDoubleValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16273,7 +16273,7 @@ bool PythonQtShell_QDoubleValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16306,7 +16306,7 @@ bool PythonQtShell_QDoubleValidator::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16339,7 +16339,7 @@ void PythonQtShell_QDoubleValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -16361,7 +16361,7 @@ void PythonQtShell_QDoubleValidator::setRange(double bottom0, double top1, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "double" , "double" , "int"}; @@ -16383,7 +16383,7 @@ void PythonQtShell_QDoubleValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16405,7 +16405,7 @@ QValidator::State PythonQtShell_QDoubleValidator::validate(QString& arg__1, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -16510,7 +16510,7 @@ void PythonQtShell_QDrag::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16532,7 +16532,7 @@ void PythonQtShell_QDrag::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16554,7 +16554,7 @@ bool PythonQtShell_QDrag::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16587,7 +16587,7 @@ bool PythonQtShell_QDrag::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16620,7 +16620,7 @@ void PythonQtShell_QDrag::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16897,7 +16897,7 @@ void PythonQtShell_QErrorMessage::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16919,7 +16919,7 @@ void PythonQtShell_QErrorMessage::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16941,7 +16941,7 @@ void PythonQtShell_QErrorMessage::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16963,7 +16963,7 @@ void PythonQtShell_QErrorMessage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16985,7 +16985,7 @@ void PythonQtShell_QErrorMessage::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17007,7 +17007,7 @@ void PythonQtShell_QErrorMessage::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17029,7 +17029,7 @@ void PythonQtShell_QErrorMessage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17051,7 +17051,7 @@ int PythonQtShell_QErrorMessage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17084,7 +17084,7 @@ void PythonQtShell_QErrorMessage::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17106,7 +17106,7 @@ void PythonQtShell_QErrorMessage::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17128,7 +17128,7 @@ void PythonQtShell_QErrorMessage::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17150,7 +17150,7 @@ void PythonQtShell_QErrorMessage::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17172,7 +17172,7 @@ void PythonQtShell_QErrorMessage::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17194,7 +17194,7 @@ void PythonQtShell_QErrorMessage::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17216,7 +17216,7 @@ bool PythonQtShell_QErrorMessage::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17249,7 +17249,7 @@ bool PythonQtShell_QErrorMessage::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17282,7 +17282,7 @@ int PythonQtShell_QErrorMessage::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17315,7 +17315,7 @@ void PythonQtShell_QErrorMessage::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17337,7 +17337,7 @@ bool PythonQtShell_QErrorMessage::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17370,7 +17370,7 @@ void PythonQtShell_QErrorMessage::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17392,7 +17392,7 @@ bool PythonQtShell_QErrorMessage::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17425,7 +17425,7 @@ int PythonQtShell_QErrorMessage::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17458,7 +17458,7 @@ void PythonQtShell_QErrorMessage::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17480,7 +17480,7 @@ void PythonQtShell_QErrorMessage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17502,7 +17502,7 @@ void PythonQtShell_QErrorMessage::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17524,7 +17524,7 @@ QVariant PythonQtShell_QErrorMessage::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17557,7 +17557,7 @@ void PythonQtShell_QErrorMessage::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17579,7 +17579,7 @@ void PythonQtShell_QErrorMessage::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17601,7 +17601,7 @@ void PythonQtShell_QErrorMessage::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17623,7 +17623,7 @@ int PythonQtShell_QErrorMessage::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17656,7 +17656,7 @@ QSize PythonQtShell_QErrorMessage::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17689,7 +17689,7 @@ void PythonQtShell_QErrorMessage::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17711,7 +17711,7 @@ void PythonQtShell_QErrorMessage::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17733,7 +17733,7 @@ void PythonQtShell_QErrorMessage::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17755,7 +17755,7 @@ void PythonQtShell_QErrorMessage::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17777,7 +17777,7 @@ void PythonQtShell_QErrorMessage::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17799,7 +17799,7 @@ bool PythonQtShell_QErrorMessage::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17832,7 +17832,7 @@ void PythonQtShell_QErrorMessage::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17854,7 +17854,7 @@ QPaintEngine* PythonQtShell_QErrorMessage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17887,7 +17887,7 @@ void PythonQtShell_QErrorMessage::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17909,7 +17909,7 @@ QPaintDevice* PythonQtShell_QErrorMessage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17942,7 +17942,7 @@ void PythonQtShell_QErrorMessage::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17964,7 +17964,7 @@ void PythonQtShell_QErrorMessage::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17986,7 +17986,7 @@ void PythonQtShell_QErrorMessage::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -18008,7 +18008,7 @@ QPainter* PythonQtShell_QErrorMessage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18041,7 +18041,7 @@ void PythonQtShell_QErrorMessage::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18063,7 +18063,7 @@ QSize PythonQtShell_QErrorMessage::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18096,7 +18096,7 @@ void PythonQtShell_QErrorMessage::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18118,7 +18118,7 @@ void PythonQtShell_QErrorMessage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18140,7 +18140,7 @@ void PythonQtShell_QErrorMessage::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -18205,7 +18205,7 @@ void PythonQtShell_QFileDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18227,7 +18227,7 @@ void PythonQtShell_QFileDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18249,7 +18249,7 @@ void PythonQtShell_QFileDialog::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18271,7 +18271,7 @@ void PythonQtShell_QFileDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18293,7 +18293,7 @@ void PythonQtShell_QFileDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18315,7 +18315,7 @@ void PythonQtShell_QFileDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18337,7 +18337,7 @@ void PythonQtShell_QFileDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18359,7 +18359,7 @@ int PythonQtShell_QFileDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18392,7 +18392,7 @@ void PythonQtShell_QFileDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18414,7 +18414,7 @@ void PythonQtShell_QFileDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -18436,7 +18436,7 @@ void PythonQtShell_QFileDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -18458,7 +18458,7 @@ void PythonQtShell_QFileDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -18480,7 +18480,7 @@ void PythonQtShell_QFileDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -18502,7 +18502,7 @@ void PythonQtShell_QFileDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18524,7 +18524,7 @@ bool PythonQtShell_QFileDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -18557,7 +18557,7 @@ bool PythonQtShell_QFileDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -18590,7 +18590,7 @@ int PythonQtShell_QFileDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18623,7 +18623,7 @@ void PythonQtShell_QFileDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18645,7 +18645,7 @@ bool PythonQtShell_QFileDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18678,7 +18678,7 @@ void PythonQtShell_QFileDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18700,7 +18700,7 @@ bool PythonQtShell_QFileDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18733,7 +18733,7 @@ int PythonQtShell_QFileDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18766,7 +18766,7 @@ void PythonQtShell_QFileDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18788,7 +18788,7 @@ void PythonQtShell_QFileDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18810,7 +18810,7 @@ void PythonQtShell_QFileDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18832,7 +18832,7 @@ QVariant PythonQtShell_QFileDialog::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18865,7 +18865,7 @@ void PythonQtShell_QFileDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18887,7 +18887,7 @@ void PythonQtShell_QFileDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18909,7 +18909,7 @@ void PythonQtShell_QFileDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18931,7 +18931,7 @@ int PythonQtShell_QFileDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18964,7 +18964,7 @@ QSize PythonQtShell_QFileDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18997,7 +18997,7 @@ void PythonQtShell_QFileDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19019,7 +19019,7 @@ void PythonQtShell_QFileDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19041,7 +19041,7 @@ void PythonQtShell_QFileDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19063,7 +19063,7 @@ void PythonQtShell_QFileDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19085,7 +19085,7 @@ void PythonQtShell_QFileDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19107,7 +19107,7 @@ bool PythonQtShell_QFileDialog::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19140,7 +19140,7 @@ QPaintEngine* PythonQtShell_QFileDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19173,7 +19173,7 @@ void PythonQtShell_QFileDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19195,7 +19195,7 @@ QPaintDevice* PythonQtShell_QFileDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19228,7 +19228,7 @@ void PythonQtShell_QFileDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19250,7 +19250,7 @@ void PythonQtShell_QFileDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19272,7 +19272,7 @@ void PythonQtShell_QFileDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -19294,7 +19294,7 @@ QPainter* PythonQtShell_QFileDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19327,7 +19327,7 @@ void PythonQtShell_QFileDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19349,7 +19349,7 @@ QSize PythonQtShell_QFileDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19382,7 +19382,7 @@ void PythonQtShell_QFileDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -19404,7 +19404,7 @@ void PythonQtShell_QFileDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -19426,7 +19426,7 @@ void PythonQtShell_QFileDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -19805,7 +19805,7 @@ QIcon PythonQtShell_QFileIconProvider::icon(QFileIconProvider::IconType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QFileIconProvider::IconType"}; @@ -19838,7 +19838,7 @@ QIcon PythonQtShell_QFileIconProvider::icon(const QFileInfo& info0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "const QFileInfo&"}; @@ -19871,7 +19871,7 @@ QString PythonQtShell_QFileIconProvider::type(const QFileInfo& info0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QFileInfo&"}; @@ -19964,7 +19964,7 @@ QModelIndex PythonQtShell_QFileSystemModel::buddy(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -19997,7 +19997,7 @@ bool PythonQtShell_QFileSystemModel::canDropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -20030,7 +20030,7 @@ bool PythonQtShell_QFileSystemModel::canFetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -20063,7 +20063,7 @@ void PythonQtShell_QFileSystemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20085,7 +20085,7 @@ int PythonQtShell_QFileSystemModel::columnCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -20118,7 +20118,7 @@ void PythonQtShell_QFileSystemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20140,7 +20140,7 @@ QVariant PythonQtShell_QFileSystemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -20173,7 +20173,7 @@ bool PythonQtShell_QFileSystemModel::dropMimeData(const QMimeData* data0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -20206,7 +20206,7 @@ bool PythonQtShell_QFileSystemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20239,7 +20239,7 @@ bool PythonQtShell_QFileSystemModel::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -20272,7 +20272,7 @@ void PythonQtShell_QFileSystemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -20294,7 +20294,7 @@ Qt::ItemFlags PythonQtShell_QFileSystemModel::flags(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -20327,7 +20327,7 @@ bool PythonQtShell_QFileSystemModel::hasChildren(const QModelIndex& parent0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -20360,7 +20360,7 @@ QVariant PythonQtShell_QFileSystemModel::headerData(int section0, Qt::Orientat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -20393,7 +20393,7 @@ QModelIndex PythonQtShell_QFileSystemModel::index(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -20426,7 +20426,7 @@ bool PythonQtShell_QFileSystemModel::insertColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -20459,7 +20459,7 @@ bool PythonQtShell_QFileSystemModel::insertRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -20492,7 +20492,7 @@ QMap PythonQtShell_QFileSystemModel::itemData(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -20525,7 +20525,7 @@ QList PythonQtShell_QFileSystemModel::match(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -20558,7 +20558,7 @@ QMimeData* PythonQtShell_QFileSystemModel::mimeData(const QList& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -20591,7 +20591,7 @@ QStringList PythonQtShell_QFileSystemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -20624,7 +20624,7 @@ bool PythonQtShell_QFileSystemModel::moveColumns(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -20657,7 +20657,7 @@ bool PythonQtShell_QFileSystemModel::moveRows(const QModelIndex& sourceParent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -20690,7 +20690,7 @@ QModelIndex PythonQtShell_QFileSystemModel::parent(const QModelIndex& child0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -20723,7 +20723,7 @@ bool PythonQtShell_QFileSystemModel::removeColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -20756,7 +20756,7 @@ bool PythonQtShell_QFileSystemModel::removeRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -20789,7 +20789,7 @@ void PythonQtShell_QFileSystemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20811,7 +20811,7 @@ QHash PythonQtShell_QFileSystemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -20844,7 +20844,7 @@ int PythonQtShell_QFileSystemModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -20877,7 +20877,7 @@ bool PythonQtShell_QFileSystemModel::setData(const QModelIndex& index0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -20910,7 +20910,7 @@ bool PythonQtShell_QFileSystemModel::setHeaderData(int section0, Qt::Orientati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -20943,7 +20943,7 @@ bool PythonQtShell_QFileSystemModel::setItemData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -20976,7 +20976,7 @@ QModelIndex PythonQtShell_QFileSystemModel::sibling(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -21009,7 +21009,7 @@ void PythonQtShell_QFileSystemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -21031,7 +21031,7 @@ QSize PythonQtShell_QFileSystemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -21064,7 +21064,7 @@ bool PythonQtShell_QFileSystemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -21097,7 +21097,7 @@ Qt::DropActions PythonQtShell_QFileSystemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -21130,7 +21130,7 @@ Qt::DropActions PythonQtShell_QFileSystemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -21163,7 +21163,7 @@ void PythonQtShell_QFileSystemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp index df62844ad..28ff90dab 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp @@ -163,7 +163,7 @@ void PythonQtShell_QStylePlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -185,7 +185,7 @@ QStyle* PythonQtShell_QStylePlugin::create(const QString& key0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle*" , "const QString&"}; @@ -218,7 +218,7 @@ void PythonQtShell_QStylePlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -240,7 +240,7 @@ bool PythonQtShell_QStylePlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -273,7 +273,7 @@ bool PythonQtShell_QStylePlugin::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -306,7 +306,7 @@ void PythonQtShell_QStylePlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -356,7 +356,7 @@ void PythonQtShell_QStyledItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -378,7 +378,7 @@ QWidget* PythonQtShell_QStyledItemDelegate::createEditor(QWidget* parent0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -411,7 +411,7 @@ void PythonQtShell_QStyledItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -433,7 +433,7 @@ void PythonQtShell_QStyledItemDelegate::destroyEditor(QWidget* editor0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -455,7 +455,7 @@ QString PythonQtShell_QStyledItemDelegate::displayText(const QVariant& value0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("displayText"); + static PyObject* name = PyUnicode_FromString("displayText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QVariant&" , "const QLocale&"}; @@ -488,7 +488,7 @@ bool PythonQtShell_QStyledItemDelegate::editorEvent(QEvent* event0, QAbstractI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -521,7 +521,7 @@ bool PythonQtShell_QStyledItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -554,7 +554,7 @@ bool PythonQtShell_QStyledItemDelegate::eventFilter(QObject* object0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -587,7 +587,7 @@ bool PythonQtShell_QStyledItemDelegate::helpEvent(QHelpEvent* event0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -620,7 +620,7 @@ void PythonQtShell_QStyledItemDelegate::initStyleOption(QStyleOptionViewItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOptionViewItem*" , "const QModelIndex&"}; @@ -642,7 +642,7 @@ void PythonQtShell_QStyledItemDelegate::paint(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -664,7 +664,7 @@ QVector PythonQtShell_QStyledItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -697,7 +697,7 @@ void PythonQtShell_QStyledItemDelegate::setEditorData(QWidget* editor0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -719,7 +719,7 @@ void PythonQtShell_QStyledItemDelegate::setModelData(QWidget* editor0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -741,7 +741,7 @@ QSize PythonQtShell_QStyledItemDelegate::sizeHint(const QStyleOptionViewItem& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -774,7 +774,7 @@ void PythonQtShell_QStyledItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -796,7 +796,7 @@ void PythonQtShell_QStyledItemDelegate::updateEditorGeometry(QWidget* editor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -861,7 +861,7 @@ QSurfaceFormat PythonQtShell_QSurface::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -894,7 +894,7 @@ QSize PythonQtShell_QSurface::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -927,7 +927,7 @@ QPlatformSurface* PythonQtShell_QSurface::surfaceHandle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceHandle"); + static PyObject* name = PyUnicode_FromString("surfaceHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPlatformSurface*"}; @@ -960,7 +960,7 @@ QSurface::SurfaceType PythonQtShell_QSurface::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -1274,7 +1274,7 @@ void PythonQtShell_QSwipeGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1296,7 +1296,7 @@ void PythonQtShell_QSwipeGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1318,7 +1318,7 @@ bool PythonQtShell_QSwipeGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1351,7 +1351,7 @@ bool PythonQtShell_QSwipeGesture::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1384,7 +1384,7 @@ void PythonQtShell_QSwipeGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1449,7 +1449,7 @@ void PythonQtShell_QSyntaxHighlighter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1471,7 +1471,7 @@ void PythonQtShell_QSyntaxHighlighter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1493,7 +1493,7 @@ bool PythonQtShell_QSyntaxHighlighter::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1526,7 +1526,7 @@ bool PythonQtShell_QSyntaxHighlighter::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1559,7 +1559,7 @@ void PythonQtShell_QSyntaxHighlighter::highlightBlock(const QString& text0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("highlightBlock"); + static PyObject* name = PyUnicode_FromString("highlightBlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1581,7 +1581,7 @@ void PythonQtShell_QSyntaxHighlighter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1695,7 +1695,7 @@ void PythonQtShell_QSystemTrayIcon::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1717,7 +1717,7 @@ void PythonQtShell_QSystemTrayIcon::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1739,7 +1739,7 @@ bool PythonQtShell_QSystemTrayIcon::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1772,7 +1772,7 @@ bool PythonQtShell_QSystemTrayIcon::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1805,7 +1805,7 @@ void PythonQtShell_QSystemTrayIcon::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1904,7 +1904,7 @@ void PythonQtShell_QTabBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1926,7 +1926,7 @@ void PythonQtShell_QTabBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1948,7 +1948,7 @@ void PythonQtShell_QTabBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1970,7 +1970,7 @@ void PythonQtShell_QTabBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1992,7 +1992,7 @@ void PythonQtShell_QTabBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2014,7 +2014,7 @@ void PythonQtShell_QTabBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2036,7 +2036,7 @@ int PythonQtShell_QTabBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2069,7 +2069,7 @@ void PythonQtShell_QTabBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2091,7 +2091,7 @@ void PythonQtShell_QTabBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2113,7 +2113,7 @@ void PythonQtShell_QTabBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2135,7 +2135,7 @@ void PythonQtShell_QTabBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2157,7 +2157,7 @@ void PythonQtShell_QTabBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2179,7 +2179,7 @@ bool PythonQtShell_QTabBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2212,7 +2212,7 @@ bool PythonQtShell_QTabBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2245,7 +2245,7 @@ void PythonQtShell_QTabBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2267,7 +2267,7 @@ bool PythonQtShell_QTabBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2300,7 +2300,7 @@ void PythonQtShell_QTabBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2322,7 +2322,7 @@ bool PythonQtShell_QTabBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2355,7 +2355,7 @@ int PythonQtShell_QTabBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2388,7 +2388,7 @@ void PythonQtShell_QTabBar::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2410,7 +2410,7 @@ void PythonQtShell_QTabBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2432,7 +2432,7 @@ void PythonQtShell_QTabBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2454,7 +2454,7 @@ QVariant PythonQtShell_QTabBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2487,7 +2487,7 @@ void PythonQtShell_QTabBar::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2509,7 +2509,7 @@ void PythonQtShell_QTabBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2531,7 +2531,7 @@ void PythonQtShell_QTabBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2553,7 +2553,7 @@ int PythonQtShell_QTabBar::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2586,7 +2586,7 @@ QSize PythonQtShell_QTabBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2619,7 +2619,7 @@ QSize PythonQtShell_QTabBar::minimumTabSizeHint(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumTabSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumTabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2652,7 +2652,7 @@ void PythonQtShell_QTabBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2674,7 +2674,7 @@ void PythonQtShell_QTabBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2696,7 +2696,7 @@ void PythonQtShell_QTabBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2718,7 +2718,7 @@ void PythonQtShell_QTabBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2740,7 +2740,7 @@ void PythonQtShell_QTabBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2762,7 +2762,7 @@ bool PythonQtShell_QTabBar::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2795,7 +2795,7 @@ QPaintEngine* PythonQtShell_QTabBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2828,7 +2828,7 @@ void PythonQtShell_QTabBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2850,7 +2850,7 @@ QPaintDevice* PythonQtShell_QTabBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2883,7 +2883,7 @@ void PythonQtShell_QTabBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2905,7 +2905,7 @@ void PythonQtShell_QTabBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2927,7 +2927,7 @@ QPainter* PythonQtShell_QTabBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2960,7 +2960,7 @@ void PythonQtShell_QTabBar::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2982,7 +2982,7 @@ QSize PythonQtShell_QTabBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3015,7 +3015,7 @@ void PythonQtShell_QTabBar::tabInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3037,7 +3037,7 @@ void PythonQtShell_QTabBar::tabLayoutChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabLayoutChange"); + static PyObject* name = PyUnicode_FromString("tabLayoutChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3059,7 +3059,7 @@ void PythonQtShell_QTabBar::tabRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3081,7 +3081,7 @@ QSize PythonQtShell_QTabBar::tabSizeHint(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabSizeHint"); + static PyObject* name = PyUnicode_FromString("tabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -3114,7 +3114,7 @@ void PythonQtShell_QTabBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3136,7 +3136,7 @@ void PythonQtShell_QTabBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3158,7 +3158,7 @@ void PythonQtShell_QTabBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3513,7 +3513,7 @@ void PythonQtShell_QTabWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3535,7 +3535,7 @@ void PythonQtShell_QTabWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3557,7 +3557,7 @@ void PythonQtShell_QTabWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3579,7 +3579,7 @@ void PythonQtShell_QTabWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3601,7 +3601,7 @@ void PythonQtShell_QTabWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3623,7 +3623,7 @@ void PythonQtShell_QTabWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3645,7 +3645,7 @@ int PythonQtShell_QTabWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3678,7 +3678,7 @@ void PythonQtShell_QTabWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3700,7 +3700,7 @@ void PythonQtShell_QTabWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3722,7 +3722,7 @@ void PythonQtShell_QTabWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3744,7 +3744,7 @@ void PythonQtShell_QTabWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3766,7 +3766,7 @@ void PythonQtShell_QTabWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3788,7 +3788,7 @@ bool PythonQtShell_QTabWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3821,7 +3821,7 @@ bool PythonQtShell_QTabWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3854,7 +3854,7 @@ void PythonQtShell_QTabWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3876,7 +3876,7 @@ bool PythonQtShell_QTabWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3909,7 +3909,7 @@ void PythonQtShell_QTabWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3931,7 +3931,7 @@ bool PythonQtShell_QTabWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3964,7 +3964,7 @@ int PythonQtShell_QTabWidget::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3997,7 +3997,7 @@ void PythonQtShell_QTabWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4019,7 +4019,7 @@ void PythonQtShell_QTabWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4041,7 +4041,7 @@ void PythonQtShell_QTabWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4063,7 +4063,7 @@ QVariant PythonQtShell_QTabWidget::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4096,7 +4096,7 @@ void PythonQtShell_QTabWidget::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4118,7 +4118,7 @@ void PythonQtShell_QTabWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4140,7 +4140,7 @@ void PythonQtShell_QTabWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4162,7 +4162,7 @@ int PythonQtShell_QTabWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4195,7 +4195,7 @@ QSize PythonQtShell_QTabWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4228,7 +4228,7 @@ void PythonQtShell_QTabWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4250,7 +4250,7 @@ void PythonQtShell_QTabWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4272,7 +4272,7 @@ void PythonQtShell_QTabWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4294,7 +4294,7 @@ void PythonQtShell_QTabWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4316,7 +4316,7 @@ void PythonQtShell_QTabWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4338,7 +4338,7 @@ bool PythonQtShell_QTabWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4371,7 +4371,7 @@ QPaintEngine* PythonQtShell_QTabWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4404,7 +4404,7 @@ void PythonQtShell_QTabWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4426,7 +4426,7 @@ QPaintDevice* PythonQtShell_QTabWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4459,7 +4459,7 @@ void PythonQtShell_QTabWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4481,7 +4481,7 @@ void PythonQtShell_QTabWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4503,7 +4503,7 @@ QPainter* PythonQtShell_QTabWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4536,7 +4536,7 @@ void PythonQtShell_QTabWidget::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4558,7 +4558,7 @@ QSize PythonQtShell_QTabWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4591,7 +4591,7 @@ void PythonQtShell_QTabWidget::tabInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4613,7 +4613,7 @@ void PythonQtShell_QTabWidget::tabRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4635,7 +4635,7 @@ void PythonQtShell_QTabWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4657,7 +4657,7 @@ void PythonQtShell_QTabWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4679,7 +4679,7 @@ void PythonQtShell_QTabWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4974,7 +4974,7 @@ void PythonQtShell_QTableView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4996,7 +4996,7 @@ void PythonQtShell_QTableView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5018,7 +5018,7 @@ void PythonQtShell_QTableView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5040,7 +5040,7 @@ void PythonQtShell_QTableView::closeEditor(QWidget* editor0, QAbstractItemDeleg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -5062,7 +5062,7 @@ void PythonQtShell_QTableView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5084,7 +5084,7 @@ void PythonQtShell_QTableView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5106,7 +5106,7 @@ void PythonQtShell_QTableView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5128,7 +5128,7 @@ void PythonQtShell_QTableView::currentChanged(const QModelIndex& current0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -5150,7 +5150,7 @@ void PythonQtShell_QTableView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5172,7 +5172,7 @@ void PythonQtShell_QTableView::dataChanged(const QModelIndex& topLeft0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -5194,7 +5194,7 @@ int PythonQtShell_QTableView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5227,7 +5227,7 @@ void PythonQtShell_QTableView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5249,7 +5249,7 @@ void PythonQtShell_QTableView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5271,7 +5271,7 @@ void PythonQtShell_QTableView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5293,7 +5293,7 @@ void PythonQtShell_QTableView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5315,7 +5315,7 @@ void PythonQtShell_QTableView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5337,7 +5337,7 @@ bool PythonQtShell_QTableView::edit(const QModelIndex& index0, QAbstractItemVi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -5370,7 +5370,7 @@ void PythonQtShell_QTableView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5392,7 +5392,7 @@ void PythonQtShell_QTableView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5414,7 +5414,7 @@ bool PythonQtShell_QTableView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5447,7 +5447,7 @@ bool PythonQtShell_QTableView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5480,7 +5480,7 @@ void PythonQtShell_QTableView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5502,7 +5502,7 @@ bool PythonQtShell_QTableView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5535,7 +5535,7 @@ void PythonQtShell_QTableView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5557,7 +5557,7 @@ bool PythonQtShell_QTableView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5590,7 +5590,7 @@ int PythonQtShell_QTableView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5623,7 +5623,7 @@ void PythonQtShell_QTableView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5645,7 +5645,7 @@ int PythonQtShell_QTableView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5678,7 +5678,7 @@ void PythonQtShell_QTableView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5700,7 +5700,7 @@ void PythonQtShell_QTableView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5722,7 +5722,7 @@ QModelIndex PythonQtShell_QTableView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -5755,7 +5755,7 @@ void PythonQtShell_QTableView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5777,7 +5777,7 @@ void PythonQtShell_QTableView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5799,7 +5799,7 @@ QVariant PythonQtShell_QTableView::inputMethodQuery(Qt::InputMethodQuery query if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5832,7 +5832,7 @@ bool PythonQtShell_QTableView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5865,7 +5865,7 @@ void PythonQtShell_QTableView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5887,7 +5887,7 @@ void PythonQtShell_QTableView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5909,7 +5909,7 @@ void PythonQtShell_QTableView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5931,7 +5931,7 @@ void PythonQtShell_QTableView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5953,7 +5953,7 @@ int PythonQtShell_QTableView::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5986,7 +5986,7 @@ QSize PythonQtShell_QTableView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6019,7 +6019,7 @@ void PythonQtShell_QTableView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6041,7 +6041,7 @@ void PythonQtShell_QTableView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6063,7 +6063,7 @@ void PythonQtShell_QTableView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6085,7 +6085,7 @@ void PythonQtShell_QTableView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6107,7 +6107,7 @@ QModelIndex PythonQtShell_QTableView::moveCursor(QAbstractItemView::CursorActio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -6140,7 +6140,7 @@ void PythonQtShell_QTableView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6162,7 +6162,7 @@ bool PythonQtShell_QTableView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6195,7 +6195,7 @@ QPaintEngine* PythonQtShell_QTableView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6228,7 +6228,7 @@ void PythonQtShell_QTableView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6250,7 +6250,7 @@ QPaintDevice* PythonQtShell_QTableView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6283,7 +6283,7 @@ void PythonQtShell_QTableView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6305,7 +6305,7 @@ void PythonQtShell_QTableView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6327,7 +6327,7 @@ void PythonQtShell_QTableView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -6349,7 +6349,7 @@ void PythonQtShell_QTableView::rowsInserted(const QModelIndex& parent0, int st if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -6371,7 +6371,7 @@ void PythonQtShell_QTableView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -6393,7 +6393,7 @@ void PythonQtShell_QTableView::scrollTo(const QModelIndex& index0, QAbstractIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -6415,7 +6415,7 @@ void PythonQtShell_QTableView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6437,7 +6437,7 @@ QList PythonQtShell_QTableView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -6470,7 +6470,7 @@ void PythonQtShell_QTableView::selectionChanged(const QItemSelection& selected0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -6492,7 +6492,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTableView::selectionCommand( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -6525,7 +6525,7 @@ void PythonQtShell_QTableView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -6547,7 +6547,7 @@ void PythonQtShell_QTableView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6569,7 +6569,7 @@ void PythonQtShell_QTableView::setSelection(const QRect& rect0, QItemSelectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -6591,7 +6591,7 @@ void PythonQtShell_QTableView::setSelectionModel(QItemSelectionModel* selection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -6613,7 +6613,7 @@ void PythonQtShell_QTableView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6635,7 +6635,7 @@ void PythonQtShell_QTableView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6657,7 +6657,7 @@ QPainter* PythonQtShell_QTableView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6690,7 +6690,7 @@ void PythonQtShell_QTableView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6712,7 +6712,7 @@ QSize PythonQtShell_QTableView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6745,7 +6745,7 @@ int PythonQtShell_QTableView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6778,7 +6778,7 @@ int PythonQtShell_QTableView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6811,7 +6811,7 @@ void PythonQtShell_QTableView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -6833,7 +6833,7 @@ void PythonQtShell_QTableView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6855,7 +6855,7 @@ void PythonQtShell_QTableView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6877,7 +6877,7 @@ void PythonQtShell_QTableView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6899,7 +6899,7 @@ void PythonQtShell_QTableView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6921,7 +6921,7 @@ void PythonQtShell_QTableView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6943,7 +6943,7 @@ int PythonQtShell_QTableView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6976,7 +6976,7 @@ void PythonQtShell_QTableView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6998,7 +6998,7 @@ void PythonQtShell_QTableView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7020,7 +7020,7 @@ QStyleOptionViewItem PythonQtShell_QTableView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -7053,7 +7053,7 @@ bool PythonQtShell_QTableView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7086,7 +7086,7 @@ QSize PythonQtShell_QTableView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7119,7 +7119,7 @@ QRect PythonQtShell_QTableView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -7152,7 +7152,7 @@ QRegion PythonQtShell_QTableView::visualRegionForSelection(const QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -7185,7 +7185,7 @@ void PythonQtShell_QTableView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7375,7 +7375,7 @@ void PythonQtShell_QTableWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7397,7 +7397,7 @@ void PythonQtShell_QTableWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7419,7 +7419,7 @@ void PythonQtShell_QTableWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7441,7 +7441,7 @@ void PythonQtShell_QTableWidget::closeEditor(QWidget* editor0, QAbstractItemDel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -7463,7 +7463,7 @@ void PythonQtShell_QTableWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7485,7 +7485,7 @@ void PythonQtShell_QTableWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7507,7 +7507,7 @@ void PythonQtShell_QTableWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7529,7 +7529,7 @@ void PythonQtShell_QTableWidget::currentChanged(const QModelIndex& current0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -7551,7 +7551,7 @@ void PythonQtShell_QTableWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7573,7 +7573,7 @@ void PythonQtShell_QTableWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -7595,7 +7595,7 @@ int PythonQtShell_QTableWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7628,7 +7628,7 @@ void PythonQtShell_QTableWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7650,7 +7650,7 @@ void PythonQtShell_QTableWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7672,7 +7672,7 @@ void PythonQtShell_QTableWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7694,7 +7694,7 @@ void PythonQtShell_QTableWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7716,7 +7716,7 @@ void PythonQtShell_QTableWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7738,7 +7738,7 @@ bool PythonQtShell_QTableWidget::dropMimeData(int row0, int column1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -7771,7 +7771,7 @@ bool PythonQtShell_QTableWidget::edit(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -7804,7 +7804,7 @@ void PythonQtShell_QTableWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7826,7 +7826,7 @@ void PythonQtShell_QTableWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7848,7 +7848,7 @@ bool PythonQtShell_QTableWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7881,7 +7881,7 @@ bool PythonQtShell_QTableWidget::eventFilter(QObject* object0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7914,7 +7914,7 @@ void PythonQtShell_QTableWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7936,7 +7936,7 @@ bool PythonQtShell_QTableWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7969,7 +7969,7 @@ void PythonQtShell_QTableWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7991,7 +7991,7 @@ bool PythonQtShell_QTableWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8024,7 +8024,7 @@ int PythonQtShell_QTableWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8057,7 +8057,7 @@ void PythonQtShell_QTableWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8079,7 +8079,7 @@ int PythonQtShell_QTableWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8112,7 +8112,7 @@ void PythonQtShell_QTableWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8134,7 +8134,7 @@ void PythonQtShell_QTableWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8156,7 +8156,7 @@ QModelIndex PythonQtShell_QTableWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -8189,7 +8189,7 @@ void PythonQtShell_QTableWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8211,7 +8211,7 @@ void PythonQtShell_QTableWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8233,7 +8233,7 @@ QVariant PythonQtShell_QTableWidget::inputMethodQuery(Qt::InputMethodQuery que if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8266,7 +8266,7 @@ bool PythonQtShell_QTableWidget::isIndexHidden(const QModelIndex& index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8299,7 +8299,7 @@ void PythonQtShell_QTableWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8321,7 +8321,7 @@ void PythonQtShell_QTableWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8343,7 +8343,7 @@ void PythonQtShell_QTableWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -8365,7 +8365,7 @@ void PythonQtShell_QTableWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8387,7 +8387,7 @@ int PythonQtShell_QTableWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8420,7 +8420,7 @@ QMimeData* PythonQtShell_QTableWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -8453,7 +8453,7 @@ QStringList PythonQtShell_QTableWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -8486,7 +8486,7 @@ QSize PythonQtShell_QTableWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8519,7 +8519,7 @@ void PythonQtShell_QTableWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8541,7 +8541,7 @@ void PythonQtShell_QTableWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8563,7 +8563,7 @@ void PythonQtShell_QTableWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8585,7 +8585,7 @@ void PythonQtShell_QTableWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8607,7 +8607,7 @@ QModelIndex PythonQtShell_QTableWidget::moveCursor(QAbstractItemView::CursorAct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -8640,7 +8640,7 @@ void PythonQtShell_QTableWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8662,7 +8662,7 @@ bool PythonQtShell_QTableWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8695,7 +8695,7 @@ QPaintEngine* PythonQtShell_QTableWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8728,7 +8728,7 @@ void PythonQtShell_QTableWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8750,7 +8750,7 @@ QPaintDevice* PythonQtShell_QTableWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8783,7 +8783,7 @@ void PythonQtShell_QTableWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8805,7 +8805,7 @@ void PythonQtShell_QTableWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8827,7 +8827,7 @@ void PythonQtShell_QTableWidget::rowsAboutToBeRemoved(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -8849,7 +8849,7 @@ void PythonQtShell_QTableWidget::rowsInserted(const QModelIndex& parent0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -8871,7 +8871,7 @@ void PythonQtShell_QTableWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8893,7 +8893,7 @@ void PythonQtShell_QTableWidget::scrollTo(const QModelIndex& index0, QAbstractI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -8915,7 +8915,7 @@ void PythonQtShell_QTableWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8937,7 +8937,7 @@ QList PythonQtShell_QTableWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -8970,7 +8970,7 @@ void PythonQtShell_QTableWidget::selectionChanged(const QItemSelection& selecte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -8992,7 +8992,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTableWidget::selectionComman if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -9025,7 +9025,7 @@ void PythonQtShell_QTableWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9047,7 +9047,7 @@ void PythonQtShell_QTableWidget::setSelection(const QRect& rect0, QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -9069,7 +9069,7 @@ void PythonQtShell_QTableWidget::setSelectionModel(QItemSelectionModel* selecti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -9091,7 +9091,7 @@ void PythonQtShell_QTableWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9113,7 +9113,7 @@ void PythonQtShell_QTableWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9135,7 +9135,7 @@ QPainter* PythonQtShell_QTableWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9168,7 +9168,7 @@ void PythonQtShell_QTableWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9190,7 +9190,7 @@ QSize PythonQtShell_QTableWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9223,7 +9223,7 @@ int PythonQtShell_QTableWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9256,7 +9256,7 @@ int PythonQtShell_QTableWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9289,7 +9289,7 @@ void PythonQtShell_QTableWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -9311,7 +9311,7 @@ Qt::DropActions PythonQtShell_QTableWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -9344,7 +9344,7 @@ void PythonQtShell_QTableWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9366,7 +9366,7 @@ void PythonQtShell_QTableWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9388,7 +9388,7 @@ void PythonQtShell_QTableWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9410,7 +9410,7 @@ void PythonQtShell_QTableWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9432,7 +9432,7 @@ void PythonQtShell_QTableWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9454,7 +9454,7 @@ int PythonQtShell_QTableWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9487,7 +9487,7 @@ void PythonQtShell_QTableWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9509,7 +9509,7 @@ void PythonQtShell_QTableWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9531,7 +9531,7 @@ QStyleOptionViewItem PythonQtShell_QTableWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -9564,7 +9564,7 @@ bool PythonQtShell_QTableWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9597,7 +9597,7 @@ QSize PythonQtShell_QTableWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9630,7 +9630,7 @@ QRect PythonQtShell_QTableWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -9663,7 +9663,7 @@ QRegion PythonQtShell_QTableWidget::visualRegionForSelection(const QItemSelecti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -9696,7 +9696,7 @@ void PythonQtShell_QTableWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10000,7 +10000,7 @@ QTableWidgetItem* PythonQtShell_QTableWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTableWidgetItem*"}; @@ -10033,7 +10033,7 @@ QVariant PythonQtShell_QTableWidgetItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -10066,7 +10066,7 @@ void PythonQtShell_QTableWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -10088,7 +10088,7 @@ void PythonQtShell_QTableWidgetItem::setData(int role0, const QVariant& value1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -10110,7 +10110,7 @@ void PythonQtShell_QTableWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -10508,7 +10508,7 @@ void PythonQtShell_QTapAndHoldGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10530,7 +10530,7 @@ void PythonQtShell_QTapAndHoldGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10552,7 +10552,7 @@ bool PythonQtShell_QTapAndHoldGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10585,7 +10585,7 @@ bool PythonQtShell_QTapAndHoldGesture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10618,7 +10618,7 @@ void PythonQtShell_QTapAndHoldGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10683,7 +10683,7 @@ void PythonQtShell_QTapGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10705,7 +10705,7 @@ void PythonQtShell_QTapGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10727,7 +10727,7 @@ bool PythonQtShell_QTapGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10760,7 +10760,7 @@ bool PythonQtShell_QTapGesture::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10793,7 +10793,7 @@ void PythonQtShell_QTapGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11192,7 +11192,7 @@ void PythonQtShell_QTextBlockGroup::blockFormatChanged(const QTextBlock& block0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -11214,7 +11214,7 @@ void PythonQtShell_QTextBlockGroup::blockInserted(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -11236,7 +11236,7 @@ void PythonQtShell_QTextBlockGroup::blockRemoved(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -11258,7 +11258,7 @@ void PythonQtShell_QTextBlockGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11280,7 +11280,7 @@ void PythonQtShell_QTextBlockGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11302,7 +11302,7 @@ bool PythonQtShell_QTextBlockGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11335,7 +11335,7 @@ bool PythonQtShell_QTextBlockGroup::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11368,7 +11368,7 @@ void PythonQtShell_QTextBlockGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11443,7 +11443,7 @@ void PythonQtShell_QTextBrowser::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11465,7 +11465,7 @@ void PythonQtShell_QTextBrowser::backward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("backward"); + static PyObject* name = PyUnicode_FromString("backward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11487,7 +11487,7 @@ bool PythonQtShell_QTextBrowser::canInsertFromMimeData(const QMimeData* source if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -11520,7 +11520,7 @@ void PythonQtShell_QTextBrowser::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11542,7 +11542,7 @@ void PythonQtShell_QTextBrowser::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11564,7 +11564,7 @@ void PythonQtShell_QTextBrowser::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11586,7 +11586,7 @@ void PythonQtShell_QTextBrowser::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11608,7 +11608,7 @@ QMimeData* PythonQtShell_QTextBrowser::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -11641,7 +11641,7 @@ void PythonQtShell_QTextBrowser::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11663,7 +11663,7 @@ int PythonQtShell_QTextBrowser::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11696,7 +11696,7 @@ void PythonQtShell_QTextBrowser::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -11718,7 +11718,7 @@ void PythonQtShell_QTextBrowser::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11740,7 +11740,7 @@ void PythonQtShell_QTextBrowser::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11762,7 +11762,7 @@ void PythonQtShell_QTextBrowser::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11784,7 +11784,7 @@ void PythonQtShell_QTextBrowser::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11806,7 +11806,7 @@ void PythonQtShell_QTextBrowser::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11828,7 +11828,7 @@ bool PythonQtShell_QTextBrowser::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11861,7 +11861,7 @@ bool PythonQtShell_QTextBrowser::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11894,7 +11894,7 @@ void PythonQtShell_QTextBrowser::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11916,7 +11916,7 @@ bool PythonQtShell_QTextBrowser::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11949,7 +11949,7 @@ void PythonQtShell_QTextBrowser::focusOutEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11971,7 +11971,7 @@ void PythonQtShell_QTextBrowser::forward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("forward"); + static PyObject* name = PyUnicode_FromString("forward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11993,7 +11993,7 @@ bool PythonQtShell_QTextBrowser::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12026,7 +12026,7 @@ int PythonQtShell_QTextBrowser::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12059,7 +12059,7 @@ void PythonQtShell_QTextBrowser::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12081,7 +12081,7 @@ void PythonQtShell_QTextBrowser::home() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("home"); + static PyObject* name = PyUnicode_FromString("home"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12103,7 +12103,7 @@ void PythonQtShell_QTextBrowser::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12125,7 +12125,7 @@ void PythonQtShell_QTextBrowser::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12147,7 +12147,7 @@ QVariant PythonQtShell_QTextBrowser::inputMethodQuery(Qt::InputMethodQuery pro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12180,7 +12180,7 @@ void PythonQtShell_QTextBrowser::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -12202,7 +12202,7 @@ void PythonQtShell_QTextBrowser::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12224,7 +12224,7 @@ void PythonQtShell_QTextBrowser::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12246,7 +12246,7 @@ void PythonQtShell_QTextBrowser::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12268,7 +12268,7 @@ QVariant PythonQtShell_QTextBrowser::loadResource(int type0, const QUrl& name if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -12301,7 +12301,7 @@ int PythonQtShell_QTextBrowser::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12334,7 +12334,7 @@ QSize PythonQtShell_QTextBrowser::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12367,7 +12367,7 @@ void PythonQtShell_QTextBrowser::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12389,7 +12389,7 @@ void PythonQtShell_QTextBrowser::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12411,7 +12411,7 @@ void PythonQtShell_QTextBrowser::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12433,7 +12433,7 @@ void PythonQtShell_QTextBrowser::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12455,7 +12455,7 @@ void PythonQtShell_QTextBrowser::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12477,7 +12477,7 @@ bool PythonQtShell_QTextBrowser::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12510,7 +12510,7 @@ QPaintEngine* PythonQtShell_QTextBrowser::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12543,7 +12543,7 @@ void PythonQtShell_QTextBrowser::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12565,7 +12565,7 @@ QPaintDevice* PythonQtShell_QTextBrowser::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12598,7 +12598,7 @@ void PythonQtShell_QTextBrowser::reload() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reload"); + static PyObject* name = PyUnicode_FromString("reload"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12620,7 +12620,7 @@ void PythonQtShell_QTextBrowser::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12642,7 +12642,7 @@ void PythonQtShell_QTextBrowser::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -12664,7 +12664,7 @@ void PythonQtShell_QTextBrowser::setSource(const QUrl& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSource"); + static PyObject* name = PyUnicode_FromString("setSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&"}; @@ -12686,7 +12686,7 @@ void PythonQtShell_QTextBrowser::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12708,7 +12708,7 @@ void PythonQtShell_QTextBrowser::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12730,7 +12730,7 @@ QPainter* PythonQtShell_QTextBrowser::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12763,7 +12763,7 @@ void PythonQtShell_QTextBrowser::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12785,7 +12785,7 @@ QSize PythonQtShell_QTextBrowser::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12818,7 +12818,7 @@ void PythonQtShell_QTextBrowser::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12840,7 +12840,7 @@ void PythonQtShell_QTextBrowser::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12862,7 +12862,7 @@ bool PythonQtShell_QTextBrowser::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12895,7 +12895,7 @@ QSize PythonQtShell_QTextBrowser::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12928,7 +12928,7 @@ void PythonQtShell_QTextBrowser::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13759,7 +13759,7 @@ void PythonQtShell_QTextDocument::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13781,7 +13781,7 @@ void PythonQtShell_QTextDocument::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13803,7 +13803,7 @@ QTextObject* PythonQtShell_QTextDocument::createObject(const QTextFormat& f0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTextObject*" , "const QTextFormat&"}; @@ -13836,7 +13836,7 @@ void PythonQtShell_QTextDocument::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13858,7 +13858,7 @@ bool PythonQtShell_QTextDocument::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13891,7 +13891,7 @@ bool PythonQtShell_QTextDocument::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13924,7 +13924,7 @@ QVariant PythonQtShell_QTextDocument::loadResource(int type0, const QUrl& nam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -13957,7 +13957,7 @@ void PythonQtShell_QTextDocument::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14523,7 +14523,7 @@ void PythonQtShell_QTextEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14545,7 +14545,7 @@ bool PythonQtShell_QTextEdit::canInsertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -14578,7 +14578,7 @@ void PythonQtShell_QTextEdit::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14600,7 +14600,7 @@ void PythonQtShell_QTextEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14622,7 +14622,7 @@ void PythonQtShell_QTextEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14644,7 +14644,7 @@ void PythonQtShell_QTextEdit::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14666,7 +14666,7 @@ QMimeData* PythonQtShell_QTextEdit::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -14699,7 +14699,7 @@ void PythonQtShell_QTextEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14721,7 +14721,7 @@ int PythonQtShell_QTextEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14754,7 +14754,7 @@ void PythonQtShell_QTextEdit::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -14776,7 +14776,7 @@ void PythonQtShell_QTextEdit::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14798,7 +14798,7 @@ void PythonQtShell_QTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14820,7 +14820,7 @@ void PythonQtShell_QTextEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14842,7 +14842,7 @@ void PythonQtShell_QTextEdit::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14864,7 +14864,7 @@ void PythonQtShell_QTextEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14886,7 +14886,7 @@ bool PythonQtShell_QTextEdit::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14919,7 +14919,7 @@ bool PythonQtShell_QTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14952,7 +14952,7 @@ void PythonQtShell_QTextEdit::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14974,7 +14974,7 @@ bool PythonQtShell_QTextEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15007,7 +15007,7 @@ void PythonQtShell_QTextEdit::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15029,7 +15029,7 @@ bool PythonQtShell_QTextEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15062,7 +15062,7 @@ int PythonQtShell_QTextEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15095,7 +15095,7 @@ void PythonQtShell_QTextEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15117,7 +15117,7 @@ void PythonQtShell_QTextEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15139,7 +15139,7 @@ void PythonQtShell_QTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15161,7 +15161,7 @@ QVariant PythonQtShell_QTextEdit::inputMethodQuery(Qt::InputMethodQuery proper if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15194,7 +15194,7 @@ void PythonQtShell_QTextEdit::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -15216,7 +15216,7 @@ void PythonQtShell_QTextEdit::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15238,7 +15238,7 @@ void PythonQtShell_QTextEdit::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15260,7 +15260,7 @@ void PythonQtShell_QTextEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15282,7 +15282,7 @@ QVariant PythonQtShell_QTextEdit::loadResource(int type0, const QUrl& name1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -15315,7 +15315,7 @@ int PythonQtShell_QTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15348,7 +15348,7 @@ QSize PythonQtShell_QTextEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15381,7 +15381,7 @@ void PythonQtShell_QTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15403,7 +15403,7 @@ void PythonQtShell_QTextEdit::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15425,7 +15425,7 @@ void PythonQtShell_QTextEdit::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15447,7 +15447,7 @@ void PythonQtShell_QTextEdit::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15469,7 +15469,7 @@ void PythonQtShell_QTextEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15491,7 +15491,7 @@ bool PythonQtShell_QTextEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15524,7 +15524,7 @@ QPaintEngine* PythonQtShell_QTextEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15557,7 +15557,7 @@ void PythonQtShell_QTextEdit::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15579,7 +15579,7 @@ QPaintDevice* PythonQtShell_QTextEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15612,7 +15612,7 @@ void PythonQtShell_QTextEdit::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15634,7 +15634,7 @@ void PythonQtShell_QTextEdit::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -15656,7 +15656,7 @@ void PythonQtShell_QTextEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15678,7 +15678,7 @@ void PythonQtShell_QTextEdit::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -15700,7 +15700,7 @@ QPainter* PythonQtShell_QTextEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15733,7 +15733,7 @@ void PythonQtShell_QTextEdit::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15755,7 +15755,7 @@ QSize PythonQtShell_QTextEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15788,7 +15788,7 @@ void PythonQtShell_QTextEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15810,7 +15810,7 @@ void PythonQtShell_QTextEdit::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15832,7 +15832,7 @@ bool PythonQtShell_QTextEdit::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15865,7 +15865,7 @@ QSize PythonQtShell_QTextEdit::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15898,7 +15898,7 @@ void PythonQtShell_QTextEdit::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp index 5d5f61815..dc1cc11aa 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp @@ -146,7 +146,7 @@ void PythonQtShell_QTextFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -168,7 +168,7 @@ void PythonQtShell_QTextFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -190,7 +190,7 @@ bool PythonQtShell_QTextFrame::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -223,7 +223,7 @@ bool PythonQtShell_QTextFrame::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -256,7 +256,7 @@ void PythonQtShell_QTextFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1054,7 +1054,7 @@ void PythonQtShell_QTextList::blockFormatChanged(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -1076,7 +1076,7 @@ void PythonQtShell_QTextList::blockInserted(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -1098,7 +1098,7 @@ void PythonQtShell_QTextList::blockRemoved(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -1120,7 +1120,7 @@ void PythonQtShell_QTextList::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1142,7 +1142,7 @@ void PythonQtShell_QTextList::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1164,7 +1164,7 @@ bool PythonQtShell_QTextList::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1197,7 +1197,7 @@ bool PythonQtShell_QTextList::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1230,7 +1230,7 @@ void PythonQtShell_QTextList::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1379,7 +1379,7 @@ void PythonQtShell_QTextObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1401,7 +1401,7 @@ void PythonQtShell_QTextObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1423,7 +1423,7 @@ bool PythonQtShell_QTextObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1456,7 +1456,7 @@ bool PythonQtShell_QTextObject::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1489,7 +1489,7 @@ void PythonQtShell_QTextObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1687,7 +1687,7 @@ void PythonQtShell_QTextTable::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1709,7 +1709,7 @@ void PythonQtShell_QTextTable::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1731,7 +1731,7 @@ bool PythonQtShell_QTextTable::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1764,7 +1764,7 @@ bool PythonQtShell_QTextTable::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1797,7 +1797,7 @@ void PythonQtShell_QTextTable::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2334,7 +2334,7 @@ void PythonQtShell_QTimeEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2356,7 +2356,7 @@ void PythonQtShell_QTimeEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2378,7 +2378,7 @@ void PythonQtShell_QTimeEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2400,7 +2400,7 @@ void PythonQtShell_QTimeEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2422,7 +2422,7 @@ void PythonQtShell_QTimeEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2444,7 +2444,7 @@ void PythonQtShell_QTimeEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2466,7 +2466,7 @@ void PythonQtShell_QTimeEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2488,7 +2488,7 @@ QDateTime PythonQtShell_QTimeEdit::dateTimeFromText(const QString& text0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -2521,7 +2521,7 @@ int PythonQtShell_QTimeEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2554,7 +2554,7 @@ void PythonQtShell_QTimeEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2576,7 +2576,7 @@ void PythonQtShell_QTimeEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2598,7 +2598,7 @@ void PythonQtShell_QTimeEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2620,7 +2620,7 @@ void PythonQtShell_QTimeEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2642,7 +2642,7 @@ void PythonQtShell_QTimeEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2664,7 +2664,7 @@ bool PythonQtShell_QTimeEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2697,7 +2697,7 @@ bool PythonQtShell_QTimeEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2730,7 +2730,7 @@ void PythonQtShell_QTimeEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2752,7 +2752,7 @@ void PythonQtShell_QTimeEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2774,7 +2774,7 @@ bool PythonQtShell_QTimeEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2807,7 +2807,7 @@ void PythonQtShell_QTimeEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2829,7 +2829,7 @@ bool PythonQtShell_QTimeEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2862,7 +2862,7 @@ int PythonQtShell_QTimeEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2895,7 +2895,7 @@ void PythonQtShell_QTimeEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2917,7 +2917,7 @@ void PythonQtShell_QTimeEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2939,7 +2939,7 @@ void PythonQtShell_QTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2961,7 +2961,7 @@ QVariant PythonQtShell_QTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2994,7 +2994,7 @@ void PythonQtShell_QTimeEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3016,7 +3016,7 @@ void PythonQtShell_QTimeEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3038,7 +3038,7 @@ void PythonQtShell_QTimeEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3060,7 +3060,7 @@ int PythonQtShell_QTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3093,7 +3093,7 @@ QSize PythonQtShell_QTimeEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3126,7 +3126,7 @@ void PythonQtShell_QTimeEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3148,7 +3148,7 @@ void PythonQtShell_QTimeEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3170,7 +3170,7 @@ void PythonQtShell_QTimeEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3192,7 +3192,7 @@ void PythonQtShell_QTimeEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3214,7 +3214,7 @@ void PythonQtShell_QTimeEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3236,7 +3236,7 @@ bool PythonQtShell_QTimeEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3269,7 +3269,7 @@ QPaintEngine* PythonQtShell_QTimeEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3302,7 +3302,7 @@ void PythonQtShell_QTimeEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3324,7 +3324,7 @@ QPaintDevice* PythonQtShell_QTimeEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3357,7 +3357,7 @@ void PythonQtShell_QTimeEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3379,7 +3379,7 @@ void PythonQtShell_QTimeEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3401,7 +3401,7 @@ QPainter* PythonQtShell_QTimeEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3434,7 +3434,7 @@ void PythonQtShell_QTimeEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3456,7 +3456,7 @@ QSize PythonQtShell_QTimeEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3489,7 +3489,7 @@ void PythonQtShell_QTimeEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3511,7 +3511,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QTimeEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -3544,7 +3544,7 @@ void PythonQtShell_QTimeEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3566,7 +3566,7 @@ QString PythonQtShell_QTimeEdit::textFromDateTime(const QDateTime& dt0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -3599,7 +3599,7 @@ void PythonQtShell_QTimeEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3621,7 +3621,7 @@ QValidator::State PythonQtShell_QTimeEdit::validate(QString& input0, int& pos if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3654,7 +3654,7 @@ void PythonQtShell_QTimeEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3703,7 +3703,7 @@ void PythonQtShell_QToolBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3725,7 +3725,7 @@ void PythonQtShell_QToolBar::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3747,7 +3747,7 @@ void PythonQtShell_QToolBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3769,7 +3769,7 @@ void PythonQtShell_QToolBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3791,7 +3791,7 @@ void PythonQtShell_QToolBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3813,7 +3813,7 @@ void PythonQtShell_QToolBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3835,7 +3835,7 @@ int PythonQtShell_QToolBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3868,7 +3868,7 @@ void PythonQtShell_QToolBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3890,7 +3890,7 @@ void PythonQtShell_QToolBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3912,7 +3912,7 @@ void PythonQtShell_QToolBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3934,7 +3934,7 @@ void PythonQtShell_QToolBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3956,7 +3956,7 @@ void PythonQtShell_QToolBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3978,7 +3978,7 @@ bool PythonQtShell_QToolBar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4011,7 +4011,7 @@ bool PythonQtShell_QToolBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4044,7 +4044,7 @@ void PythonQtShell_QToolBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4066,7 +4066,7 @@ bool PythonQtShell_QToolBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4099,7 +4099,7 @@ void PythonQtShell_QToolBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4121,7 +4121,7 @@ bool PythonQtShell_QToolBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4154,7 +4154,7 @@ int PythonQtShell_QToolBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4187,7 +4187,7 @@ void PythonQtShell_QToolBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4209,7 +4209,7 @@ void PythonQtShell_QToolBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4231,7 +4231,7 @@ void PythonQtShell_QToolBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4253,7 +4253,7 @@ QVariant PythonQtShell_QToolBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4286,7 +4286,7 @@ void PythonQtShell_QToolBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4308,7 +4308,7 @@ void PythonQtShell_QToolBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4330,7 +4330,7 @@ void PythonQtShell_QToolBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4352,7 +4352,7 @@ int PythonQtShell_QToolBar::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4385,7 +4385,7 @@ QSize PythonQtShell_QToolBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4418,7 +4418,7 @@ void PythonQtShell_QToolBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4440,7 +4440,7 @@ void PythonQtShell_QToolBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4462,7 +4462,7 @@ void PythonQtShell_QToolBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4484,7 +4484,7 @@ void PythonQtShell_QToolBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4506,7 +4506,7 @@ void PythonQtShell_QToolBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4528,7 +4528,7 @@ bool PythonQtShell_QToolBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4561,7 +4561,7 @@ QPaintEngine* PythonQtShell_QToolBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4594,7 +4594,7 @@ void PythonQtShell_QToolBar::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4616,7 +4616,7 @@ QPaintDevice* PythonQtShell_QToolBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4649,7 +4649,7 @@ void PythonQtShell_QToolBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4671,7 +4671,7 @@ void PythonQtShell_QToolBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4693,7 +4693,7 @@ QPainter* PythonQtShell_QToolBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4726,7 +4726,7 @@ void PythonQtShell_QToolBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4748,7 +4748,7 @@ QSize PythonQtShell_QToolBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4781,7 +4781,7 @@ void PythonQtShell_QToolBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4803,7 +4803,7 @@ void PythonQtShell_QToolBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4825,7 +4825,7 @@ void PythonQtShell_QToolBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5020,7 +5020,7 @@ void PythonQtShell_QToolBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5042,7 +5042,7 @@ void PythonQtShell_QToolBox::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5064,7 +5064,7 @@ void PythonQtShell_QToolBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5086,7 +5086,7 @@ void PythonQtShell_QToolBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5108,7 +5108,7 @@ void PythonQtShell_QToolBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5130,7 +5130,7 @@ void PythonQtShell_QToolBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5152,7 +5152,7 @@ int PythonQtShell_QToolBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5185,7 +5185,7 @@ void PythonQtShell_QToolBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5207,7 +5207,7 @@ void PythonQtShell_QToolBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5229,7 +5229,7 @@ void PythonQtShell_QToolBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5251,7 +5251,7 @@ void PythonQtShell_QToolBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5273,7 +5273,7 @@ void PythonQtShell_QToolBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5295,7 +5295,7 @@ bool PythonQtShell_QToolBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5328,7 +5328,7 @@ bool PythonQtShell_QToolBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5361,7 +5361,7 @@ void PythonQtShell_QToolBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5383,7 +5383,7 @@ bool PythonQtShell_QToolBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5416,7 +5416,7 @@ void PythonQtShell_QToolBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5438,7 +5438,7 @@ bool PythonQtShell_QToolBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5471,7 +5471,7 @@ int PythonQtShell_QToolBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5504,7 +5504,7 @@ void PythonQtShell_QToolBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5526,7 +5526,7 @@ void PythonQtShell_QToolBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5548,7 +5548,7 @@ void PythonQtShell_QToolBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5570,7 +5570,7 @@ QVariant PythonQtShell_QToolBox::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5603,7 +5603,7 @@ void PythonQtShell_QToolBox::itemInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemInserted"); + static PyObject* name = PyUnicode_FromString("itemInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5625,7 +5625,7 @@ void PythonQtShell_QToolBox::itemRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemRemoved"); + static PyObject* name = PyUnicode_FromString("itemRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5647,7 +5647,7 @@ void PythonQtShell_QToolBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5669,7 +5669,7 @@ void PythonQtShell_QToolBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5691,7 +5691,7 @@ void PythonQtShell_QToolBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5713,7 +5713,7 @@ int PythonQtShell_QToolBox::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5746,7 +5746,7 @@ QSize PythonQtShell_QToolBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5779,7 +5779,7 @@ void PythonQtShell_QToolBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5801,7 +5801,7 @@ void PythonQtShell_QToolBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5823,7 +5823,7 @@ void PythonQtShell_QToolBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5845,7 +5845,7 @@ void PythonQtShell_QToolBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5867,7 +5867,7 @@ void PythonQtShell_QToolBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5889,7 +5889,7 @@ bool PythonQtShell_QToolBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5922,7 +5922,7 @@ QPaintEngine* PythonQtShell_QToolBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5955,7 +5955,7 @@ void PythonQtShell_QToolBox::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5977,7 +5977,7 @@ QPaintDevice* PythonQtShell_QToolBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6010,7 +6010,7 @@ void PythonQtShell_QToolBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6032,7 +6032,7 @@ void PythonQtShell_QToolBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6054,7 +6054,7 @@ QPainter* PythonQtShell_QToolBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6087,7 +6087,7 @@ void PythonQtShell_QToolBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6109,7 +6109,7 @@ QSize PythonQtShell_QToolBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6142,7 +6142,7 @@ void PythonQtShell_QToolBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6164,7 +6164,7 @@ void PythonQtShell_QToolBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6186,7 +6186,7 @@ void PythonQtShell_QToolBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6331,7 +6331,7 @@ void PythonQtShell_QToolButton::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6353,7 +6353,7 @@ void PythonQtShell_QToolButton::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6375,7 +6375,7 @@ void PythonQtShell_QToolButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6397,7 +6397,7 @@ void PythonQtShell_QToolButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6419,7 +6419,7 @@ void PythonQtShell_QToolButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6441,7 +6441,7 @@ void PythonQtShell_QToolButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6463,7 +6463,7 @@ void PythonQtShell_QToolButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6485,7 +6485,7 @@ int PythonQtShell_QToolButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6518,7 +6518,7 @@ void PythonQtShell_QToolButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6540,7 +6540,7 @@ void PythonQtShell_QToolButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6562,7 +6562,7 @@ void PythonQtShell_QToolButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6584,7 +6584,7 @@ void PythonQtShell_QToolButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6606,7 +6606,7 @@ void PythonQtShell_QToolButton::enterEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6628,7 +6628,7 @@ bool PythonQtShell_QToolButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6661,7 +6661,7 @@ bool PythonQtShell_QToolButton::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6694,7 +6694,7 @@ void PythonQtShell_QToolButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6716,7 +6716,7 @@ bool PythonQtShell_QToolButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6749,7 +6749,7 @@ void PythonQtShell_QToolButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6771,7 +6771,7 @@ bool PythonQtShell_QToolButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6804,7 +6804,7 @@ int PythonQtShell_QToolButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6837,7 +6837,7 @@ void PythonQtShell_QToolButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6859,7 +6859,7 @@ bool PythonQtShell_QToolButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -6892,7 +6892,7 @@ void PythonQtShell_QToolButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6914,7 +6914,7 @@ void PythonQtShell_QToolButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6936,7 +6936,7 @@ QVariant PythonQtShell_QToolButton::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6969,7 +6969,7 @@ void PythonQtShell_QToolButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6991,7 +6991,7 @@ void PythonQtShell_QToolButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7013,7 +7013,7 @@ void PythonQtShell_QToolButton::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7035,7 +7035,7 @@ int PythonQtShell_QToolButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7068,7 +7068,7 @@ QSize PythonQtShell_QToolButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7101,7 +7101,7 @@ void PythonQtShell_QToolButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7123,7 +7123,7 @@ void PythonQtShell_QToolButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7145,7 +7145,7 @@ void PythonQtShell_QToolButton::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7167,7 +7167,7 @@ void PythonQtShell_QToolButton::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7189,7 +7189,7 @@ void PythonQtShell_QToolButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7211,7 +7211,7 @@ bool PythonQtShell_QToolButton::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7244,7 +7244,7 @@ void PythonQtShell_QToolButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7266,7 +7266,7 @@ QPaintEngine* PythonQtShell_QToolButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7299,7 +7299,7 @@ void PythonQtShell_QToolButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7321,7 +7321,7 @@ QPaintDevice* PythonQtShell_QToolButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7354,7 +7354,7 @@ void PythonQtShell_QToolButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7376,7 +7376,7 @@ void PythonQtShell_QToolButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7398,7 +7398,7 @@ QPainter* PythonQtShell_QToolButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7431,7 +7431,7 @@ void PythonQtShell_QToolButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7453,7 +7453,7 @@ QSize PythonQtShell_QToolButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7486,7 +7486,7 @@ void PythonQtShell_QToolButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7508,7 +7508,7 @@ void PythonQtShell_QToolButton::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7530,7 +7530,7 @@ void PythonQtShell_QToolButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8072,7 +8072,7 @@ QModelIndex PythonQtShell_QTransposeProxyModel::buddy(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8105,7 +8105,7 @@ bool PythonQtShell_QTransposeProxyModel::canDropMimeData(const QMimeData* data if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -8138,7 +8138,7 @@ bool PythonQtShell_QTransposeProxyModel::canFetchMore(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8171,7 +8171,7 @@ void PythonQtShell_QTransposeProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8193,7 +8193,7 @@ int PythonQtShell_QTransposeProxyModel::columnCount(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -8226,7 +8226,7 @@ void PythonQtShell_QTransposeProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8248,7 +8248,7 @@ QVariant PythonQtShell_QTransposeProxyModel::data(const QModelIndex& proxyInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -8281,7 +8281,7 @@ bool PythonQtShell_QTransposeProxyModel::dropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -8314,7 +8314,7 @@ bool PythonQtShell_QTransposeProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8347,7 +8347,7 @@ bool PythonQtShell_QTransposeProxyModel::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8380,7 +8380,7 @@ void PythonQtShell_QTransposeProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -8402,7 +8402,7 @@ Qt::ItemFlags PythonQtShell_QTransposeProxyModel::flags(const QModelIndex& ind if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -8435,7 +8435,7 @@ bool PythonQtShell_QTransposeProxyModel::hasChildren(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8468,7 +8468,7 @@ QVariant PythonQtShell_QTransposeProxyModel::headerData(int section0, Qt::Orie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -8501,7 +8501,7 @@ QModelIndex PythonQtShell_QTransposeProxyModel::index(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8534,7 +8534,7 @@ bool PythonQtShell_QTransposeProxyModel::insertColumns(int column0, int count if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8567,7 +8567,7 @@ bool PythonQtShell_QTransposeProxyModel::insertRows(int row0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8600,7 +8600,7 @@ QMap PythonQtShell_QTransposeProxyModel::itemData(const QModel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -8633,7 +8633,7 @@ QModelIndex PythonQtShell_QTransposeProxyModel::mapFromSource(const QModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8666,7 +8666,7 @@ QItemSelection PythonQtShell_QTransposeProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -8699,7 +8699,7 @@ QItemSelection PythonQtShell_QTransposeProxyModel::mapSelectionToSource(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -8732,7 +8732,7 @@ QModelIndex PythonQtShell_QTransposeProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8765,7 +8765,7 @@ QList PythonQtShell_QTransposeProxyModel::match(const QModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -8798,7 +8798,7 @@ QMimeData* PythonQtShell_QTransposeProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -8831,7 +8831,7 @@ QStringList PythonQtShell_QTransposeProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -8864,7 +8864,7 @@ bool PythonQtShell_QTransposeProxyModel::moveColumns(const QModelIndex& source if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -8897,7 +8897,7 @@ bool PythonQtShell_QTransposeProxyModel::moveRows(const QModelIndex& sourcePar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -8930,7 +8930,7 @@ QModelIndex PythonQtShell_QTransposeProxyModel::parent(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8963,7 +8963,7 @@ bool PythonQtShell_QTransposeProxyModel::removeColumns(int column0, int count if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8996,7 +8996,7 @@ bool PythonQtShell_QTransposeProxyModel::removeRows(int row0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9029,7 +9029,7 @@ void PythonQtShell_QTransposeProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9051,7 +9051,7 @@ QHash PythonQtShell_QTransposeProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -9084,7 +9084,7 @@ int PythonQtShell_QTransposeProxyModel::rowCount(const QModelIndex& parent0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -9117,7 +9117,7 @@ bool PythonQtShell_QTransposeProxyModel::setData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -9150,7 +9150,7 @@ bool PythonQtShell_QTransposeProxyModel::setHeaderData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -9183,7 +9183,7 @@ bool PythonQtShell_QTransposeProxyModel::setItemData(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -9216,7 +9216,7 @@ void PythonQtShell_QTransposeProxyModel::setSourceModel(QAbstractItemModel* new if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -9238,7 +9238,7 @@ QModelIndex PythonQtShell_QTransposeProxyModel::sibling(int row0, int column1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -9271,7 +9271,7 @@ void PythonQtShell_QTransposeProxyModel::sort(int column0, Qt::SortOrder order if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -9293,7 +9293,7 @@ QSize PythonQtShell_QTransposeProxyModel::span(const QModelIndex& index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -9326,7 +9326,7 @@ bool PythonQtShell_QTransposeProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9359,7 +9359,7 @@ Qt::DropActions PythonQtShell_QTransposeProxyModel::supportedDragActions() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -9392,7 +9392,7 @@ Qt::DropActions PythonQtShell_QTransposeProxyModel::supportedDropActions() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -9425,7 +9425,7 @@ void PythonQtShell_QTransposeProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9470,7 +9470,7 @@ void PythonQtShell_QTreeView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9492,7 +9492,7 @@ void PythonQtShell_QTreeView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9514,7 +9514,7 @@ void PythonQtShell_QTreeView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9536,7 +9536,7 @@ void PythonQtShell_QTreeView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9558,7 +9558,7 @@ void PythonQtShell_QTreeView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9580,7 +9580,7 @@ void PythonQtShell_QTreeView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9602,7 +9602,7 @@ void PythonQtShell_QTreeView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9624,7 +9624,7 @@ void PythonQtShell_QTreeView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -9646,7 +9646,7 @@ void PythonQtShell_QTreeView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9668,7 +9668,7 @@ void PythonQtShell_QTreeView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -9690,7 +9690,7 @@ int PythonQtShell_QTreeView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9723,7 +9723,7 @@ void PythonQtShell_QTreeView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9745,7 +9745,7 @@ void PythonQtShell_QTreeView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9767,7 +9767,7 @@ void PythonQtShell_QTreeView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9789,7 +9789,7 @@ void PythonQtShell_QTreeView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9811,7 +9811,7 @@ void PythonQtShell_QTreeView::drawBranches(QPainter* painter0, const QRect& re if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -9833,7 +9833,7 @@ void PythonQtShell_QTreeView::drawRow(QPainter* painter0, const QStyleOptionVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -9855,7 +9855,7 @@ void PythonQtShell_QTreeView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9877,7 +9877,7 @@ bool PythonQtShell_QTreeView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -9910,7 +9910,7 @@ void PythonQtShell_QTreeView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -9932,7 +9932,7 @@ void PythonQtShell_QTreeView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9954,7 +9954,7 @@ bool PythonQtShell_QTreeView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9987,7 +9987,7 @@ bool PythonQtShell_QTreeView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10020,7 +10020,7 @@ void PythonQtShell_QTreeView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10042,7 +10042,7 @@ bool PythonQtShell_QTreeView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10075,7 +10075,7 @@ void PythonQtShell_QTreeView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10097,7 +10097,7 @@ bool PythonQtShell_QTreeView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10130,7 +10130,7 @@ int PythonQtShell_QTreeView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10163,7 +10163,7 @@ void PythonQtShell_QTreeView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10185,7 +10185,7 @@ int PythonQtShell_QTreeView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10218,7 +10218,7 @@ void PythonQtShell_QTreeView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10240,7 +10240,7 @@ void PythonQtShell_QTreeView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10262,7 +10262,7 @@ QModelIndex PythonQtShell_QTreeView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10295,7 +10295,7 @@ void PythonQtShell_QTreeView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10317,7 +10317,7 @@ void PythonQtShell_QTreeView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10339,7 +10339,7 @@ QVariant PythonQtShell_QTreeView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10372,7 +10372,7 @@ bool PythonQtShell_QTreeView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10405,7 +10405,7 @@ void PythonQtShell_QTreeView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10427,7 +10427,7 @@ void PythonQtShell_QTreeView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10449,7 +10449,7 @@ void PythonQtShell_QTreeView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10471,7 +10471,7 @@ void PythonQtShell_QTreeView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10493,7 +10493,7 @@ int PythonQtShell_QTreeView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10526,7 +10526,7 @@ QSize PythonQtShell_QTreeView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10559,7 +10559,7 @@ void PythonQtShell_QTreeView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10581,7 +10581,7 @@ void PythonQtShell_QTreeView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10603,7 +10603,7 @@ void PythonQtShell_QTreeView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10625,7 +10625,7 @@ void PythonQtShell_QTreeView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10647,7 +10647,7 @@ QModelIndex PythonQtShell_QTreeView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -10680,7 +10680,7 @@ void PythonQtShell_QTreeView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10702,7 +10702,7 @@ bool PythonQtShell_QTreeView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10735,7 +10735,7 @@ QPaintEngine* PythonQtShell_QTreeView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10768,7 +10768,7 @@ void PythonQtShell_QTreeView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10790,7 +10790,7 @@ QPaintDevice* PythonQtShell_QTreeView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10823,7 +10823,7 @@ void PythonQtShell_QTreeView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10845,7 +10845,7 @@ void PythonQtShell_QTreeView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10867,7 +10867,7 @@ void PythonQtShell_QTreeView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10889,7 +10889,7 @@ void PythonQtShell_QTreeView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10911,7 +10911,7 @@ void PythonQtShell_QTreeView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -10933,7 +10933,7 @@ void PythonQtShell_QTreeView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -10955,7 +10955,7 @@ void PythonQtShell_QTreeView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10977,7 +10977,7 @@ QList PythonQtShell_QTreeView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11010,7 +11010,7 @@ void PythonQtShell_QTreeView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11032,7 +11032,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTreeView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11065,7 +11065,7 @@ void PythonQtShell_QTreeView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11087,7 +11087,7 @@ void PythonQtShell_QTreeView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11109,7 +11109,7 @@ void PythonQtShell_QTreeView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11131,7 +11131,7 @@ void PythonQtShell_QTreeView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11153,7 +11153,7 @@ void PythonQtShell_QTreeView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11175,7 +11175,7 @@ void PythonQtShell_QTreeView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11197,7 +11197,7 @@ QPainter* PythonQtShell_QTreeView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11230,7 +11230,7 @@ void PythonQtShell_QTreeView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11252,7 +11252,7 @@ QSize PythonQtShell_QTreeView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11285,7 +11285,7 @@ int PythonQtShell_QTreeView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11318,7 +11318,7 @@ int PythonQtShell_QTreeView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11351,7 +11351,7 @@ void PythonQtShell_QTreeView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11373,7 +11373,7 @@ void PythonQtShell_QTreeView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11395,7 +11395,7 @@ void PythonQtShell_QTreeView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11417,7 +11417,7 @@ void PythonQtShell_QTreeView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11439,7 +11439,7 @@ void PythonQtShell_QTreeView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11461,7 +11461,7 @@ void PythonQtShell_QTreeView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11483,7 +11483,7 @@ int PythonQtShell_QTreeView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11516,7 +11516,7 @@ void PythonQtShell_QTreeView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11538,7 +11538,7 @@ void PythonQtShell_QTreeView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11560,7 +11560,7 @@ QStyleOptionViewItem PythonQtShell_QTreeView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11593,7 +11593,7 @@ bool PythonQtShell_QTreeView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11626,7 +11626,7 @@ QSize PythonQtShell_QTreeView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11659,7 +11659,7 @@ QRect PythonQtShell_QTreeView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11692,7 +11692,7 @@ QRegion PythonQtShell_QTreeView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11725,7 +11725,7 @@ void PythonQtShell_QTreeView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp index 7be710d7c..7f8e095a8 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp @@ -75,7 +75,7 @@ void PythonQtShell_QTreeWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -97,7 +97,7 @@ void PythonQtShell_QTreeWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -119,7 +119,7 @@ void PythonQtShell_QTreeWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -141,7 +141,7 @@ void PythonQtShell_QTreeWidget::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -163,7 +163,7 @@ void PythonQtShell_QTreeWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -185,7 +185,7 @@ void PythonQtShell_QTreeWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -207,7 +207,7 @@ void PythonQtShell_QTreeWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -229,7 +229,7 @@ void PythonQtShell_QTreeWidget::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -251,7 +251,7 @@ void PythonQtShell_QTreeWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -273,7 +273,7 @@ void PythonQtShell_QTreeWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -295,7 +295,7 @@ int PythonQtShell_QTreeWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -328,7 +328,7 @@ void PythonQtShell_QTreeWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -350,7 +350,7 @@ void PythonQtShell_QTreeWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -372,7 +372,7 @@ void PythonQtShell_QTreeWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -394,7 +394,7 @@ void PythonQtShell_QTreeWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -416,7 +416,7 @@ void PythonQtShell_QTreeWidget::drawBranches(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -438,7 +438,7 @@ void PythonQtShell_QTreeWidget::drawRow(QPainter* painter0, const QStyleOptionV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -460,7 +460,7 @@ void PythonQtShell_QTreeWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -482,7 +482,7 @@ bool PythonQtShell_QTreeWidget::dropMimeData(QTreeWidgetItem* parent0, int in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QTreeWidgetItem*" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -515,7 +515,7 @@ bool PythonQtShell_QTreeWidget::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -548,7 +548,7 @@ void PythonQtShell_QTreeWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -570,7 +570,7 @@ void PythonQtShell_QTreeWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -592,7 +592,7 @@ bool PythonQtShell_QTreeWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -625,7 +625,7 @@ bool PythonQtShell_QTreeWidget::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -658,7 +658,7 @@ void PythonQtShell_QTreeWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -680,7 +680,7 @@ bool PythonQtShell_QTreeWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -713,7 +713,7 @@ void PythonQtShell_QTreeWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -735,7 +735,7 @@ bool PythonQtShell_QTreeWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -768,7 +768,7 @@ int PythonQtShell_QTreeWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -801,7 +801,7 @@ void PythonQtShell_QTreeWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -823,7 +823,7 @@ int PythonQtShell_QTreeWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -856,7 +856,7 @@ void PythonQtShell_QTreeWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -878,7 +878,7 @@ void PythonQtShell_QTreeWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -900,7 +900,7 @@ QModelIndex PythonQtShell_QTreeWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -933,7 +933,7 @@ void PythonQtShell_QTreeWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -955,7 +955,7 @@ void PythonQtShell_QTreeWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -977,7 +977,7 @@ QVariant PythonQtShell_QTreeWidget::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1010,7 +1010,7 @@ bool PythonQtShell_QTreeWidget::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1043,7 +1043,7 @@ void PythonQtShell_QTreeWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1065,7 +1065,7 @@ void PythonQtShell_QTreeWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1087,7 +1087,7 @@ void PythonQtShell_QTreeWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1109,7 +1109,7 @@ void PythonQtShell_QTreeWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1131,7 +1131,7 @@ int PythonQtShell_QTreeWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1164,7 +1164,7 @@ QMimeData* PythonQtShell_QTreeWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -1197,7 +1197,7 @@ QStringList PythonQtShell_QTreeWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1230,7 +1230,7 @@ QSize PythonQtShell_QTreeWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1263,7 +1263,7 @@ void PythonQtShell_QTreeWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1285,7 +1285,7 @@ void PythonQtShell_QTreeWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1307,7 +1307,7 @@ void PythonQtShell_QTreeWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1329,7 +1329,7 @@ void PythonQtShell_QTreeWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1351,7 +1351,7 @@ QModelIndex PythonQtShell_QTreeWidget::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -1384,7 +1384,7 @@ void PythonQtShell_QTreeWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1406,7 +1406,7 @@ bool PythonQtShell_QTreeWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1439,7 +1439,7 @@ QPaintEngine* PythonQtShell_QTreeWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1472,7 +1472,7 @@ void PythonQtShell_QTreeWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1494,7 +1494,7 @@ QPaintDevice* PythonQtShell_QTreeWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1527,7 +1527,7 @@ void PythonQtShell_QTreeWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1549,7 +1549,7 @@ void PythonQtShell_QTreeWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1571,7 +1571,7 @@ void PythonQtShell_QTreeWidget::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1593,7 +1593,7 @@ void PythonQtShell_QTreeWidget::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1615,7 +1615,7 @@ void PythonQtShell_QTreeWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1637,7 +1637,7 @@ void PythonQtShell_QTreeWidget::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -1659,7 +1659,7 @@ void PythonQtShell_QTreeWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1681,7 +1681,7 @@ QList PythonQtShell_QTreeWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1714,7 +1714,7 @@ void PythonQtShell_QTreeWidget::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -1736,7 +1736,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTreeWidget::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -1769,7 +1769,7 @@ void PythonQtShell_QTreeWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1791,7 +1791,7 @@ void PythonQtShell_QTreeWidget::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -1813,7 +1813,7 @@ void PythonQtShell_QTreeWidget::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -1835,7 +1835,7 @@ void PythonQtShell_QTreeWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1857,7 +1857,7 @@ void PythonQtShell_QTreeWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1879,7 +1879,7 @@ QPainter* PythonQtShell_QTreeWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1912,7 +1912,7 @@ void PythonQtShell_QTreeWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1934,7 +1934,7 @@ QSize PythonQtShell_QTreeWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1967,7 +1967,7 @@ int PythonQtShell_QTreeWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2000,7 +2000,7 @@ int PythonQtShell_QTreeWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2033,7 +2033,7 @@ void PythonQtShell_QTreeWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -2055,7 +2055,7 @@ Qt::DropActions PythonQtShell_QTreeWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2088,7 +2088,7 @@ void PythonQtShell_QTreeWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2110,7 +2110,7 @@ void PythonQtShell_QTreeWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2132,7 +2132,7 @@ void PythonQtShell_QTreeWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2154,7 +2154,7 @@ void PythonQtShell_QTreeWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2176,7 +2176,7 @@ void PythonQtShell_QTreeWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2198,7 +2198,7 @@ int PythonQtShell_QTreeWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2231,7 +2231,7 @@ void PythonQtShell_QTreeWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2253,7 +2253,7 @@ void PythonQtShell_QTreeWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2275,7 +2275,7 @@ QStyleOptionViewItem PythonQtShell_QTreeWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -2308,7 +2308,7 @@ bool PythonQtShell_QTreeWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2341,7 +2341,7 @@ QSize PythonQtShell_QTreeWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2374,7 +2374,7 @@ QRect PythonQtShell_QTreeWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -2407,7 +2407,7 @@ QRegion PythonQtShell_QTreeWidget::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -2440,7 +2440,7 @@ void PythonQtShell_QTreeWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2710,7 +2710,7 @@ QTreeWidgetItem* PythonQtShell_QTreeWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTreeWidgetItem*"}; @@ -2743,7 +2743,7 @@ QVariant PythonQtShell_QTreeWidgetItem::data(int column0, int role1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "int"}; @@ -2776,7 +2776,7 @@ void PythonQtShell_QTreeWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -2798,7 +2798,7 @@ void PythonQtShell_QTreeWidgetItem::setData(int column0, int role1, const QVar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "const QVariant&"}; @@ -2820,7 +2820,7 @@ void PythonQtShell_QTreeWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -3175,7 +3175,7 @@ int PythonQtShell_QUndoCommand::id() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("id"); + static PyObject* name = PyUnicode_FromString("id"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3208,7 +3208,7 @@ bool PythonQtShell_QUndoCommand::mergeWith(const QUndoCommand* other0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mergeWith"); + static PyObject* name = PyUnicode_FromString("mergeWith"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUndoCommand*"}; @@ -3241,7 +3241,7 @@ void PythonQtShell_QUndoCommand::redo() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redo"); + static PyObject* name = PyUnicode_FromString("redo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3263,7 +3263,7 @@ void PythonQtShell_QUndoCommand::undo() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("undo"); + static PyObject* name = PyUnicode_FromString("undo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3354,7 +3354,7 @@ void PythonQtShell_QUndoGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3376,7 +3376,7 @@ void PythonQtShell_QUndoGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3398,7 +3398,7 @@ bool PythonQtShell_QUndoGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3431,7 +3431,7 @@ bool PythonQtShell_QUndoGroup::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3464,7 +3464,7 @@ void PythonQtShell_QUndoGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3564,7 +3564,7 @@ void PythonQtShell_QUndoStack::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3586,7 +3586,7 @@ void PythonQtShell_QUndoStack::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3608,7 +3608,7 @@ bool PythonQtShell_QUndoStack::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3641,7 +3641,7 @@ bool PythonQtShell_QUndoStack::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3674,7 +3674,7 @@ void PythonQtShell_QUndoStack::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3814,7 +3814,7 @@ void PythonQtShell_QUndoView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3836,7 +3836,7 @@ void PythonQtShell_QUndoView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3858,7 +3858,7 @@ void PythonQtShell_QUndoView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3880,7 +3880,7 @@ void PythonQtShell_QUndoView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -3902,7 +3902,7 @@ void PythonQtShell_QUndoView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3924,7 +3924,7 @@ void PythonQtShell_QUndoView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3946,7 +3946,7 @@ void PythonQtShell_QUndoView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3968,7 +3968,7 @@ void PythonQtShell_QUndoView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3990,7 +3990,7 @@ void PythonQtShell_QUndoView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4012,7 +4012,7 @@ void PythonQtShell_QUndoView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4034,7 +4034,7 @@ int PythonQtShell_QUndoView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4067,7 +4067,7 @@ void PythonQtShell_QUndoView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4089,7 +4089,7 @@ void PythonQtShell_QUndoView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4111,7 +4111,7 @@ void PythonQtShell_QUndoView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4133,7 +4133,7 @@ void PythonQtShell_QUndoView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4155,7 +4155,7 @@ void PythonQtShell_QUndoView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4177,7 +4177,7 @@ bool PythonQtShell_QUndoView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4210,7 +4210,7 @@ void PythonQtShell_QUndoView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4232,7 +4232,7 @@ void PythonQtShell_QUndoView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4254,7 +4254,7 @@ bool PythonQtShell_QUndoView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4287,7 +4287,7 @@ bool PythonQtShell_QUndoView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4320,7 +4320,7 @@ void PythonQtShell_QUndoView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4342,7 +4342,7 @@ bool PythonQtShell_QUndoView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4375,7 +4375,7 @@ void PythonQtShell_QUndoView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4397,7 +4397,7 @@ bool PythonQtShell_QUndoView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4430,7 +4430,7 @@ int PythonQtShell_QUndoView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4463,7 +4463,7 @@ void PythonQtShell_QUndoView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4485,7 +4485,7 @@ int PythonQtShell_QUndoView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4518,7 +4518,7 @@ void PythonQtShell_QUndoView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4540,7 +4540,7 @@ void PythonQtShell_QUndoView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4562,7 +4562,7 @@ QModelIndex PythonQtShell_QUndoView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -4595,7 +4595,7 @@ void PythonQtShell_QUndoView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4617,7 +4617,7 @@ void PythonQtShell_QUndoView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4639,7 +4639,7 @@ QVariant PythonQtShell_QUndoView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4672,7 +4672,7 @@ bool PythonQtShell_QUndoView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -4705,7 +4705,7 @@ void PythonQtShell_QUndoView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4727,7 +4727,7 @@ void PythonQtShell_QUndoView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4749,7 +4749,7 @@ void PythonQtShell_QUndoView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4771,7 +4771,7 @@ void PythonQtShell_QUndoView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4793,7 +4793,7 @@ int PythonQtShell_QUndoView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4826,7 +4826,7 @@ QSize PythonQtShell_QUndoView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4859,7 +4859,7 @@ void PythonQtShell_QUndoView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4881,7 +4881,7 @@ void PythonQtShell_QUndoView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4903,7 +4903,7 @@ void PythonQtShell_QUndoView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4925,7 +4925,7 @@ void PythonQtShell_QUndoView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4947,7 +4947,7 @@ QModelIndex PythonQtShell_QUndoView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -4980,7 +4980,7 @@ void PythonQtShell_QUndoView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5002,7 +5002,7 @@ bool PythonQtShell_QUndoView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5035,7 +5035,7 @@ QPaintEngine* PythonQtShell_QUndoView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5068,7 +5068,7 @@ void PythonQtShell_QUndoView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5090,7 +5090,7 @@ QPaintDevice* PythonQtShell_QUndoView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5123,7 +5123,7 @@ void PythonQtShell_QUndoView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5145,7 +5145,7 @@ void PythonQtShell_QUndoView::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5167,7 +5167,7 @@ void PythonQtShell_QUndoView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5189,7 +5189,7 @@ void PythonQtShell_QUndoView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5211,7 +5211,7 @@ void PythonQtShell_QUndoView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5233,7 +5233,7 @@ void PythonQtShell_QUndoView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5255,7 +5255,7 @@ void PythonQtShell_QUndoView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5277,7 +5277,7 @@ QList PythonQtShell_QUndoView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5310,7 +5310,7 @@ void PythonQtShell_QUndoView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5332,7 +5332,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QUndoView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5365,7 +5365,7 @@ void PythonQtShell_QUndoView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5387,7 +5387,7 @@ void PythonQtShell_QUndoView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5409,7 +5409,7 @@ void PythonQtShell_QUndoView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5431,7 +5431,7 @@ void PythonQtShell_QUndoView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5453,7 +5453,7 @@ void PythonQtShell_QUndoView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5475,7 +5475,7 @@ void PythonQtShell_QUndoView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5497,7 +5497,7 @@ QPainter* PythonQtShell_QUndoView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5530,7 +5530,7 @@ void PythonQtShell_QUndoView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5552,7 +5552,7 @@ QSize PythonQtShell_QUndoView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5585,7 +5585,7 @@ int PythonQtShell_QUndoView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5618,7 +5618,7 @@ int PythonQtShell_QUndoView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5651,7 +5651,7 @@ void PythonQtShell_QUndoView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -5673,7 +5673,7 @@ void PythonQtShell_QUndoView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5695,7 +5695,7 @@ void PythonQtShell_QUndoView::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5717,7 +5717,7 @@ void PythonQtShell_QUndoView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5739,7 +5739,7 @@ void PythonQtShell_QUndoView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5761,7 +5761,7 @@ void PythonQtShell_QUndoView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5783,7 +5783,7 @@ int PythonQtShell_QUndoView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5816,7 +5816,7 @@ void PythonQtShell_QUndoView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5838,7 +5838,7 @@ void PythonQtShell_QUndoView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5860,7 +5860,7 @@ QStyleOptionViewItem PythonQtShell_QUndoView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -5893,7 +5893,7 @@ bool PythonQtShell_QUndoView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5926,7 +5926,7 @@ QSize PythonQtShell_QUndoView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5959,7 +5959,7 @@ QRect PythonQtShell_QUndoView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -5992,7 +5992,7 @@ QRegion PythonQtShell_QUndoView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6025,7 +6025,7 @@ void PythonQtShell_QUndoView::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6108,7 +6108,7 @@ void PythonQtShell_QVBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -6130,7 +6130,7 @@ void PythonQtShell_QVBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6152,7 +6152,7 @@ QSizePolicy::ControlTypes PythonQtShell_QVBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -6185,7 +6185,7 @@ int PythonQtShell_QVBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6218,7 +6218,7 @@ void PythonQtShell_QVBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6240,7 +6240,7 @@ bool PythonQtShell_QVBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6273,7 +6273,7 @@ bool PythonQtShell_QVBoxLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6306,7 +6306,7 @@ Qt::Orientations PythonQtShell_QVBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -6339,7 +6339,7 @@ QRect PythonQtShell_QVBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -6372,7 +6372,7 @@ bool PythonQtShell_QVBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6405,7 +6405,7 @@ int PythonQtShell_QVBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6438,7 +6438,7 @@ int PythonQtShell_QVBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -6471,7 +6471,7 @@ void PythonQtShell_QVBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6493,7 +6493,7 @@ bool PythonQtShell_QVBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6526,7 +6526,7 @@ QLayoutItem* PythonQtShell_QVBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -6559,7 +6559,7 @@ QLayout* PythonQtShell_QVBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -6592,7 +6592,7 @@ QSize PythonQtShell_QVBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6625,7 +6625,7 @@ int PythonQtShell_QVBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6658,7 +6658,7 @@ QSize PythonQtShell_QVBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6691,7 +6691,7 @@ void PythonQtShell_QVBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -6713,7 +6713,7 @@ QSize PythonQtShell_QVBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6746,7 +6746,7 @@ QSpacerItem* PythonQtShell_QVBoxLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -6779,7 +6779,7 @@ QLayoutItem* PythonQtShell_QVBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -6812,7 +6812,7 @@ void PythonQtShell_QVBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6834,7 +6834,7 @@ QWidget* PythonQtShell_QVBoxLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -6894,7 +6894,7 @@ void PythonQtShell_QValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6916,7 +6916,7 @@ void PythonQtShell_QValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6938,7 +6938,7 @@ bool PythonQtShell_QValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6971,7 +6971,7 @@ bool PythonQtShell_QValidator::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7004,7 +7004,7 @@ void PythonQtShell_QValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -7026,7 +7026,7 @@ void PythonQtShell_QValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7048,7 +7048,7 @@ QValidator::State PythonQtShell_QValidator::validate(QString& arg__1, int& ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -7972,7 +7972,7 @@ void PythonQtShell_QWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7994,7 +7994,7 @@ void PythonQtShell_QWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8016,7 +8016,7 @@ void PythonQtShell_QWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8038,7 +8038,7 @@ void PythonQtShell_QWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8060,7 +8060,7 @@ void PythonQtShell_QWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8082,7 +8082,7 @@ void PythonQtShell_QWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8104,7 +8104,7 @@ int PythonQtShell_QWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8137,7 +8137,7 @@ void PythonQtShell_QWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8159,7 +8159,7 @@ void PythonQtShell_QWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8181,7 +8181,7 @@ void PythonQtShell_QWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8203,7 +8203,7 @@ void PythonQtShell_QWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8225,7 +8225,7 @@ void PythonQtShell_QWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8247,7 +8247,7 @@ bool PythonQtShell_QWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8280,7 +8280,7 @@ bool PythonQtShell_QWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8313,7 +8313,7 @@ void PythonQtShell_QWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8335,7 +8335,7 @@ bool PythonQtShell_QWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8368,7 +8368,7 @@ void PythonQtShell_QWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8390,7 +8390,7 @@ bool PythonQtShell_QWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8423,7 +8423,7 @@ int PythonQtShell_QWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8456,7 +8456,7 @@ void PythonQtShell_QWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8478,7 +8478,7 @@ void PythonQtShell_QWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8500,7 +8500,7 @@ void PythonQtShell_QWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8522,7 +8522,7 @@ QVariant PythonQtShell_QWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8555,7 +8555,7 @@ void PythonQtShell_QWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8577,7 +8577,7 @@ void PythonQtShell_QWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8599,7 +8599,7 @@ void PythonQtShell_QWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8621,7 +8621,7 @@ int PythonQtShell_QWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8654,7 +8654,7 @@ QSize PythonQtShell_QWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8687,7 +8687,7 @@ void PythonQtShell_QWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8709,7 +8709,7 @@ void PythonQtShell_QWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8731,7 +8731,7 @@ void PythonQtShell_QWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8753,7 +8753,7 @@ void PythonQtShell_QWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8775,7 +8775,7 @@ void PythonQtShell_QWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8797,7 +8797,7 @@ bool PythonQtShell_QWidget::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8830,7 +8830,7 @@ QPaintEngine* PythonQtShell_QWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8863,7 +8863,7 @@ void PythonQtShell_QWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8885,7 +8885,7 @@ QPaintDevice* PythonQtShell_QWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8918,7 +8918,7 @@ void PythonQtShell_QWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8940,7 +8940,7 @@ void PythonQtShell_QWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8962,7 +8962,7 @@ QPainter* PythonQtShell_QWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8995,7 +8995,7 @@ void PythonQtShell_QWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9017,7 +9017,7 @@ QSize PythonQtShell_QWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9050,7 +9050,7 @@ void PythonQtShell_QWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9072,7 +9072,7 @@ void PythonQtShell_QWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9094,7 +9094,7 @@ void PythonQtShell_QWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10401,7 +10401,7 @@ void PythonQtShell_QWidgetAction::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10423,7 +10423,7 @@ QWidget* PythonQtShell_QWidgetAction::createWidget(QWidget* parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -10456,7 +10456,7 @@ void PythonQtShell_QWidgetAction::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10478,7 +10478,7 @@ void PythonQtShell_QWidgetAction::deleteWidget(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteWidget"); + static PyObject* name = PyUnicode_FromString("deleteWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10500,7 +10500,7 @@ bool PythonQtShell_QWidgetAction::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10533,7 +10533,7 @@ bool PythonQtShell_QWidgetAction::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10566,7 +10566,7 @@ void PythonQtShell_QWidgetAction::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10646,7 +10646,7 @@ QSizePolicy::ControlTypes PythonQtShell_QWidgetItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10679,7 +10679,7 @@ Qt::Orientations PythonQtShell_QWidgetItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10712,7 +10712,7 @@ QRect PythonQtShell_QWidgetItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10745,7 +10745,7 @@ bool PythonQtShell_QWidgetItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10778,7 +10778,7 @@ int PythonQtShell_QWidgetItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10811,7 +10811,7 @@ void PythonQtShell_QWidgetItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10833,7 +10833,7 @@ bool PythonQtShell_QWidgetItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10866,7 +10866,7 @@ QLayout* PythonQtShell_QWidgetItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10899,7 +10899,7 @@ QSize PythonQtShell_QWidgetItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10932,7 +10932,7 @@ int PythonQtShell_QWidgetItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10965,7 +10965,7 @@ QSize PythonQtShell_QWidgetItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10998,7 +10998,7 @@ void PythonQtShell_QWidgetItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -11020,7 +11020,7 @@ QSize PythonQtShell_QWidgetItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11053,7 +11053,7 @@ QSpacerItem* PythonQtShell_QWidgetItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -11086,7 +11086,7 @@ QWidget* PythonQtShell_QWidgetItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -11129,7 +11129,7 @@ void PythonQtShell_QWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11151,7 +11151,7 @@ void PythonQtShell_QWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11173,7 +11173,7 @@ bool PythonQtShell_QWindow::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11206,7 +11206,7 @@ bool PythonQtShell_QWindow::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11239,7 +11239,7 @@ void PythonQtShell_QWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -11261,7 +11261,7 @@ void PythonQtShell_QWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11283,7 +11283,7 @@ QObject* PythonQtShell_QWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -11316,7 +11316,7 @@ void PythonQtShell_QWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11338,7 +11338,7 @@ QSurfaceFormat PythonQtShell_QWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -11371,7 +11371,7 @@ void PythonQtShell_QWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11393,7 +11393,7 @@ void PythonQtShell_QWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11415,7 +11415,7 @@ void PythonQtShell_QWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11437,7 +11437,7 @@ void PythonQtShell_QWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11459,7 +11459,7 @@ void PythonQtShell_QWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11481,7 +11481,7 @@ void PythonQtShell_QWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11503,7 +11503,7 @@ void PythonQtShell_QWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11525,7 +11525,7 @@ void PythonQtShell_QWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11547,7 +11547,7 @@ bool PythonQtShell_QWindow::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11580,7 +11580,7 @@ void PythonQtShell_QWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11602,7 +11602,7 @@ void PythonQtShell_QWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11624,7 +11624,7 @@ QSize PythonQtShell_QWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11657,7 +11657,7 @@ QSurface::SurfaceType PythonQtShell_QWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -11690,7 +11690,7 @@ void PythonQtShell_QWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11712,7 +11712,7 @@ void PythonQtShell_QWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11734,7 +11734,7 @@ void PythonQtShell_QWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -11756,7 +11756,7 @@ void PythonQtShell_QWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12303,7 +12303,7 @@ void PythonQtShell_QWizard::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12325,7 +12325,7 @@ void PythonQtShell_QWizard::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12347,7 +12347,7 @@ void PythonQtShell_QWizard::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12369,7 +12369,7 @@ void PythonQtShell_QWizard::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12391,7 +12391,7 @@ void PythonQtShell_QWizard::cleanupPage(int id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12413,7 +12413,7 @@ void PythonQtShell_QWizard::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12435,7 +12435,7 @@ void PythonQtShell_QWizard::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12457,7 +12457,7 @@ void PythonQtShell_QWizard::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12479,7 +12479,7 @@ int PythonQtShell_QWizard::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12512,7 +12512,7 @@ void PythonQtShell_QWizard::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12534,7 +12534,7 @@ void PythonQtShell_QWizard::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12556,7 +12556,7 @@ void PythonQtShell_QWizard::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12578,7 +12578,7 @@ void PythonQtShell_QWizard::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12600,7 +12600,7 @@ void PythonQtShell_QWizard::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12622,7 +12622,7 @@ void PythonQtShell_QWizard::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12644,7 +12644,7 @@ bool PythonQtShell_QWizard::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12677,7 +12677,7 @@ bool PythonQtShell_QWizard::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12710,7 +12710,7 @@ int PythonQtShell_QWizard::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12743,7 +12743,7 @@ void PythonQtShell_QWizard::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12765,7 +12765,7 @@ bool PythonQtShell_QWizard::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12798,7 +12798,7 @@ void PythonQtShell_QWizard::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12820,7 +12820,7 @@ bool PythonQtShell_QWizard::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12853,7 +12853,7 @@ int PythonQtShell_QWizard::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12886,7 +12886,7 @@ void PythonQtShell_QWizard::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12908,7 +12908,7 @@ void PythonQtShell_QWizard::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12930,7 +12930,7 @@ void PythonQtShell_QWizard::initializePage(int id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12952,7 +12952,7 @@ void PythonQtShell_QWizard::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12974,7 +12974,7 @@ QVariant PythonQtShell_QWizard::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13007,7 +13007,7 @@ void PythonQtShell_QWizard::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13029,7 +13029,7 @@ void PythonQtShell_QWizard::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13051,7 +13051,7 @@ void PythonQtShell_QWizard::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13073,7 +13073,7 @@ int PythonQtShell_QWizard::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13106,7 +13106,7 @@ QSize PythonQtShell_QWizard::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13139,7 +13139,7 @@ void PythonQtShell_QWizard::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13161,7 +13161,7 @@ void PythonQtShell_QWizard::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13183,7 +13183,7 @@ void PythonQtShell_QWizard::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13205,7 +13205,7 @@ void PythonQtShell_QWizard::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13227,7 +13227,7 @@ void PythonQtShell_QWizard::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13249,7 +13249,7 @@ bool PythonQtShell_QWizard::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13282,7 +13282,7 @@ int PythonQtShell_QWizard::nextId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13315,7 +13315,7 @@ void PythonQtShell_QWizard::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13337,7 +13337,7 @@ QPaintEngine* PythonQtShell_QWizard::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13370,7 +13370,7 @@ void PythonQtShell_QWizard::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13392,7 +13392,7 @@ QPaintDevice* PythonQtShell_QWizard::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13425,7 +13425,7 @@ void PythonQtShell_QWizard::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13447,7 +13447,7 @@ void PythonQtShell_QWizard::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13469,7 +13469,7 @@ void PythonQtShell_QWizard::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13491,7 +13491,7 @@ QPainter* PythonQtShell_QWizard::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13524,7 +13524,7 @@ void PythonQtShell_QWizard::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13546,7 +13546,7 @@ QSize PythonQtShell_QWizard::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13579,7 +13579,7 @@ void PythonQtShell_QWizard::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13601,7 +13601,7 @@ void PythonQtShell_QWizard::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13623,7 +13623,7 @@ bool PythonQtShell_QWizard::validateCurrentPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validateCurrentPage"); + static PyObject* name = PyUnicode_FromString("validateCurrentPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13656,7 +13656,7 @@ void PythonQtShell_QWizard::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13886,7 +13886,7 @@ void PythonQtShell_QWizardPage::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13908,7 +13908,7 @@ void PythonQtShell_QWizardPage::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13930,7 +13930,7 @@ void PythonQtShell_QWizardPage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13952,7 +13952,7 @@ void PythonQtShell_QWizardPage::cleanupPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13974,7 +13974,7 @@ void PythonQtShell_QWizardPage::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13996,7 +13996,7 @@ void PythonQtShell_QWizardPage::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14018,7 +14018,7 @@ void PythonQtShell_QWizardPage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14040,7 +14040,7 @@ int PythonQtShell_QWizardPage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14073,7 +14073,7 @@ void PythonQtShell_QWizardPage::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14095,7 +14095,7 @@ void PythonQtShell_QWizardPage::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14117,7 +14117,7 @@ void PythonQtShell_QWizardPage::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14139,7 +14139,7 @@ void PythonQtShell_QWizardPage::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14161,7 +14161,7 @@ void PythonQtShell_QWizardPage::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14183,7 +14183,7 @@ bool PythonQtShell_QWizardPage::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14216,7 +14216,7 @@ bool PythonQtShell_QWizardPage::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14249,7 +14249,7 @@ void PythonQtShell_QWizardPage::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14271,7 +14271,7 @@ bool PythonQtShell_QWizardPage::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14304,7 +14304,7 @@ void PythonQtShell_QWizardPage::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14326,7 +14326,7 @@ bool PythonQtShell_QWizardPage::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14359,7 +14359,7 @@ int PythonQtShell_QWizardPage::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14392,7 +14392,7 @@ void PythonQtShell_QWizardPage::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14414,7 +14414,7 @@ void PythonQtShell_QWizardPage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14436,7 +14436,7 @@ void PythonQtShell_QWizardPage::initializePage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14458,7 +14458,7 @@ void PythonQtShell_QWizardPage::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14480,7 +14480,7 @@ QVariant PythonQtShell_QWizardPage::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14513,7 +14513,7 @@ bool PythonQtShell_QWizardPage::isComplete() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isComplete"); + static PyObject* name = PyUnicode_FromString("isComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14546,7 +14546,7 @@ void PythonQtShell_QWizardPage::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14568,7 +14568,7 @@ void PythonQtShell_QWizardPage::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14590,7 +14590,7 @@ void PythonQtShell_QWizardPage::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14612,7 +14612,7 @@ int PythonQtShell_QWizardPage::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14645,7 +14645,7 @@ QSize PythonQtShell_QWizardPage::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14678,7 +14678,7 @@ void PythonQtShell_QWizardPage::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14700,7 +14700,7 @@ void PythonQtShell_QWizardPage::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14722,7 +14722,7 @@ void PythonQtShell_QWizardPage::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14744,7 +14744,7 @@ void PythonQtShell_QWizardPage::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14766,7 +14766,7 @@ void PythonQtShell_QWizardPage::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14788,7 +14788,7 @@ bool PythonQtShell_QWizardPage::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14821,7 +14821,7 @@ int PythonQtShell_QWizardPage::nextId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14854,7 +14854,7 @@ QPaintEngine* PythonQtShell_QWizardPage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14887,7 +14887,7 @@ void PythonQtShell_QWizardPage::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14909,7 +14909,7 @@ QPaintDevice* PythonQtShell_QWizardPage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14942,7 +14942,7 @@ void PythonQtShell_QWizardPage::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14964,7 +14964,7 @@ void PythonQtShell_QWizardPage::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14986,7 +14986,7 @@ QPainter* PythonQtShell_QWizardPage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15019,7 +15019,7 @@ void PythonQtShell_QWizardPage::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15041,7 +15041,7 @@ QSize PythonQtShell_QWizardPage::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15074,7 +15074,7 @@ void PythonQtShell_QWizardPage::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15096,7 +15096,7 @@ void PythonQtShell_QWizardPage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15118,7 +15118,7 @@ bool PythonQtShell_QWizardPage::validatePage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validatePage"); + static PyObject* name = PyUnicode_FromString("validatePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15151,7 +15151,7 @@ void PythonQtShell_QWizardPage::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp index a45ec3691..fbd0f808e 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp @@ -103,7 +103,7 @@ void PythonQtShell_QFocusFrame::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -125,7 +125,7 @@ void PythonQtShell_QFocusFrame::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -147,7 +147,7 @@ void PythonQtShell_QFocusFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -169,7 +169,7 @@ void PythonQtShell_QFocusFrame::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -191,7 +191,7 @@ void PythonQtShell_QFocusFrame::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -213,7 +213,7 @@ void PythonQtShell_QFocusFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -235,7 +235,7 @@ int PythonQtShell_QFocusFrame::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -268,7 +268,7 @@ void PythonQtShell_QFocusFrame::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -290,7 +290,7 @@ void PythonQtShell_QFocusFrame::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -312,7 +312,7 @@ void PythonQtShell_QFocusFrame::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -334,7 +334,7 @@ void PythonQtShell_QFocusFrame::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -356,7 +356,7 @@ void PythonQtShell_QFocusFrame::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -378,7 +378,7 @@ bool PythonQtShell_QFocusFrame::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -411,7 +411,7 @@ bool PythonQtShell_QFocusFrame::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -444,7 +444,7 @@ void PythonQtShell_QFocusFrame::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -466,7 +466,7 @@ bool PythonQtShell_QFocusFrame::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -499,7 +499,7 @@ void PythonQtShell_QFocusFrame::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -521,7 +521,7 @@ bool PythonQtShell_QFocusFrame::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -554,7 +554,7 @@ int PythonQtShell_QFocusFrame::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -587,7 +587,7 @@ void PythonQtShell_QFocusFrame::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -609,7 +609,7 @@ void PythonQtShell_QFocusFrame::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -631,7 +631,7 @@ void PythonQtShell_QFocusFrame::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -653,7 +653,7 @@ QVariant PythonQtShell_QFocusFrame::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -686,7 +686,7 @@ void PythonQtShell_QFocusFrame::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -708,7 +708,7 @@ void PythonQtShell_QFocusFrame::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -730,7 +730,7 @@ void PythonQtShell_QFocusFrame::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -752,7 +752,7 @@ int PythonQtShell_QFocusFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -785,7 +785,7 @@ QSize PythonQtShell_QFocusFrame::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -818,7 +818,7 @@ void PythonQtShell_QFocusFrame::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -840,7 +840,7 @@ void PythonQtShell_QFocusFrame::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -862,7 +862,7 @@ void PythonQtShell_QFocusFrame::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -884,7 +884,7 @@ void PythonQtShell_QFocusFrame::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -906,7 +906,7 @@ void PythonQtShell_QFocusFrame::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -928,7 +928,7 @@ bool PythonQtShell_QFocusFrame::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -961,7 +961,7 @@ QPaintEngine* PythonQtShell_QFocusFrame::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -994,7 +994,7 @@ void PythonQtShell_QFocusFrame::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1016,7 +1016,7 @@ QPaintDevice* PythonQtShell_QFocusFrame::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1049,7 +1049,7 @@ void PythonQtShell_QFocusFrame::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1071,7 +1071,7 @@ void PythonQtShell_QFocusFrame::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1093,7 +1093,7 @@ QPainter* PythonQtShell_QFocusFrame::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1126,7 +1126,7 @@ void PythonQtShell_QFocusFrame::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1148,7 +1148,7 @@ QSize PythonQtShell_QFocusFrame::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1181,7 +1181,7 @@ void PythonQtShell_QFocusFrame::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1203,7 +1203,7 @@ void PythonQtShell_QFocusFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1225,7 +1225,7 @@ void PythonQtShell_QFocusFrame::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1285,7 +1285,7 @@ void PythonQtShell_QFontComboBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1307,7 +1307,7 @@ void PythonQtShell_QFontComboBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1329,7 +1329,7 @@ void PythonQtShell_QFontComboBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1351,7 +1351,7 @@ void PythonQtShell_QFontComboBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1373,7 +1373,7 @@ void PythonQtShell_QFontComboBox::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1395,7 +1395,7 @@ void PythonQtShell_QFontComboBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1417,7 +1417,7 @@ int PythonQtShell_QFontComboBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1450,7 +1450,7 @@ void PythonQtShell_QFontComboBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1472,7 +1472,7 @@ void PythonQtShell_QFontComboBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1494,7 +1494,7 @@ void PythonQtShell_QFontComboBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1516,7 +1516,7 @@ void PythonQtShell_QFontComboBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1538,7 +1538,7 @@ void PythonQtShell_QFontComboBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1560,7 +1560,7 @@ bool PythonQtShell_QFontComboBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1593,7 +1593,7 @@ bool PythonQtShell_QFontComboBox::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1626,7 +1626,7 @@ void PythonQtShell_QFontComboBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1648,7 +1648,7 @@ bool PythonQtShell_QFontComboBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1681,7 +1681,7 @@ void PythonQtShell_QFontComboBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1703,7 +1703,7 @@ bool PythonQtShell_QFontComboBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1736,7 +1736,7 @@ int PythonQtShell_QFontComboBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1769,7 +1769,7 @@ void PythonQtShell_QFontComboBox::hideEvent(QHideEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1791,7 +1791,7 @@ void PythonQtShell_QFontComboBox::hidePopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1813,7 +1813,7 @@ void PythonQtShell_QFontComboBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1835,7 +1835,7 @@ void PythonQtShell_QFontComboBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1857,7 +1857,7 @@ QVariant PythonQtShell_QFontComboBox::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1890,7 +1890,7 @@ void PythonQtShell_QFontComboBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1912,7 +1912,7 @@ void PythonQtShell_QFontComboBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1934,7 +1934,7 @@ void PythonQtShell_QFontComboBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1956,7 +1956,7 @@ int PythonQtShell_QFontComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1989,7 +1989,7 @@ QSize PythonQtShell_QFontComboBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2022,7 +2022,7 @@ void PythonQtShell_QFontComboBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2044,7 +2044,7 @@ void PythonQtShell_QFontComboBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2066,7 +2066,7 @@ void PythonQtShell_QFontComboBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2088,7 +2088,7 @@ void PythonQtShell_QFontComboBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2110,7 +2110,7 @@ void PythonQtShell_QFontComboBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2132,7 +2132,7 @@ bool PythonQtShell_QFontComboBox::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2165,7 +2165,7 @@ QPaintEngine* PythonQtShell_QFontComboBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2198,7 +2198,7 @@ void PythonQtShell_QFontComboBox::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2220,7 +2220,7 @@ QPaintDevice* PythonQtShell_QFontComboBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2253,7 +2253,7 @@ void PythonQtShell_QFontComboBox::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2275,7 +2275,7 @@ void PythonQtShell_QFontComboBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2297,7 +2297,7 @@ QPainter* PythonQtShell_QFontComboBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2330,7 +2330,7 @@ void PythonQtShell_QFontComboBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2352,7 +2352,7 @@ void PythonQtShell_QFontComboBox::showPopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2374,7 +2374,7 @@ QSize PythonQtShell_QFontComboBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2407,7 +2407,7 @@ void PythonQtShell_QFontComboBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2429,7 +2429,7 @@ void PythonQtShell_QFontComboBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2451,7 +2451,7 @@ void PythonQtShell_QFontComboBox::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2667,7 +2667,7 @@ void PythonQtShell_QFontDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2689,7 +2689,7 @@ void PythonQtShell_QFontDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2711,7 +2711,7 @@ void PythonQtShell_QFontDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2733,7 +2733,7 @@ void PythonQtShell_QFontDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2755,7 +2755,7 @@ void PythonQtShell_QFontDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2777,7 +2777,7 @@ void PythonQtShell_QFontDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2799,7 +2799,7 @@ void PythonQtShell_QFontDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2821,7 +2821,7 @@ int PythonQtShell_QFontDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2854,7 +2854,7 @@ void PythonQtShell_QFontDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2876,7 +2876,7 @@ void PythonQtShell_QFontDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2898,7 +2898,7 @@ void PythonQtShell_QFontDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2920,7 +2920,7 @@ void PythonQtShell_QFontDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2942,7 +2942,7 @@ void PythonQtShell_QFontDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2964,7 +2964,7 @@ void PythonQtShell_QFontDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2986,7 +2986,7 @@ bool PythonQtShell_QFontDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3019,7 +3019,7 @@ bool PythonQtShell_QFontDialog::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3052,7 +3052,7 @@ int PythonQtShell_QFontDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3085,7 +3085,7 @@ void PythonQtShell_QFontDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3107,7 +3107,7 @@ bool PythonQtShell_QFontDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3140,7 +3140,7 @@ void PythonQtShell_QFontDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3162,7 +3162,7 @@ bool PythonQtShell_QFontDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3195,7 +3195,7 @@ int PythonQtShell_QFontDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3228,7 +3228,7 @@ void PythonQtShell_QFontDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3250,7 +3250,7 @@ void PythonQtShell_QFontDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3272,7 +3272,7 @@ void PythonQtShell_QFontDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3294,7 +3294,7 @@ QVariant PythonQtShell_QFontDialog::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3327,7 +3327,7 @@ void PythonQtShell_QFontDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3349,7 +3349,7 @@ void PythonQtShell_QFontDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3371,7 +3371,7 @@ void PythonQtShell_QFontDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3393,7 +3393,7 @@ int PythonQtShell_QFontDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3426,7 +3426,7 @@ QSize PythonQtShell_QFontDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3459,7 +3459,7 @@ void PythonQtShell_QFontDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3481,7 +3481,7 @@ void PythonQtShell_QFontDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3503,7 +3503,7 @@ void PythonQtShell_QFontDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3525,7 +3525,7 @@ void PythonQtShell_QFontDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3547,7 +3547,7 @@ void PythonQtShell_QFontDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3569,7 +3569,7 @@ bool PythonQtShell_QFontDialog::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3602,7 +3602,7 @@ QPaintEngine* PythonQtShell_QFontDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3635,7 +3635,7 @@ void PythonQtShell_QFontDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3657,7 +3657,7 @@ QPaintDevice* PythonQtShell_QFontDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3690,7 +3690,7 @@ void PythonQtShell_QFontDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3712,7 +3712,7 @@ void PythonQtShell_QFontDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3734,7 +3734,7 @@ void PythonQtShell_QFontDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3756,7 +3756,7 @@ QPainter* PythonQtShell_QFontDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3789,7 +3789,7 @@ void PythonQtShell_QFontDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3811,7 +3811,7 @@ QSize PythonQtShell_QFontDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3844,7 +3844,7 @@ void PythonQtShell_QFontDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3866,7 +3866,7 @@ void PythonQtShell_QFontDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3888,7 +3888,7 @@ void PythonQtShell_QFontDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4431,7 +4431,7 @@ void PythonQtShell_QFormLayout::addItem(QLayoutItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -4453,7 +4453,7 @@ void PythonQtShell_QFormLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4475,7 +4475,7 @@ QSizePolicy::ControlTypes PythonQtShell_QFormLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -4508,7 +4508,7 @@ int PythonQtShell_QFormLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4541,7 +4541,7 @@ void PythonQtShell_QFormLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4563,7 +4563,7 @@ bool PythonQtShell_QFormLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4596,7 +4596,7 @@ bool PythonQtShell_QFormLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4629,7 +4629,7 @@ Qt::Orientations PythonQtShell_QFormLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -4662,7 +4662,7 @@ QRect PythonQtShell_QFormLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -4695,7 +4695,7 @@ bool PythonQtShell_QFormLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4728,7 +4728,7 @@ int PythonQtShell_QFormLayout::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4761,7 +4761,7 @@ int PythonQtShell_QFormLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -4794,7 +4794,7 @@ void PythonQtShell_QFormLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4816,7 +4816,7 @@ bool PythonQtShell_QFormLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4849,7 +4849,7 @@ QLayoutItem* PythonQtShell_QFormLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -4882,7 +4882,7 @@ QLayout* PythonQtShell_QFormLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -4915,7 +4915,7 @@ QSize PythonQtShell_QFormLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4948,7 +4948,7 @@ int PythonQtShell_QFormLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4981,7 +4981,7 @@ QSize PythonQtShell_QFormLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5014,7 +5014,7 @@ void PythonQtShell_QFormLayout::setGeometry(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -5036,7 +5036,7 @@ QSize PythonQtShell_QFormLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5069,7 +5069,7 @@ QSpacerItem* PythonQtShell_QFormLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -5102,7 +5102,7 @@ QLayoutItem* PythonQtShell_QFormLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -5135,7 +5135,7 @@ void PythonQtShell_QFormLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5157,7 +5157,7 @@ QWidget* PythonQtShell_QFormLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -5433,7 +5433,7 @@ void PythonQtShell_QFrame::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5455,7 +5455,7 @@ void PythonQtShell_QFrame::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5477,7 +5477,7 @@ void PythonQtShell_QFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5499,7 +5499,7 @@ void PythonQtShell_QFrame::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5521,7 +5521,7 @@ void PythonQtShell_QFrame::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5543,7 +5543,7 @@ void PythonQtShell_QFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5565,7 +5565,7 @@ int PythonQtShell_QFrame::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5598,7 +5598,7 @@ void PythonQtShell_QFrame::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5620,7 +5620,7 @@ void PythonQtShell_QFrame::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5642,7 +5642,7 @@ void PythonQtShell_QFrame::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5664,7 +5664,7 @@ void PythonQtShell_QFrame::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5686,7 +5686,7 @@ void PythonQtShell_QFrame::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5708,7 +5708,7 @@ bool PythonQtShell_QFrame::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5741,7 +5741,7 @@ bool PythonQtShell_QFrame::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5774,7 +5774,7 @@ void PythonQtShell_QFrame::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5796,7 +5796,7 @@ bool PythonQtShell_QFrame::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5829,7 +5829,7 @@ void PythonQtShell_QFrame::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5851,7 +5851,7 @@ bool PythonQtShell_QFrame::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5884,7 +5884,7 @@ int PythonQtShell_QFrame::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5917,7 +5917,7 @@ void PythonQtShell_QFrame::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5939,7 +5939,7 @@ void PythonQtShell_QFrame::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5961,7 +5961,7 @@ void PythonQtShell_QFrame::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5983,7 +5983,7 @@ QVariant PythonQtShell_QFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6016,7 +6016,7 @@ void PythonQtShell_QFrame::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6038,7 +6038,7 @@ void PythonQtShell_QFrame::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6060,7 +6060,7 @@ void PythonQtShell_QFrame::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6082,7 +6082,7 @@ int PythonQtShell_QFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6115,7 +6115,7 @@ QSize PythonQtShell_QFrame::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6148,7 +6148,7 @@ void PythonQtShell_QFrame::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6170,7 +6170,7 @@ void PythonQtShell_QFrame::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6192,7 +6192,7 @@ void PythonQtShell_QFrame::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6214,7 +6214,7 @@ void PythonQtShell_QFrame::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6236,7 +6236,7 @@ void PythonQtShell_QFrame::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6258,7 +6258,7 @@ bool PythonQtShell_QFrame::nativeEvent(const QByteArray& eventType0, void* me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6291,7 +6291,7 @@ QPaintEngine* PythonQtShell_QFrame::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6324,7 +6324,7 @@ void PythonQtShell_QFrame::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6346,7 +6346,7 @@ QPaintDevice* PythonQtShell_QFrame::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6379,7 +6379,7 @@ void PythonQtShell_QFrame::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6401,7 +6401,7 @@ void PythonQtShell_QFrame::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6423,7 +6423,7 @@ QPainter* PythonQtShell_QFrame::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6456,7 +6456,7 @@ void PythonQtShell_QFrame::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6478,7 +6478,7 @@ QSize PythonQtShell_QFrame::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6511,7 +6511,7 @@ void PythonQtShell_QFrame::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6533,7 +6533,7 @@ void PythonQtShell_QFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6555,7 +6555,7 @@ void PythonQtShell_QFrame::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6680,7 +6680,7 @@ void PythonQtShell_QGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6702,7 +6702,7 @@ void PythonQtShell_QGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6724,7 +6724,7 @@ bool PythonQtShell_QGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6757,7 +6757,7 @@ bool PythonQtShell_QGesture::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6790,7 +6790,7 @@ void PythonQtShell_QGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6970,7 +6970,7 @@ QGesture* PythonQtShell_QGestureRecognizer::create(QObject* target0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGesture*" , "QObject*"}; @@ -7003,7 +7003,7 @@ QGestureRecognizer::Result PythonQtShell_QGestureRecognizer::recognize(QGesture if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("recognize"); + static PyObject* name = PyUnicode_FromString("recognize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGestureRecognizer::Result" , "QGesture*" , "QObject*" , "QEvent*"}; @@ -7036,7 +7036,7 @@ void PythonQtShell_QGestureRecognizer::reset(QGesture* state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGesture*"}; @@ -7320,7 +7320,7 @@ int PythonQtShell_QGraphicsAnchorLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7353,7 +7353,7 @@ void PythonQtShell_QGraphicsAnchorLayout::getContentsMargins(qreal* left0, qrea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -7375,7 +7375,7 @@ void PythonQtShell_QGraphicsAnchorLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7397,7 +7397,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsAnchorLayout::itemAt(int index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -7430,7 +7430,7 @@ void PythonQtShell_QGraphicsAnchorLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7452,7 +7452,7 @@ void PythonQtShell_QGraphicsAnchorLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -7474,7 +7474,7 @@ QSizeF PythonQtShell_QGraphicsAnchorLayout::sizeHint(Qt::SizeHint which0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -7507,7 +7507,7 @@ void PythonQtShell_QGraphicsAnchorLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7529,7 +7529,7 @@ void PythonQtShell_QGraphicsAnchorLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7606,7 +7606,7 @@ QRectF PythonQtShell_QGraphicsBlurEffect::boundingRectFor(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -7639,7 +7639,7 @@ void PythonQtShell_QGraphicsBlurEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7661,7 +7661,7 @@ void PythonQtShell_QGraphicsBlurEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7683,7 +7683,7 @@ void PythonQtShell_QGraphicsBlurEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7705,7 +7705,7 @@ bool PythonQtShell_QGraphicsBlurEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7738,7 +7738,7 @@ bool PythonQtShell_QGraphicsBlurEffect::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7771,7 +7771,7 @@ void PythonQtShell_QGraphicsBlurEffect::sourceChanged(QGraphicsEffect::ChangeFla if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -7793,7 +7793,7 @@ void PythonQtShell_QGraphicsBlurEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7848,7 +7848,7 @@ QRectF PythonQtShell_QGraphicsColorizeEffect::boundingRectFor(const QRectF& so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -7881,7 +7881,7 @@ void PythonQtShell_QGraphicsColorizeEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7903,7 +7903,7 @@ void PythonQtShell_QGraphicsColorizeEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7925,7 +7925,7 @@ void PythonQtShell_QGraphicsColorizeEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7947,7 +7947,7 @@ bool PythonQtShell_QGraphicsColorizeEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7980,7 +7980,7 @@ bool PythonQtShell_QGraphicsColorizeEffect::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8013,7 +8013,7 @@ void PythonQtShell_QGraphicsColorizeEffect::sourceChanged(QGraphicsEffect::Chang if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -8035,7 +8035,7 @@ void PythonQtShell_QGraphicsColorizeEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8090,7 +8090,7 @@ QRectF PythonQtShell_QGraphicsDropShadowEffect::boundingRectFor(const QRectF& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -8123,7 +8123,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8145,7 +8145,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8167,7 +8167,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8189,7 +8189,7 @@ bool PythonQtShell_QGraphicsDropShadowEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8222,7 +8222,7 @@ bool PythonQtShell_QGraphicsDropShadowEffect::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8255,7 +8255,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::sourceChanged(QGraphicsEffect::Cha if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -8277,7 +8277,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8347,7 +8347,7 @@ QRectF PythonQtShell_QGraphicsEffect::boundingRectFor(const QRectF& sourceRect if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -8380,7 +8380,7 @@ void PythonQtShell_QGraphicsEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8402,7 +8402,7 @@ void PythonQtShell_QGraphicsEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8424,7 +8424,7 @@ void PythonQtShell_QGraphicsEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8446,7 +8446,7 @@ bool PythonQtShell_QGraphicsEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8479,7 +8479,7 @@ bool PythonQtShell_QGraphicsEffect::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8512,7 +8512,7 @@ void PythonQtShell_QGraphicsEffect::sourceChanged(QGraphicsEffect::ChangeFlags if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -8534,7 +8534,7 @@ void PythonQtShell_QGraphicsEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8629,7 +8629,7 @@ void PythonQtShell_QGraphicsEllipseItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8651,7 +8651,7 @@ QRectF PythonQtShell_QGraphicsEllipseItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -8684,7 +8684,7 @@ bool PythonQtShell_QGraphicsEllipseItem::collidesWithItem(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -8717,7 +8717,7 @@ bool PythonQtShell_QGraphicsEllipseItem::collidesWithPath(const QPainterPath& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -8750,7 +8750,7 @@ bool PythonQtShell_QGraphicsEllipseItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -8783,7 +8783,7 @@ void PythonQtShell_QGraphicsEllipseItem::contextMenuEvent(QGraphicsSceneContextM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -8805,7 +8805,7 @@ void PythonQtShell_QGraphicsEllipseItem::dragEnterEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8827,7 +8827,7 @@ void PythonQtShell_QGraphicsEllipseItem::dragLeaveEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8849,7 +8849,7 @@ void PythonQtShell_QGraphicsEllipseItem::dragMoveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8871,7 +8871,7 @@ void PythonQtShell_QGraphicsEllipseItem::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8893,7 +8893,7 @@ QVariant PythonQtShell_QGraphicsEllipseItem::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -8926,7 +8926,7 @@ void PythonQtShell_QGraphicsEllipseItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8948,7 +8948,7 @@ void PythonQtShell_QGraphicsEllipseItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8970,7 +8970,7 @@ void PythonQtShell_QGraphicsEllipseItem::hoverEnterEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8992,7 +8992,7 @@ void PythonQtShell_QGraphicsEllipseItem::hoverLeaveEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9014,7 +9014,7 @@ void PythonQtShell_QGraphicsEllipseItem::hoverMoveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9036,7 +9036,7 @@ void PythonQtShell_QGraphicsEllipseItem::inputMethodEvent(QInputMethodEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9058,7 +9058,7 @@ QVariant PythonQtShell_QGraphicsEllipseItem::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9091,7 +9091,7 @@ bool PythonQtShell_QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9124,7 +9124,7 @@ QVariant PythonQtShell_QGraphicsEllipseItem::itemChange(QGraphicsItem::Graphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9160,7 +9160,7 @@ void PythonQtShell_QGraphicsEllipseItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9182,7 +9182,7 @@ void PythonQtShell_QGraphicsEllipseItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9204,7 +9204,7 @@ void PythonQtShell_QGraphicsEllipseItem::mouseDoubleClickEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9226,7 +9226,7 @@ void PythonQtShell_QGraphicsEllipseItem::mouseMoveEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9248,7 +9248,7 @@ void PythonQtShell_QGraphicsEllipseItem::mousePressEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9270,7 +9270,7 @@ void PythonQtShell_QGraphicsEllipseItem::mouseReleaseEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9292,7 +9292,7 @@ QPainterPath PythonQtShell_QGraphicsEllipseItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9325,7 +9325,7 @@ void PythonQtShell_QGraphicsEllipseItem::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9347,7 +9347,7 @@ bool PythonQtShell_QGraphicsEllipseItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9380,7 +9380,7 @@ bool PythonQtShell_QGraphicsEllipseItem::sceneEventFilter(QGraphicsItem* watch if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -9413,7 +9413,7 @@ void PythonQtShell_QGraphicsEllipseItem::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -9435,7 +9435,7 @@ QPainterPath PythonQtShell_QGraphicsEllipseItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9468,7 +9468,7 @@ bool PythonQtShell_QGraphicsEllipseItem::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -9501,7 +9501,7 @@ int PythonQtShell_QGraphicsEllipseItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9534,7 +9534,7 @@ void PythonQtShell_QGraphicsEllipseItem::wheelEvent(QGraphicsSceneWheelEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -9609,7 +9609,7 @@ int PythonQtShell_QGraphicsGridLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9642,7 +9642,7 @@ void PythonQtShell_QGraphicsGridLayout::getContentsMargins(qreal* left0, qreal* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -9664,7 +9664,7 @@ void PythonQtShell_QGraphicsGridLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9686,7 +9686,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsGridLayout::itemAt(int index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -9719,7 +9719,7 @@ void PythonQtShell_QGraphicsGridLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9741,7 +9741,7 @@ void PythonQtShell_QGraphicsGridLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9763,7 +9763,7 @@ QSizeF PythonQtShell_QGraphicsGridLayout::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9796,7 +9796,7 @@ void PythonQtShell_QGraphicsGridLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9818,7 +9818,7 @@ void PythonQtShell_QGraphicsGridLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10045,7 +10045,7 @@ void PythonQtShell_QGraphicsItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10067,7 +10067,7 @@ QRectF PythonQtShell_QGraphicsItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10100,7 +10100,7 @@ bool PythonQtShell_QGraphicsItem::collidesWithItem(const QGraphicsItem* other0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10133,7 +10133,7 @@ bool PythonQtShell_QGraphicsItem::collidesWithPath(const QPainterPath& path0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10166,7 +10166,7 @@ bool PythonQtShell_QGraphicsItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10199,7 +10199,7 @@ void PythonQtShell_QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10221,7 +10221,7 @@ void PythonQtShell_QGraphicsItem::dragEnterEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10243,7 +10243,7 @@ void PythonQtShell_QGraphicsItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10265,7 +10265,7 @@ void PythonQtShell_QGraphicsItem::dragMoveEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10287,7 +10287,7 @@ void PythonQtShell_QGraphicsItem::dropEvent(QGraphicsSceneDragDropEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10309,7 +10309,7 @@ QVariant PythonQtShell_QGraphicsItem::extension(const QVariant& variant0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -10342,7 +10342,7 @@ void PythonQtShell_QGraphicsItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10364,7 +10364,7 @@ void PythonQtShell_QGraphicsItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10386,7 +10386,7 @@ void PythonQtShell_QGraphicsItem::hoverEnterEvent(QGraphicsSceneHoverEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10408,7 +10408,7 @@ void PythonQtShell_QGraphicsItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10430,7 +10430,7 @@ void PythonQtShell_QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10452,7 +10452,7 @@ void PythonQtShell_QGraphicsItem::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10474,7 +10474,7 @@ QVariant PythonQtShell_QGraphicsItem::inputMethodQuery(Qt::InputMethodQuery qu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10507,7 +10507,7 @@ bool PythonQtShell_QGraphicsItem::isObscuredBy(const QGraphicsItem* item0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -10540,7 +10540,7 @@ QVariant PythonQtShell_QGraphicsItem::itemChange(QGraphicsItem::GraphicsItemCha if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -10576,7 +10576,7 @@ void PythonQtShell_QGraphicsItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10598,7 +10598,7 @@ void PythonQtShell_QGraphicsItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10620,7 +10620,7 @@ void PythonQtShell_QGraphicsItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10642,7 +10642,7 @@ void PythonQtShell_QGraphicsItem::mouseMoveEvent(QGraphicsSceneMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10664,7 +10664,7 @@ void PythonQtShell_QGraphicsItem::mousePressEvent(QGraphicsSceneMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10686,7 +10686,7 @@ void PythonQtShell_QGraphicsItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10708,7 +10708,7 @@ QPainterPath PythonQtShell_QGraphicsItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10741,7 +10741,7 @@ void PythonQtShell_QGraphicsItem::paint(QPainter* painter0, const QStyleOptionG if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -10763,7 +10763,7 @@ bool PythonQtShell_QGraphicsItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10796,7 +10796,7 @@ bool PythonQtShell_QGraphicsItem::sceneEventFilter(QGraphicsItem* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -10829,7 +10829,7 @@ void PythonQtShell_QGraphicsItem::setExtension(QGraphicsItem::Extension extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -10851,7 +10851,7 @@ QPainterPath PythonQtShell_QGraphicsItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10884,7 +10884,7 @@ bool PythonQtShell_QGraphicsItem::supportsExtension(QGraphicsItem::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -10917,7 +10917,7 @@ int PythonQtShell_QGraphicsItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10950,7 +10950,7 @@ void PythonQtShell_QGraphicsItem::wheelEvent(QGraphicsSceneWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -12024,7 +12024,7 @@ void PythonQtShell_QGraphicsItemAnimation::afterAnimationStep(qreal step0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("afterAnimationStep"); + static PyObject* name = PyUnicode_FromString("afterAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -12046,7 +12046,7 @@ void PythonQtShell_QGraphicsItemAnimation::beforeAnimationStep(qreal step0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beforeAnimationStep"); + static PyObject* name = PyUnicode_FromString("beforeAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -12068,7 +12068,7 @@ void PythonQtShell_QGraphicsItemAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12090,7 +12090,7 @@ void PythonQtShell_QGraphicsItemAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12112,7 +12112,7 @@ bool PythonQtShell_QGraphicsItemAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12145,7 +12145,7 @@ bool PythonQtShell_QGraphicsItemAnimation::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12178,7 +12178,7 @@ void PythonQtShell_QGraphicsItemAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12358,7 +12358,7 @@ void PythonQtShell_QGraphicsItemGroup::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12380,7 +12380,7 @@ QRectF PythonQtShell_QGraphicsItemGroup::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -12413,7 +12413,7 @@ bool PythonQtShell_QGraphicsItemGroup::collidesWithItem(const QGraphicsItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -12446,7 +12446,7 @@ bool PythonQtShell_QGraphicsItemGroup::collidesWithPath(const QPainterPath& pa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -12479,7 +12479,7 @@ bool PythonQtShell_QGraphicsItemGroup::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -12512,7 +12512,7 @@ void PythonQtShell_QGraphicsItemGroup::contextMenuEvent(QGraphicsSceneContextMen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -12534,7 +12534,7 @@ void PythonQtShell_QGraphicsItemGroup::dragEnterEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12556,7 +12556,7 @@ void PythonQtShell_QGraphicsItemGroup::dragLeaveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12578,7 +12578,7 @@ void PythonQtShell_QGraphicsItemGroup::dragMoveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12600,7 +12600,7 @@ void PythonQtShell_QGraphicsItemGroup::dropEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12622,7 +12622,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -12655,7 +12655,7 @@ void PythonQtShell_QGraphicsItemGroup::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12677,7 +12677,7 @@ void PythonQtShell_QGraphicsItemGroup::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12699,7 +12699,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12721,7 +12721,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12743,7 +12743,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12765,7 +12765,7 @@ void PythonQtShell_QGraphicsItemGroup::inputMethodEvent(QInputMethodEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12787,7 +12787,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12820,7 +12820,7 @@ bool PythonQtShell_QGraphicsItemGroup::isObscuredBy(const QGraphicsItem* item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -12853,7 +12853,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::itemChange(QGraphicsItem::GraphicsIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -12889,7 +12889,7 @@ void PythonQtShell_QGraphicsItemGroup::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12911,7 +12911,7 @@ void PythonQtShell_QGraphicsItemGroup::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12933,7 +12933,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseDoubleClickEvent(QGraphicsSceneMouse if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12955,7 +12955,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12977,7 +12977,7 @@ void PythonQtShell_QGraphicsItemGroup::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12999,7 +12999,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseReleaseEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -13021,7 +13021,7 @@ QPainterPath PythonQtShell_QGraphicsItemGroup::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13054,7 +13054,7 @@ void PythonQtShell_QGraphicsItemGroup::paint(QPainter* painter0, const QStyleOp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -13076,7 +13076,7 @@ bool PythonQtShell_QGraphicsItemGroup::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13109,7 +13109,7 @@ bool PythonQtShell_QGraphicsItemGroup::sceneEventFilter(QGraphicsItem* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -13142,7 +13142,7 @@ void PythonQtShell_QGraphicsItemGroup::setExtension(QGraphicsItem::Extension ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -13164,7 +13164,7 @@ QPainterPath PythonQtShell_QGraphicsItemGroup::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13197,7 +13197,7 @@ bool PythonQtShell_QGraphicsItemGroup::supportsExtension(QGraphicsItem::Extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -13230,7 +13230,7 @@ int PythonQtShell_QGraphicsItemGroup::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13263,7 +13263,7 @@ void PythonQtShell_QGraphicsItemGroup::wheelEvent(QGraphicsSceneWheelEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -13305,7 +13305,7 @@ int PythonQtShell_QGraphicsLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13338,7 +13338,7 @@ void PythonQtShell_QGraphicsLayout::getContentsMargins(qreal* left0, qreal* to if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -13360,7 +13360,7 @@ void PythonQtShell_QGraphicsLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13382,7 +13382,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsLayout::itemAt(int i0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -13415,7 +13415,7 @@ void PythonQtShell_QGraphicsLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13437,7 +13437,7 @@ void PythonQtShell_QGraphicsLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -13459,7 +13459,7 @@ QSizeF PythonQtShell_QGraphicsLayout::sizeHint(Qt::SizeHint which0, const QSiz if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -13492,7 +13492,7 @@ void PythonQtShell_QGraphicsLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13514,7 +13514,7 @@ void PythonQtShell_QGraphicsLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13601,7 +13601,7 @@ void PythonQtShell_QGraphicsLayoutItem::getContentsMargins(qreal* left0, qreal* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -13623,7 +13623,7 @@ void PythonQtShell_QGraphicsLayoutItem::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -13645,7 +13645,7 @@ QSizeF PythonQtShell_QGraphicsLayoutItem::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -13678,7 +13678,7 @@ void PythonQtShell_QGraphicsLayoutItem::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13900,7 +13900,7 @@ void PythonQtShell_QGraphicsLineItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13922,7 +13922,7 @@ QRectF PythonQtShell_QGraphicsLineItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -13955,7 +13955,7 @@ bool PythonQtShell_QGraphicsLineItem::collidesWithItem(const QGraphicsItem* ot if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -13988,7 +13988,7 @@ bool PythonQtShell_QGraphicsLineItem::collidesWithPath(const QPainterPath& pat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -14021,7 +14021,7 @@ bool PythonQtShell_QGraphicsLineItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -14054,7 +14054,7 @@ void PythonQtShell_QGraphicsLineItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -14076,7 +14076,7 @@ void PythonQtShell_QGraphicsLineItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -14098,7 +14098,7 @@ void PythonQtShell_QGraphicsLineItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -14120,7 +14120,7 @@ void PythonQtShell_QGraphicsLineItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -14142,7 +14142,7 @@ void PythonQtShell_QGraphicsLineItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -14164,7 +14164,7 @@ QVariant PythonQtShell_QGraphicsLineItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -14197,7 +14197,7 @@ void PythonQtShell_QGraphicsLineItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14219,7 +14219,7 @@ void PythonQtShell_QGraphicsLineItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14241,7 +14241,7 @@ void PythonQtShell_QGraphicsLineItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -14263,7 +14263,7 @@ void PythonQtShell_QGraphicsLineItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -14285,7 +14285,7 @@ void PythonQtShell_QGraphicsLineItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -14307,7 +14307,7 @@ void PythonQtShell_QGraphicsLineItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14329,7 +14329,7 @@ QVariant PythonQtShell_QGraphicsLineItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14362,7 +14362,7 @@ bool PythonQtShell_QGraphicsLineItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -14395,7 +14395,7 @@ QVariant PythonQtShell_QGraphicsLineItem::itemChange(QGraphicsItem::GraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -14431,7 +14431,7 @@ void PythonQtShell_QGraphicsLineItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14453,7 +14453,7 @@ void PythonQtShell_QGraphicsLineItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14475,7 +14475,7 @@ void PythonQtShell_QGraphicsLineItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14497,7 +14497,7 @@ void PythonQtShell_QGraphicsLineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14519,7 +14519,7 @@ void PythonQtShell_QGraphicsLineItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14541,7 +14541,7 @@ void PythonQtShell_QGraphicsLineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14563,7 +14563,7 @@ QPainterPath PythonQtShell_QGraphicsLineItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -14596,7 +14596,7 @@ void PythonQtShell_QGraphicsLineItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -14618,7 +14618,7 @@ bool PythonQtShell_QGraphicsLineItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14651,7 +14651,7 @@ bool PythonQtShell_QGraphicsLineItem::sceneEventFilter(QGraphicsItem* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -14684,7 +14684,7 @@ void PythonQtShell_QGraphicsLineItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -14706,7 +14706,7 @@ QPainterPath PythonQtShell_QGraphicsLineItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -14739,7 +14739,7 @@ bool PythonQtShell_QGraphicsLineItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -14772,7 +14772,7 @@ int PythonQtShell_QGraphicsLineItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14805,7 +14805,7 @@ void PythonQtShell_QGraphicsLineItem::wheelEvent(QGraphicsSceneWheelEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp index 6e7906be0..81577815a 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp @@ -86,7 +86,7 @@ int PythonQtShell_QGraphicsLinearLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -119,7 +119,7 @@ void PythonQtShell_QGraphicsLinearLayout::getContentsMargins(qreal* left0, qrea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -141,7 +141,7 @@ void PythonQtShell_QGraphicsLinearLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -163,7 +163,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsLinearLayout::itemAt(int index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -196,7 +196,7 @@ void PythonQtShell_QGraphicsLinearLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -218,7 +218,7 @@ void PythonQtShell_QGraphicsLinearLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -240,7 +240,7 @@ QSizeF PythonQtShell_QGraphicsLinearLayout::sizeHint(Qt::SizeHint which0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -273,7 +273,7 @@ void PythonQtShell_QGraphicsLinearLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -295,7 +295,7 @@ void PythonQtShell_QGraphicsLinearLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -411,7 +411,7 @@ void PythonQtShell_QGraphicsObject::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -433,7 +433,7 @@ QRectF PythonQtShell_QGraphicsObject::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -466,7 +466,7 @@ void PythonQtShell_QGraphicsObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -488,7 +488,7 @@ bool PythonQtShell_QGraphicsObject::collidesWithItem(const QGraphicsItem* othe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -521,7 +521,7 @@ bool PythonQtShell_QGraphicsObject::collidesWithPath(const QPainterPath& path0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -554,7 +554,7 @@ bool PythonQtShell_QGraphicsObject::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -587,7 +587,7 @@ void PythonQtShell_QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -609,7 +609,7 @@ void PythonQtShell_QGraphicsObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -631,7 +631,7 @@ void PythonQtShell_QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -653,7 +653,7 @@ void PythonQtShell_QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -675,7 +675,7 @@ void PythonQtShell_QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -697,7 +697,7 @@ void PythonQtShell_QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -719,7 +719,7 @@ bool PythonQtShell_QGraphicsObject::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -752,7 +752,7 @@ bool PythonQtShell_QGraphicsObject::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -785,7 +785,7 @@ QVariant PythonQtShell_QGraphicsObject::extension(const QVariant& variant0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -818,7 +818,7 @@ void PythonQtShell_QGraphicsObject::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -840,7 +840,7 @@ void PythonQtShell_QGraphicsObject::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -862,7 +862,7 @@ void PythonQtShell_QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -884,7 +884,7 @@ void PythonQtShell_QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -906,7 +906,7 @@ void PythonQtShell_QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -928,7 +928,7 @@ void PythonQtShell_QGraphicsObject::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -950,7 +950,7 @@ QVariant PythonQtShell_QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -983,7 +983,7 @@ bool PythonQtShell_QGraphicsObject::isObscuredBy(const QGraphicsItem* item0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1016,7 +1016,7 @@ QVariant PythonQtShell_QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -1052,7 +1052,7 @@ void PythonQtShell_QGraphicsObject::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1074,7 +1074,7 @@ void PythonQtShell_QGraphicsObject::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1096,7 +1096,7 @@ void PythonQtShell_QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1118,7 +1118,7 @@ void PythonQtShell_QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1140,7 +1140,7 @@ void PythonQtShell_QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1162,7 +1162,7 @@ void PythonQtShell_QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1184,7 +1184,7 @@ QPainterPath PythonQtShell_QGraphicsObject::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1217,7 +1217,7 @@ void PythonQtShell_QGraphicsObject::paint(QPainter* painter0, const QStyleOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1239,7 +1239,7 @@ bool PythonQtShell_QGraphicsObject::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1272,7 +1272,7 @@ bool PythonQtShell_QGraphicsObject::sceneEventFilter(QGraphicsItem* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -1305,7 +1305,7 @@ void PythonQtShell_QGraphicsObject::setExtension(QGraphicsItem::Extension exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -1327,7 +1327,7 @@ QPainterPath PythonQtShell_QGraphicsObject::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1360,7 +1360,7 @@ bool PythonQtShell_QGraphicsObject::supportsExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -1393,7 +1393,7 @@ void PythonQtShell_QGraphicsObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1415,7 +1415,7 @@ int PythonQtShell_QGraphicsObject::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1448,7 +1448,7 @@ void PythonQtShell_QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1510,7 +1510,7 @@ QRectF PythonQtShell_QGraphicsOpacityEffect::boundingRectFor(const QRectF& sou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -1543,7 +1543,7 @@ void PythonQtShell_QGraphicsOpacityEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1565,7 +1565,7 @@ void PythonQtShell_QGraphicsOpacityEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1587,7 +1587,7 @@ void PythonQtShell_QGraphicsOpacityEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1609,7 +1609,7 @@ bool PythonQtShell_QGraphicsOpacityEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1642,7 +1642,7 @@ bool PythonQtShell_QGraphicsOpacityEffect::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1675,7 +1675,7 @@ void PythonQtShell_QGraphicsOpacityEffect::sourceChanged(QGraphicsEffect::Change if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -1697,7 +1697,7 @@ void PythonQtShell_QGraphicsOpacityEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1752,7 +1752,7 @@ void PythonQtShell_QGraphicsPathItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1774,7 +1774,7 @@ QRectF PythonQtShell_QGraphicsPathItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1807,7 +1807,7 @@ bool PythonQtShell_QGraphicsPathItem::collidesWithItem(const QGraphicsItem* ot if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1840,7 +1840,7 @@ bool PythonQtShell_QGraphicsPathItem::collidesWithPath(const QPainterPath& pat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1873,7 +1873,7 @@ bool PythonQtShell_QGraphicsPathItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1906,7 +1906,7 @@ void PythonQtShell_QGraphicsPathItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1928,7 +1928,7 @@ void PythonQtShell_QGraphicsPathItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1950,7 +1950,7 @@ void PythonQtShell_QGraphicsPathItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1972,7 +1972,7 @@ void PythonQtShell_QGraphicsPathItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1994,7 +1994,7 @@ void PythonQtShell_QGraphicsPathItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2016,7 +2016,7 @@ QVariant PythonQtShell_QGraphicsPathItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -2049,7 +2049,7 @@ void PythonQtShell_QGraphicsPathItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2071,7 +2071,7 @@ void PythonQtShell_QGraphicsPathItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2093,7 +2093,7 @@ void PythonQtShell_QGraphicsPathItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -2115,7 +2115,7 @@ void PythonQtShell_QGraphicsPathItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -2137,7 +2137,7 @@ void PythonQtShell_QGraphicsPathItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -2159,7 +2159,7 @@ void PythonQtShell_QGraphicsPathItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2181,7 +2181,7 @@ QVariant PythonQtShell_QGraphicsPathItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2214,7 +2214,7 @@ bool PythonQtShell_QGraphicsPathItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -2247,7 +2247,7 @@ QVariant PythonQtShell_QGraphicsPathItem::itemChange(QGraphicsItem::GraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -2283,7 +2283,7 @@ void PythonQtShell_QGraphicsPathItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2305,7 +2305,7 @@ void PythonQtShell_QGraphicsPathItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2327,7 +2327,7 @@ void PythonQtShell_QGraphicsPathItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2349,7 +2349,7 @@ void PythonQtShell_QGraphicsPathItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2371,7 +2371,7 @@ void PythonQtShell_QGraphicsPathItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2393,7 +2393,7 @@ void PythonQtShell_QGraphicsPathItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2415,7 +2415,7 @@ QPainterPath PythonQtShell_QGraphicsPathItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2448,7 +2448,7 @@ void PythonQtShell_QGraphicsPathItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2470,7 +2470,7 @@ bool PythonQtShell_QGraphicsPathItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2503,7 +2503,7 @@ bool PythonQtShell_QGraphicsPathItem::sceneEventFilter(QGraphicsItem* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2536,7 +2536,7 @@ void PythonQtShell_QGraphicsPathItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2558,7 +2558,7 @@ QPainterPath PythonQtShell_QGraphicsPathItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2591,7 +2591,7 @@ bool PythonQtShell_QGraphicsPathItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2624,7 +2624,7 @@ int PythonQtShell_QGraphicsPathItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2657,7 +2657,7 @@ void PythonQtShell_QGraphicsPathItem::wheelEvent(QGraphicsSceneWheelEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2703,7 +2703,7 @@ void PythonQtShell_QGraphicsPixmapItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2725,7 +2725,7 @@ QRectF PythonQtShell_QGraphicsPixmapItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2758,7 +2758,7 @@ bool PythonQtShell_QGraphicsPixmapItem::collidesWithItem(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -2791,7 +2791,7 @@ bool PythonQtShell_QGraphicsPixmapItem::collidesWithPath(const QPainterPath& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -2824,7 +2824,7 @@ bool PythonQtShell_QGraphicsPixmapItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -2857,7 +2857,7 @@ void PythonQtShell_QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -2879,7 +2879,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2901,7 +2901,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2923,7 +2923,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2945,7 +2945,7 @@ void PythonQtShell_QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2967,7 +2967,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::extension(const QVariant& variant0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -3000,7 +3000,7 @@ void PythonQtShell_QGraphicsPixmapItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3022,7 +3022,7 @@ void PythonQtShell_QGraphicsPixmapItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3044,7 +3044,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -3066,7 +3066,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -3088,7 +3088,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -3110,7 +3110,7 @@ void PythonQtShell_QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3132,7 +3132,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3165,7 +3165,7 @@ bool PythonQtShell_QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem* item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -3198,7 +3198,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::itemChange(QGraphicsItem::GraphicsI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -3234,7 +3234,7 @@ void PythonQtShell_QGraphicsPixmapItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3256,7 +3256,7 @@ void PythonQtShell_QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3278,7 +3278,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -3300,7 +3300,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -3322,7 +3322,7 @@ void PythonQtShell_QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -3344,7 +3344,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -3366,7 +3366,7 @@ QPainterPath PythonQtShell_QGraphicsPixmapItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3399,7 +3399,7 @@ void PythonQtShell_QGraphicsPixmapItem::paint(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -3421,7 +3421,7 @@ bool PythonQtShell_QGraphicsPixmapItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3454,7 +3454,7 @@ bool PythonQtShell_QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem* watche if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -3487,7 +3487,7 @@ void PythonQtShell_QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -3509,7 +3509,7 @@ QPainterPath PythonQtShell_QGraphicsPixmapItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3542,7 +3542,7 @@ bool PythonQtShell_QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extens if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -3575,7 +3575,7 @@ int PythonQtShell_QGraphicsPixmapItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3608,7 +3608,7 @@ void PythonQtShell_QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -3689,7 +3689,7 @@ void PythonQtShell_QGraphicsPolygonItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3711,7 +3711,7 @@ QRectF PythonQtShell_QGraphicsPolygonItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -3744,7 +3744,7 @@ bool PythonQtShell_QGraphicsPolygonItem::collidesWithItem(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -3777,7 +3777,7 @@ bool PythonQtShell_QGraphicsPolygonItem::collidesWithPath(const QPainterPath& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -3810,7 +3810,7 @@ bool PythonQtShell_QGraphicsPolygonItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -3843,7 +3843,7 @@ void PythonQtShell_QGraphicsPolygonItem::contextMenuEvent(QGraphicsSceneContextM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -3865,7 +3865,7 @@ void PythonQtShell_QGraphicsPolygonItem::dragEnterEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3887,7 +3887,7 @@ void PythonQtShell_QGraphicsPolygonItem::dragLeaveEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3909,7 +3909,7 @@ void PythonQtShell_QGraphicsPolygonItem::dragMoveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3931,7 +3931,7 @@ void PythonQtShell_QGraphicsPolygonItem::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3953,7 +3953,7 @@ QVariant PythonQtShell_QGraphicsPolygonItem::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -3986,7 +3986,7 @@ void PythonQtShell_QGraphicsPolygonItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4008,7 +4008,7 @@ void PythonQtShell_QGraphicsPolygonItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4030,7 +4030,7 @@ void PythonQtShell_QGraphicsPolygonItem::hoverEnterEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -4052,7 +4052,7 @@ void PythonQtShell_QGraphicsPolygonItem::hoverLeaveEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -4074,7 +4074,7 @@ void PythonQtShell_QGraphicsPolygonItem::hoverMoveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -4096,7 +4096,7 @@ void PythonQtShell_QGraphicsPolygonItem::inputMethodEvent(QInputMethodEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4118,7 +4118,7 @@ QVariant PythonQtShell_QGraphicsPolygonItem::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4151,7 +4151,7 @@ bool PythonQtShell_QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -4184,7 +4184,7 @@ QVariant PythonQtShell_QGraphicsPolygonItem::itemChange(QGraphicsItem::Graphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -4220,7 +4220,7 @@ void PythonQtShell_QGraphicsPolygonItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4242,7 +4242,7 @@ void PythonQtShell_QGraphicsPolygonItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4264,7 +4264,7 @@ void PythonQtShell_QGraphicsPolygonItem::mouseDoubleClickEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4286,7 +4286,7 @@ void PythonQtShell_QGraphicsPolygonItem::mouseMoveEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4308,7 +4308,7 @@ void PythonQtShell_QGraphicsPolygonItem::mousePressEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4330,7 +4330,7 @@ void PythonQtShell_QGraphicsPolygonItem::mouseReleaseEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4352,7 +4352,7 @@ QPainterPath PythonQtShell_QGraphicsPolygonItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -4385,7 +4385,7 @@ void PythonQtShell_QGraphicsPolygonItem::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -4407,7 +4407,7 @@ bool PythonQtShell_QGraphicsPolygonItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4440,7 +4440,7 @@ bool PythonQtShell_QGraphicsPolygonItem::sceneEventFilter(QGraphicsItem* watch if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -4473,7 +4473,7 @@ void PythonQtShell_QGraphicsPolygonItem::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -4495,7 +4495,7 @@ QPainterPath PythonQtShell_QGraphicsPolygonItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -4528,7 +4528,7 @@ bool PythonQtShell_QGraphicsPolygonItem::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -4561,7 +4561,7 @@ int PythonQtShell_QGraphicsPolygonItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4594,7 +4594,7 @@ void PythonQtShell_QGraphicsPolygonItem::wheelEvent(QGraphicsSceneWheelEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -4650,7 +4650,7 @@ void PythonQtShell_QGraphicsProxyWidget::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4672,7 +4672,7 @@ QRectF PythonQtShell_QGraphicsProxyWidget::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -4705,7 +4705,7 @@ void PythonQtShell_QGraphicsProxyWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4727,7 +4727,7 @@ void PythonQtShell_QGraphicsProxyWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4749,7 +4749,7 @@ void PythonQtShell_QGraphicsProxyWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4771,7 +4771,7 @@ bool PythonQtShell_QGraphicsProxyWidget::collidesWithItem(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -4804,7 +4804,7 @@ bool PythonQtShell_QGraphicsProxyWidget::collidesWithPath(const QPainterPath& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -4837,7 +4837,7 @@ bool PythonQtShell_QGraphicsProxyWidget::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -4870,7 +4870,7 @@ void PythonQtShell_QGraphicsProxyWidget::contextMenuEvent(QGraphicsSceneContextM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -4892,7 +4892,7 @@ void PythonQtShell_QGraphicsProxyWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4914,7 +4914,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragEnterEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4936,7 +4936,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragLeaveEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4958,7 +4958,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragMoveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4980,7 +4980,7 @@ void PythonQtShell_QGraphicsProxyWidget::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5002,7 +5002,7 @@ bool PythonQtShell_QGraphicsProxyWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5035,7 +5035,7 @@ bool PythonQtShell_QGraphicsProxyWidget::eventFilter(QObject* object0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5068,7 +5068,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -5101,7 +5101,7 @@ void PythonQtShell_QGraphicsProxyWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5123,7 +5123,7 @@ bool PythonQtShell_QGraphicsProxyWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5156,7 +5156,7 @@ void PythonQtShell_QGraphicsProxyWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5178,7 +5178,7 @@ void PythonQtShell_QGraphicsProxyWidget::getContentsMargins(qreal* left0, qreal if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -5200,7 +5200,7 @@ void PythonQtShell_QGraphicsProxyWidget::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5222,7 +5222,7 @@ void PythonQtShell_QGraphicsProxyWidget::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5244,7 +5244,7 @@ void PythonQtShell_QGraphicsProxyWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5266,7 +5266,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverEnterEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5288,7 +5288,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverLeaveEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5310,7 +5310,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverMoveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5332,7 +5332,7 @@ void PythonQtShell_QGraphicsProxyWidget::initStyleOption(QStyleOption* option0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -5354,7 +5354,7 @@ void PythonQtShell_QGraphicsProxyWidget::inputMethodEvent(QInputMethodEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5376,7 +5376,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5409,7 +5409,7 @@ bool PythonQtShell_QGraphicsProxyWidget::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5442,7 +5442,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::itemChange(QGraphicsItem::Graphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -5478,7 +5478,7 @@ void PythonQtShell_QGraphicsProxyWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5500,7 +5500,7 @@ void PythonQtShell_QGraphicsProxyWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5522,7 +5522,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseDoubleClickEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5544,7 +5544,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseMoveEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5566,7 +5566,7 @@ void PythonQtShell_QGraphicsProxyWidget::mousePressEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5588,7 +5588,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseReleaseEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5610,7 +5610,7 @@ void PythonQtShell_QGraphicsProxyWidget::moveEvent(QGraphicsSceneMoveEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -5632,7 +5632,7 @@ QPainterPath PythonQtShell_QGraphicsProxyWidget::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5665,7 +5665,7 @@ void PythonQtShell_QGraphicsProxyWidget::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -5687,7 +5687,7 @@ void PythonQtShell_QGraphicsProxyWidget::paintWindowFrame(QPainter* painter0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -5709,7 +5709,7 @@ void PythonQtShell_QGraphicsProxyWidget::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5731,7 +5731,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::propertyChange(const QString& pro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -5764,7 +5764,7 @@ void PythonQtShell_QGraphicsProxyWidget::resizeEvent(QGraphicsSceneResizeEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -5786,7 +5786,7 @@ bool PythonQtShell_QGraphicsProxyWidget::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5819,7 +5819,7 @@ bool PythonQtShell_QGraphicsProxyWidget::sceneEventFilter(QGraphicsItem* watch if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -5852,7 +5852,7 @@ void PythonQtShell_QGraphicsProxyWidget::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -5874,7 +5874,7 @@ void PythonQtShell_QGraphicsProxyWidget::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -5896,7 +5896,7 @@ QPainterPath PythonQtShell_QGraphicsProxyWidget::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5929,7 +5929,7 @@ void PythonQtShell_QGraphicsProxyWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5951,7 +5951,7 @@ QSizeF PythonQtShell_QGraphicsProxyWidget::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -5984,7 +5984,7 @@ bool PythonQtShell_QGraphicsProxyWidget::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QGraphicsProxyWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6039,7 +6039,7 @@ int PythonQtShell_QGraphicsProxyWidget::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QGraphicsProxyWidget::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6094,7 +6094,7 @@ void PythonQtShell_QGraphicsProxyWidget::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6116,7 +6116,7 @@ void PythonQtShell_QGraphicsProxyWidget::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6138,7 +6138,7 @@ void PythonQtShell_QGraphicsProxyWidget::wheelEvent(QGraphicsSceneWheelEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -6160,7 +6160,7 @@ bool PythonQtShell_QGraphicsProxyWidget::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6193,7 +6193,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsProxyWidget::windowFrameSectionAt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -6269,7 +6269,7 @@ void PythonQtShell_QGraphicsRectItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6291,7 +6291,7 @@ QRectF PythonQtShell_QGraphicsRectItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -6324,7 +6324,7 @@ bool PythonQtShell_QGraphicsRectItem::collidesWithItem(const QGraphicsItem* ot if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -6357,7 +6357,7 @@ bool PythonQtShell_QGraphicsRectItem::collidesWithPath(const QPainterPath& pat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -6390,7 +6390,7 @@ bool PythonQtShell_QGraphicsRectItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -6423,7 +6423,7 @@ void PythonQtShell_QGraphicsRectItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -6445,7 +6445,7 @@ void PythonQtShell_QGraphicsRectItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6467,7 +6467,7 @@ void PythonQtShell_QGraphicsRectItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6489,7 +6489,7 @@ void PythonQtShell_QGraphicsRectItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6511,7 +6511,7 @@ void PythonQtShell_QGraphicsRectItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6533,7 +6533,7 @@ QVariant PythonQtShell_QGraphicsRectItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -6566,7 +6566,7 @@ void PythonQtShell_QGraphicsRectItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6588,7 +6588,7 @@ void PythonQtShell_QGraphicsRectItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6610,7 +6610,7 @@ void PythonQtShell_QGraphicsRectItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6632,7 +6632,7 @@ void PythonQtShell_QGraphicsRectItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6654,7 +6654,7 @@ void PythonQtShell_QGraphicsRectItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6676,7 +6676,7 @@ void PythonQtShell_QGraphicsRectItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6698,7 +6698,7 @@ QVariant PythonQtShell_QGraphicsRectItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6731,7 +6731,7 @@ bool PythonQtShell_QGraphicsRectItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6764,7 +6764,7 @@ QVariant PythonQtShell_QGraphicsRectItem::itemChange(QGraphicsItem::GraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -6800,7 +6800,7 @@ void PythonQtShell_QGraphicsRectItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6822,7 +6822,7 @@ void PythonQtShell_QGraphicsRectItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6844,7 +6844,7 @@ void PythonQtShell_QGraphicsRectItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6866,7 +6866,7 @@ void PythonQtShell_QGraphicsRectItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6888,7 +6888,7 @@ void PythonQtShell_QGraphicsRectItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6910,7 +6910,7 @@ void PythonQtShell_QGraphicsRectItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6932,7 +6932,7 @@ QPainterPath PythonQtShell_QGraphicsRectItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6965,7 +6965,7 @@ void PythonQtShell_QGraphicsRectItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6987,7 +6987,7 @@ bool PythonQtShell_QGraphicsRectItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7020,7 +7020,7 @@ bool PythonQtShell_QGraphicsRectItem::sceneEventFilter(QGraphicsItem* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -7053,7 +7053,7 @@ void PythonQtShell_QGraphicsRectItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -7075,7 +7075,7 @@ QPainterPath PythonQtShell_QGraphicsRectItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -7108,7 +7108,7 @@ bool PythonQtShell_QGraphicsRectItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -7141,7 +7141,7 @@ int PythonQtShell_QGraphicsRectItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7174,7 +7174,7 @@ void PythonQtShell_QGraphicsRectItem::wheelEvent(QGraphicsSceneWheelEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -7229,7 +7229,7 @@ void PythonQtShell_QGraphicsRotation::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -7251,7 +7251,7 @@ void PythonQtShell_QGraphicsRotation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7273,7 +7273,7 @@ void PythonQtShell_QGraphicsRotation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7295,7 +7295,7 @@ bool PythonQtShell_QGraphicsRotation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7328,7 +7328,7 @@ bool PythonQtShell_QGraphicsRotation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7361,7 +7361,7 @@ void PythonQtShell_QGraphicsRotation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7441,7 +7441,7 @@ void PythonQtShell_QGraphicsScale::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -7463,7 +7463,7 @@ void PythonQtShell_QGraphicsScale::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7485,7 +7485,7 @@ void PythonQtShell_QGraphicsScale::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7507,7 +7507,7 @@ bool PythonQtShell_QGraphicsScale::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7540,7 +7540,7 @@ bool PythonQtShell_QGraphicsScale::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7573,7 +7573,7 @@ void PythonQtShell_QGraphicsScale::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7658,7 +7658,7 @@ void PythonQtShell_QGraphicsScene::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7680,7 +7680,7 @@ void PythonQtShell_QGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -7702,7 +7702,7 @@ void PythonQtShell_QGraphicsScene::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7724,7 +7724,7 @@ void PythonQtShell_QGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7746,7 +7746,7 @@ void PythonQtShell_QGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7768,7 +7768,7 @@ void PythonQtShell_QGraphicsScene::dragMoveEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7790,7 +7790,7 @@ void PythonQtShell_QGraphicsScene::drawBackground(QPainter* painter0, const QRe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -7812,7 +7812,7 @@ void PythonQtShell_QGraphicsScene::drawForeground(QPainter* painter0, const QRe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -7834,7 +7834,7 @@ void PythonQtShell_QGraphicsScene::drawItems(QPainter* painter0, int numItems1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -7856,7 +7856,7 @@ void PythonQtShell_QGraphicsScene::dropEvent(QGraphicsSceneDragDropEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7878,7 +7878,7 @@ bool PythonQtShell_QGraphicsScene::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7911,7 +7911,7 @@ bool PythonQtShell_QGraphicsScene::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7944,7 +7944,7 @@ void PythonQtShell_QGraphicsScene::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7966,7 +7966,7 @@ void PythonQtShell_QGraphicsScene::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7988,7 +7988,7 @@ void PythonQtShell_QGraphicsScene::helpEvent(QGraphicsSceneHelpEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHelpEvent*"}; @@ -8010,7 +8010,7 @@ void PythonQtShell_QGraphicsScene::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8032,7 +8032,7 @@ QVariant PythonQtShell_QGraphicsScene::inputMethodQuery(Qt::InputMethodQuery q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8065,7 +8065,7 @@ void PythonQtShell_QGraphicsScene::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8087,7 +8087,7 @@ void PythonQtShell_QGraphicsScene::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8109,7 +8109,7 @@ void PythonQtShell_QGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8131,7 +8131,7 @@ void PythonQtShell_QGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8153,7 +8153,7 @@ void PythonQtShell_QGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8175,7 +8175,7 @@ void PythonQtShell_QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8197,7 +8197,7 @@ void PythonQtShell_QGraphicsScene::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8219,7 +8219,7 @@ void PythonQtShell_QGraphicsScene::wheelEvent(QGraphicsSceneWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -9293,7 +9293,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9315,7 +9315,7 @@ QRectF PythonQtShell_QGraphicsSimpleTextItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -9348,7 +9348,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::collidesWithItem(const QGraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -9381,7 +9381,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::collidesWithPath(const QPainterPath if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -9414,7 +9414,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::contains(const QPointF& point0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -9447,7 +9447,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::contextMenuEvent(QGraphicsSceneConte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -9469,7 +9469,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::dragEnterEvent(QGraphicsSceneDragDro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9491,7 +9491,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::dragLeaveEvent(QGraphicsSceneDragDro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9513,7 +9513,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::dragMoveEvent(QGraphicsSceneDragDrop if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9535,7 +9535,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::dropEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9557,7 +9557,7 @@ QVariant PythonQtShell_QGraphicsSimpleTextItem::extension(const QVariant& vari if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -9590,7 +9590,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9612,7 +9612,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9634,7 +9634,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::hoverEnterEvent(QGraphicsSceneHoverE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9656,7 +9656,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::hoverLeaveEvent(QGraphicsSceneHoverE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9678,7 +9678,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::hoverMoveEvent(QGraphicsSceneHoverEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9700,7 +9700,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::inputMethodEvent(QInputMethodEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9722,7 +9722,7 @@ QVariant PythonQtShell_QGraphicsSimpleTextItem::inputMethodQuery(Qt::InputMetho if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9755,7 +9755,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9788,7 +9788,7 @@ QVariant PythonQtShell_QGraphicsSimpleTextItem::itemChange(QGraphicsItem::Graph if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9824,7 +9824,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9846,7 +9846,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9868,7 +9868,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::mouseDoubleClickEvent(QGraphicsScene if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9890,7 +9890,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::mouseMoveEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9912,7 +9912,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::mousePressEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9934,7 +9934,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::mouseReleaseEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9956,7 +9956,7 @@ QPainterPath PythonQtShell_QGraphicsSimpleTextItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9989,7 +9989,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::paint(QPainter* painter0, const QSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -10011,7 +10011,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10044,7 +10044,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::sceneEventFilter(QGraphicsItem* wa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -10077,7 +10077,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::setExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -10099,7 +10099,7 @@ QPainterPath PythonQtShell_QGraphicsSimpleTextItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10132,7 +10132,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::supportsExtension(QGraphicsItem::Ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -10165,7 +10165,7 @@ int PythonQtShell_QGraphicsSimpleTextItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10198,7 +10198,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::wheelEvent(QGraphicsSceneWheelEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -10254,7 +10254,7 @@ void PythonQtShell_QGraphicsTextItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10276,7 +10276,7 @@ QRectF PythonQtShell_QGraphicsTextItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10309,7 +10309,7 @@ void PythonQtShell_QGraphicsTextItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10331,7 +10331,7 @@ bool PythonQtShell_QGraphicsTextItem::collidesWithItem(const QGraphicsItem* ot if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10364,7 +10364,7 @@ bool PythonQtShell_QGraphicsTextItem::collidesWithPath(const QPainterPath& pat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10397,7 +10397,7 @@ bool PythonQtShell_QGraphicsTextItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10430,7 +10430,7 @@ void PythonQtShell_QGraphicsTextItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10452,7 +10452,7 @@ void PythonQtShell_QGraphicsTextItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10474,7 +10474,7 @@ void PythonQtShell_QGraphicsTextItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10496,7 +10496,7 @@ void PythonQtShell_QGraphicsTextItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10518,7 +10518,7 @@ void PythonQtShell_QGraphicsTextItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10540,7 +10540,7 @@ void PythonQtShell_QGraphicsTextItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10562,7 +10562,7 @@ bool PythonQtShell_QGraphicsTextItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10595,7 +10595,7 @@ bool PythonQtShell_QGraphicsTextItem::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10628,7 +10628,7 @@ QVariant PythonQtShell_QGraphicsTextItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -10661,7 +10661,7 @@ void PythonQtShell_QGraphicsTextItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10683,7 +10683,7 @@ void PythonQtShell_QGraphicsTextItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10705,7 +10705,7 @@ void PythonQtShell_QGraphicsTextItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10727,7 +10727,7 @@ void PythonQtShell_QGraphicsTextItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10749,7 +10749,7 @@ void PythonQtShell_QGraphicsTextItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10771,7 +10771,7 @@ void PythonQtShell_QGraphicsTextItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10793,7 +10793,7 @@ QVariant PythonQtShell_QGraphicsTextItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10826,7 +10826,7 @@ bool PythonQtShell_QGraphicsTextItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -10859,7 +10859,7 @@ QVariant PythonQtShell_QGraphicsTextItem::itemChange(QGraphicsItem::GraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -10895,7 +10895,7 @@ void PythonQtShell_QGraphicsTextItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10917,7 +10917,7 @@ void PythonQtShell_QGraphicsTextItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10939,7 +10939,7 @@ void PythonQtShell_QGraphicsTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10961,7 +10961,7 @@ void PythonQtShell_QGraphicsTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10983,7 +10983,7 @@ void PythonQtShell_QGraphicsTextItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11005,7 +11005,7 @@ void PythonQtShell_QGraphicsTextItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11027,7 +11027,7 @@ QPainterPath PythonQtShell_QGraphicsTextItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11060,7 +11060,7 @@ void PythonQtShell_QGraphicsTextItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -11082,7 +11082,7 @@ bool PythonQtShell_QGraphicsTextItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11115,7 +11115,7 @@ bool PythonQtShell_QGraphicsTextItem::sceneEventFilter(QGraphicsItem* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -11148,7 +11148,7 @@ void PythonQtShell_QGraphicsTextItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -11170,7 +11170,7 @@ QPainterPath PythonQtShell_QGraphicsTextItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11203,7 +11203,7 @@ bool PythonQtShell_QGraphicsTextItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -11236,7 +11236,7 @@ void PythonQtShell_QGraphicsTextItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11258,7 +11258,7 @@ int PythonQtShell_QGraphicsTextItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11291,7 +11291,7 @@ void PythonQtShell_QGraphicsTextItem::wheelEvent(QGraphicsSceneWheelEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -11445,7 +11445,7 @@ void PythonQtShell_QGraphicsTransform::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -11467,7 +11467,7 @@ void PythonQtShell_QGraphicsTransform::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11489,7 +11489,7 @@ void PythonQtShell_QGraphicsTransform::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11511,7 +11511,7 @@ bool PythonQtShell_QGraphicsTransform::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11544,7 +11544,7 @@ bool PythonQtShell_QGraphicsTransform::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11577,7 +11577,7 @@ void PythonQtShell_QGraphicsTransform::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11627,7 +11627,7 @@ void PythonQtShell_QGraphicsView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11649,7 +11649,7 @@ void PythonQtShell_QGraphicsView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11671,7 +11671,7 @@ void PythonQtShell_QGraphicsView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11693,7 +11693,7 @@ void PythonQtShell_QGraphicsView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11715,7 +11715,7 @@ void PythonQtShell_QGraphicsView::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11737,7 +11737,7 @@ void PythonQtShell_QGraphicsView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11759,7 +11759,7 @@ int PythonQtShell_QGraphicsView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11792,7 +11792,7 @@ void PythonQtShell_QGraphicsView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11814,7 +11814,7 @@ void PythonQtShell_QGraphicsView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11836,7 +11836,7 @@ void PythonQtShell_QGraphicsView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11858,7 +11858,7 @@ void PythonQtShell_QGraphicsView::drawBackground(QPainter* painter0, const QRec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -11880,7 +11880,7 @@ void PythonQtShell_QGraphicsView::drawForeground(QPainter* painter0, const QRec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -11902,7 +11902,7 @@ void PythonQtShell_QGraphicsView::drawItems(QPainter* painter0, int numItems1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*"}; @@ -11924,7 +11924,7 @@ void PythonQtShell_QGraphicsView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11946,7 +11946,7 @@ void PythonQtShell_QGraphicsView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11968,7 +11968,7 @@ bool PythonQtShell_QGraphicsView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12001,7 +12001,7 @@ bool PythonQtShell_QGraphicsView::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12034,7 +12034,7 @@ void PythonQtShell_QGraphicsView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12056,7 +12056,7 @@ bool PythonQtShell_QGraphicsView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12089,7 +12089,7 @@ void PythonQtShell_QGraphicsView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12111,7 +12111,7 @@ bool PythonQtShell_QGraphicsView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12144,7 +12144,7 @@ int PythonQtShell_QGraphicsView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12177,7 +12177,7 @@ void PythonQtShell_QGraphicsView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12199,7 +12199,7 @@ void PythonQtShell_QGraphicsView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12221,7 +12221,7 @@ void PythonQtShell_QGraphicsView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12243,7 +12243,7 @@ QVariant PythonQtShell_QGraphicsView::inputMethodQuery(Qt::InputMethodQuery qu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12276,7 +12276,7 @@ void PythonQtShell_QGraphicsView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12298,7 +12298,7 @@ void PythonQtShell_QGraphicsView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12320,7 +12320,7 @@ void PythonQtShell_QGraphicsView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12342,7 +12342,7 @@ int PythonQtShell_QGraphicsView::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12375,7 +12375,7 @@ QSize PythonQtShell_QGraphicsView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12408,7 +12408,7 @@ void PythonQtShell_QGraphicsView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12430,7 +12430,7 @@ void PythonQtShell_QGraphicsView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12452,7 +12452,7 @@ void PythonQtShell_QGraphicsView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12474,7 +12474,7 @@ void PythonQtShell_QGraphicsView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12496,7 +12496,7 @@ void PythonQtShell_QGraphicsView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12518,7 +12518,7 @@ bool PythonQtShell_QGraphicsView::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12551,7 +12551,7 @@ QPaintEngine* PythonQtShell_QGraphicsView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12584,7 +12584,7 @@ void PythonQtShell_QGraphicsView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12606,7 +12606,7 @@ QPaintDevice* PythonQtShell_QGraphicsView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12639,7 +12639,7 @@ void PythonQtShell_QGraphicsView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12661,7 +12661,7 @@ void PythonQtShell_QGraphicsView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -12683,7 +12683,7 @@ void PythonQtShell_QGraphicsView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12705,7 +12705,7 @@ void PythonQtShell_QGraphicsView::setupViewport(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12727,7 +12727,7 @@ QPainter* PythonQtShell_QGraphicsView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12760,7 +12760,7 @@ void PythonQtShell_QGraphicsView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12782,7 +12782,7 @@ QSize PythonQtShell_QGraphicsView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12815,7 +12815,7 @@ void PythonQtShell_QGraphicsView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12837,7 +12837,7 @@ void PythonQtShell_QGraphicsView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12859,7 +12859,7 @@ bool PythonQtShell_QGraphicsView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12892,7 +12892,7 @@ QSize PythonQtShell_QGraphicsView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12925,7 +12925,7 @@ void PythonQtShell_QGraphicsView::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13369,7 +13369,7 @@ void PythonQtShell_QGraphicsWidget::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13391,7 +13391,7 @@ QRectF PythonQtShell_QGraphicsWidget::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -13424,7 +13424,7 @@ void PythonQtShell_QGraphicsWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13446,7 +13446,7 @@ void PythonQtShell_QGraphicsWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13468,7 +13468,7 @@ void PythonQtShell_QGraphicsWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13490,7 +13490,7 @@ bool PythonQtShell_QGraphicsWidget::collidesWithItem(const QGraphicsItem* othe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -13523,7 +13523,7 @@ bool PythonQtShell_QGraphicsWidget::collidesWithPath(const QPainterPath& path0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -13556,7 +13556,7 @@ bool PythonQtShell_QGraphicsWidget::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -13589,7 +13589,7 @@ void PythonQtShell_QGraphicsWidget::contextMenuEvent(QGraphicsSceneContextMenuEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -13611,7 +13611,7 @@ void PythonQtShell_QGraphicsWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13633,7 +13633,7 @@ void PythonQtShell_QGraphicsWidget::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -13655,7 +13655,7 @@ void PythonQtShell_QGraphicsWidget::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -13677,7 +13677,7 @@ void PythonQtShell_QGraphicsWidget::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -13699,7 +13699,7 @@ void PythonQtShell_QGraphicsWidget::dropEvent(QGraphicsSceneDragDropEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -13721,7 +13721,7 @@ bool PythonQtShell_QGraphicsWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13754,7 +13754,7 @@ bool PythonQtShell_QGraphicsWidget::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13787,7 +13787,7 @@ QVariant PythonQtShell_QGraphicsWidget::extension(const QVariant& variant0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -13820,7 +13820,7 @@ void PythonQtShell_QGraphicsWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13842,7 +13842,7 @@ bool PythonQtShell_QGraphicsWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13875,7 +13875,7 @@ void PythonQtShell_QGraphicsWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13897,7 +13897,7 @@ void PythonQtShell_QGraphicsWidget::getContentsMargins(qreal* left0, qreal* to if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -13919,7 +13919,7 @@ void PythonQtShell_QGraphicsWidget::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13941,7 +13941,7 @@ void PythonQtShell_QGraphicsWidget::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13963,7 +13963,7 @@ void PythonQtShell_QGraphicsWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13985,7 +13985,7 @@ void PythonQtShell_QGraphicsWidget::hoverEnterEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -14007,7 +14007,7 @@ void PythonQtShell_QGraphicsWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -14029,7 +14029,7 @@ void PythonQtShell_QGraphicsWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -14051,7 +14051,7 @@ void PythonQtShell_QGraphicsWidget::initStyleOption(QStyleOption* option0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -14073,7 +14073,7 @@ void PythonQtShell_QGraphicsWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14095,7 +14095,7 @@ QVariant PythonQtShell_QGraphicsWidget::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14128,7 +14128,7 @@ bool PythonQtShell_QGraphicsWidget::isObscuredBy(const QGraphicsItem* item0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -14161,7 +14161,7 @@ QVariant PythonQtShell_QGraphicsWidget::itemChange(QGraphicsItem::GraphicsItemC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -14197,7 +14197,7 @@ void PythonQtShell_QGraphicsWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14219,7 +14219,7 @@ void PythonQtShell_QGraphicsWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14241,7 +14241,7 @@ void PythonQtShell_QGraphicsWidget::mouseDoubleClickEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14263,7 +14263,7 @@ void PythonQtShell_QGraphicsWidget::mouseMoveEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14285,7 +14285,7 @@ void PythonQtShell_QGraphicsWidget::mousePressEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14307,7 +14307,7 @@ void PythonQtShell_QGraphicsWidget::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -14329,7 +14329,7 @@ void PythonQtShell_QGraphicsWidget::moveEvent(QGraphicsSceneMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -14351,7 +14351,7 @@ QPainterPath PythonQtShell_QGraphicsWidget::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -14384,7 +14384,7 @@ void PythonQtShell_QGraphicsWidget::paint(QPainter* painter0, const QStyleOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -14406,7 +14406,7 @@ void PythonQtShell_QGraphicsWidget::paintWindowFrame(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -14428,7 +14428,7 @@ void PythonQtShell_QGraphicsWidget::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14450,7 +14450,7 @@ QVariant PythonQtShell_QGraphicsWidget::propertyChange(const QString& property if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -14483,7 +14483,7 @@ void PythonQtShell_QGraphicsWidget::resizeEvent(QGraphicsSceneResizeEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -14505,7 +14505,7 @@ bool PythonQtShell_QGraphicsWidget::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14538,7 +14538,7 @@ bool PythonQtShell_QGraphicsWidget::sceneEventFilter(QGraphicsItem* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -14571,7 +14571,7 @@ void PythonQtShell_QGraphicsWidget::setExtension(QGraphicsItem::Extension exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -14593,7 +14593,7 @@ void PythonQtShell_QGraphicsWidget::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -14615,7 +14615,7 @@ QPainterPath PythonQtShell_QGraphicsWidget::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -14648,7 +14648,7 @@ void PythonQtShell_QGraphicsWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14670,7 +14670,7 @@ QSizeF PythonQtShell_QGraphicsWidget::sizeHint(Qt::SizeHint which0, const QSiz if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -14703,7 +14703,7 @@ bool PythonQtShell_QGraphicsWidget::supportsExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -14736,7 +14736,7 @@ void PythonQtShell_QGraphicsWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14758,7 +14758,7 @@ int PythonQtShell_QGraphicsWidget::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14791,7 +14791,7 @@ void PythonQtShell_QGraphicsWidget::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14813,7 +14813,7 @@ void PythonQtShell_QGraphicsWidget::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14835,7 +14835,7 @@ void PythonQtShell_QGraphicsWidget::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14857,7 +14857,7 @@ void PythonQtShell_QGraphicsWidget::wheelEvent(QGraphicsSceneWheelEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -14879,7 +14879,7 @@ bool PythonQtShell_QGraphicsWidget::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14912,7 +14912,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsWidget::windowFrameSectionAt(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -15298,7 +15298,7 @@ void PythonQtShell_QGridLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -15320,7 +15320,7 @@ void PythonQtShell_QGridLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15342,7 +15342,7 @@ QSizePolicy::ControlTypes PythonQtShell_QGridLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -15375,7 +15375,7 @@ int PythonQtShell_QGridLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15408,7 +15408,7 @@ void PythonQtShell_QGridLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15430,7 +15430,7 @@ bool PythonQtShell_QGridLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15463,7 +15463,7 @@ bool PythonQtShell_QGridLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15496,7 +15496,7 @@ Qt::Orientations PythonQtShell_QGridLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -15529,7 +15529,7 @@ QRect PythonQtShell_QGridLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -15562,7 +15562,7 @@ bool PythonQtShell_QGridLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15595,7 +15595,7 @@ int PythonQtShell_QGridLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15628,7 +15628,7 @@ int PythonQtShell_QGridLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -15661,7 +15661,7 @@ void PythonQtShell_QGridLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15683,7 +15683,7 @@ bool PythonQtShell_QGridLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15716,7 +15716,7 @@ QLayoutItem* PythonQtShell_QGridLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15749,7 +15749,7 @@ QLayout* PythonQtShell_QGridLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -15782,7 +15782,7 @@ QSize PythonQtShell_QGridLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15815,7 +15815,7 @@ int PythonQtShell_QGridLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15848,7 +15848,7 @@ QSize PythonQtShell_QGridLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15881,7 +15881,7 @@ void PythonQtShell_QGridLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -15903,7 +15903,7 @@ QSize PythonQtShell_QGridLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15936,7 +15936,7 @@ QSpacerItem* PythonQtShell_QGridLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -15969,7 +15969,7 @@ QLayoutItem* PythonQtShell_QGridLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -16002,7 +16002,7 @@ void PythonQtShell_QGridLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16024,7 +16024,7 @@ QWidget* PythonQtShell_QGridLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -16214,7 +16214,7 @@ void PythonQtShell_QGroupBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16236,7 +16236,7 @@ void PythonQtShell_QGroupBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16258,7 +16258,7 @@ void PythonQtShell_QGroupBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16280,7 +16280,7 @@ void PythonQtShell_QGroupBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16302,7 +16302,7 @@ void PythonQtShell_QGroupBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16324,7 +16324,7 @@ void PythonQtShell_QGroupBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16346,7 +16346,7 @@ int PythonQtShell_QGroupBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16379,7 +16379,7 @@ void PythonQtShell_QGroupBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16401,7 +16401,7 @@ void PythonQtShell_QGroupBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16423,7 +16423,7 @@ void PythonQtShell_QGroupBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16445,7 +16445,7 @@ void PythonQtShell_QGroupBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16467,7 +16467,7 @@ void PythonQtShell_QGroupBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16489,7 +16489,7 @@ bool PythonQtShell_QGroupBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16522,7 +16522,7 @@ bool PythonQtShell_QGroupBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16555,7 +16555,7 @@ void PythonQtShell_QGroupBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16577,7 +16577,7 @@ bool PythonQtShell_QGroupBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16610,7 +16610,7 @@ void PythonQtShell_QGroupBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16632,7 +16632,7 @@ bool PythonQtShell_QGroupBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16665,7 +16665,7 @@ int PythonQtShell_QGroupBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16698,7 +16698,7 @@ void PythonQtShell_QGroupBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16720,7 +16720,7 @@ void PythonQtShell_QGroupBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16742,7 +16742,7 @@ void PythonQtShell_QGroupBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16764,7 +16764,7 @@ QVariant PythonQtShell_QGroupBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16797,7 +16797,7 @@ void PythonQtShell_QGroupBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16819,7 +16819,7 @@ void PythonQtShell_QGroupBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16841,7 +16841,7 @@ void PythonQtShell_QGroupBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16863,7 +16863,7 @@ int PythonQtShell_QGroupBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16896,7 +16896,7 @@ QSize PythonQtShell_QGroupBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16929,7 +16929,7 @@ void PythonQtShell_QGroupBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16951,7 +16951,7 @@ void PythonQtShell_QGroupBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16973,7 +16973,7 @@ void PythonQtShell_QGroupBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16995,7 +16995,7 @@ void PythonQtShell_QGroupBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17017,7 +17017,7 @@ void PythonQtShell_QGroupBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17039,7 +17039,7 @@ bool PythonQtShell_QGroupBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17072,7 +17072,7 @@ QPaintEngine* PythonQtShell_QGroupBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17105,7 +17105,7 @@ void PythonQtShell_QGroupBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17127,7 +17127,7 @@ QPaintDevice* PythonQtShell_QGroupBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17160,7 +17160,7 @@ void PythonQtShell_QGroupBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17182,7 +17182,7 @@ void PythonQtShell_QGroupBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -17204,7 +17204,7 @@ QPainter* PythonQtShell_QGroupBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17237,7 +17237,7 @@ void PythonQtShell_QGroupBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17259,7 +17259,7 @@ QSize PythonQtShell_QGroupBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17292,7 +17292,7 @@ void PythonQtShell_QGroupBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17314,7 +17314,7 @@ void PythonQtShell_QGroupBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17336,7 +17336,7 @@ void PythonQtShell_QGroupBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17692,7 +17692,7 @@ void PythonQtShell_QHBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -17714,7 +17714,7 @@ void PythonQtShell_QHBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17736,7 +17736,7 @@ QSizePolicy::ControlTypes PythonQtShell_QHBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -17769,7 +17769,7 @@ int PythonQtShell_QHBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17802,7 +17802,7 @@ void PythonQtShell_QHBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17824,7 +17824,7 @@ bool PythonQtShell_QHBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17857,7 +17857,7 @@ bool PythonQtShell_QHBoxLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17890,7 +17890,7 @@ Qt::Orientations PythonQtShell_QHBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -17923,7 +17923,7 @@ QRect PythonQtShell_QHBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -17956,7 +17956,7 @@ bool PythonQtShell_QHBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17989,7 +17989,7 @@ int PythonQtShell_QHBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18022,7 +18022,7 @@ int PythonQtShell_QHBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -18055,7 +18055,7 @@ void PythonQtShell_QHBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18077,7 +18077,7 @@ bool PythonQtShell_QHBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18110,7 +18110,7 @@ QLayoutItem* PythonQtShell_QHBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -18143,7 +18143,7 @@ QLayout* PythonQtShell_QHBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -18176,7 +18176,7 @@ QSize PythonQtShell_QHBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18209,7 +18209,7 @@ int PythonQtShell_QHBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18242,7 +18242,7 @@ QSize PythonQtShell_QHBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18275,7 +18275,7 @@ void PythonQtShell_QHBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -18297,7 +18297,7 @@ QSize PythonQtShell_QHBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18330,7 +18330,7 @@ QSpacerItem* PythonQtShell_QHBoxLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -18363,7 +18363,7 @@ QLayoutItem* PythonQtShell_QHBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -18396,7 +18396,7 @@ void PythonQtShell_QHBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18418,7 +18418,7 @@ QWidget* PythonQtShell_QHBoxLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -18478,7 +18478,7 @@ void PythonQtShell_QHeaderView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18500,7 +18500,7 @@ void PythonQtShell_QHeaderView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18522,7 +18522,7 @@ void PythonQtShell_QHeaderView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18544,7 +18544,7 @@ void PythonQtShell_QHeaderView::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -18566,7 +18566,7 @@ void PythonQtShell_QHeaderView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18588,7 +18588,7 @@ void PythonQtShell_QHeaderView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -18610,7 +18610,7 @@ void PythonQtShell_QHeaderView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18632,7 +18632,7 @@ void PythonQtShell_QHeaderView::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -18654,7 +18654,7 @@ void PythonQtShell_QHeaderView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18676,7 +18676,7 @@ void PythonQtShell_QHeaderView::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -18698,7 +18698,7 @@ int PythonQtShell_QHeaderView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18731,7 +18731,7 @@ void PythonQtShell_QHeaderView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18753,7 +18753,7 @@ void PythonQtShell_QHeaderView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -18775,7 +18775,7 @@ void PythonQtShell_QHeaderView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -18797,7 +18797,7 @@ void PythonQtShell_QHeaderView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -18819,7 +18819,7 @@ void PythonQtShell_QHeaderView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -18841,7 +18841,7 @@ bool PythonQtShell_QHeaderView::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -18874,7 +18874,7 @@ void PythonQtShell_QHeaderView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -18896,7 +18896,7 @@ void PythonQtShell_QHeaderView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18918,7 +18918,7 @@ bool PythonQtShell_QHeaderView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -18951,7 +18951,7 @@ bool PythonQtShell_QHeaderView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -18984,7 +18984,7 @@ void PythonQtShell_QHeaderView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19006,7 +19006,7 @@ bool PythonQtShell_QHeaderView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19039,7 +19039,7 @@ void PythonQtShell_QHeaderView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19061,7 +19061,7 @@ bool PythonQtShell_QHeaderView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19094,7 +19094,7 @@ int PythonQtShell_QHeaderView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19127,7 +19127,7 @@ void PythonQtShell_QHeaderView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19149,7 +19149,7 @@ int PythonQtShell_QHeaderView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19182,7 +19182,7 @@ void PythonQtShell_QHeaderView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19204,7 +19204,7 @@ void PythonQtShell_QHeaderView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19226,7 +19226,7 @@ QModelIndex PythonQtShell_QHeaderView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -19259,7 +19259,7 @@ void PythonQtShell_QHeaderView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19281,7 +19281,7 @@ void PythonQtShell_QHeaderView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19303,7 +19303,7 @@ QVariant PythonQtShell_QHeaderView::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19336,7 +19336,7 @@ bool PythonQtShell_QHeaderView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -19369,7 +19369,7 @@ void PythonQtShell_QHeaderView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19391,7 +19391,7 @@ void PythonQtShell_QHeaderView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19413,7 +19413,7 @@ void PythonQtShell_QHeaderView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -19435,7 +19435,7 @@ void PythonQtShell_QHeaderView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19457,7 +19457,7 @@ int PythonQtShell_QHeaderView::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19490,7 +19490,7 @@ QSize PythonQtShell_QHeaderView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19523,7 +19523,7 @@ void PythonQtShell_QHeaderView::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19545,7 +19545,7 @@ void PythonQtShell_QHeaderView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19567,7 +19567,7 @@ void PythonQtShell_QHeaderView::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19589,7 +19589,7 @@ void PythonQtShell_QHeaderView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19611,7 +19611,7 @@ QModelIndex PythonQtShell_QHeaderView::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -19644,7 +19644,7 @@ void PythonQtShell_QHeaderView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19666,7 +19666,7 @@ bool PythonQtShell_QHeaderView::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19699,7 +19699,7 @@ QPaintEngine* PythonQtShell_QHeaderView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19732,7 +19732,7 @@ void PythonQtShell_QHeaderView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19754,7 +19754,7 @@ void PythonQtShell_QHeaderView::paintSection(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintSection"); + static PyObject* name = PyUnicode_FromString("paintSection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int"}; @@ -19776,7 +19776,7 @@ QPaintDevice* PythonQtShell_QHeaderView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19809,7 +19809,7 @@ void PythonQtShell_QHeaderView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19831,7 +19831,7 @@ void PythonQtShell_QHeaderView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19853,7 +19853,7 @@ void PythonQtShell_QHeaderView::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -19875,7 +19875,7 @@ void PythonQtShell_QHeaderView::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -19897,7 +19897,7 @@ void PythonQtShell_QHeaderView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -19919,7 +19919,7 @@ void PythonQtShell_QHeaderView::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -19941,7 +19941,7 @@ QSize PythonQtShell_QHeaderView::sectionSizeFromContents(int logicalIndex0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sectionSizeFromContents"); + static PyObject* name = PyUnicode_FromString("sectionSizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -19974,7 +19974,7 @@ void PythonQtShell_QHeaderView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19996,7 +19996,7 @@ QList PythonQtShell_QHeaderView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -20029,7 +20029,7 @@ void PythonQtShell_QHeaderView::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -20051,7 +20051,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QHeaderView::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -20084,7 +20084,7 @@ void PythonQtShell_QHeaderView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -20106,7 +20106,7 @@ void PythonQtShell_QHeaderView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -20128,7 +20128,7 @@ void PythonQtShell_QHeaderView::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -20150,7 +20150,7 @@ void PythonQtShell_QHeaderView::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -20172,7 +20172,7 @@ void PythonQtShell_QHeaderView::setVisible(bool v0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -20194,7 +20194,7 @@ void PythonQtShell_QHeaderView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -20216,7 +20216,7 @@ QPainter* PythonQtShell_QHeaderView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -20249,7 +20249,7 @@ void PythonQtShell_QHeaderView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -20271,7 +20271,7 @@ QSize PythonQtShell_QHeaderView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -20304,7 +20304,7 @@ int PythonQtShell_QHeaderView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20337,7 +20337,7 @@ int PythonQtShell_QHeaderView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20370,7 +20370,7 @@ void PythonQtShell_QHeaderView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -20392,7 +20392,7 @@ void PythonQtShell_QHeaderView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -20414,7 +20414,7 @@ void PythonQtShell_QHeaderView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -20436,7 +20436,7 @@ void PythonQtShell_QHeaderView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20458,7 +20458,7 @@ void PythonQtShell_QHeaderView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20480,7 +20480,7 @@ void PythonQtShell_QHeaderView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20502,7 +20502,7 @@ int PythonQtShell_QHeaderView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20535,7 +20535,7 @@ void PythonQtShell_QHeaderView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -20557,7 +20557,7 @@ void PythonQtShell_QHeaderView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -20579,7 +20579,7 @@ QStyleOptionViewItem PythonQtShell_QHeaderView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -20612,7 +20612,7 @@ bool PythonQtShell_QHeaderView::viewportEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20645,7 +20645,7 @@ QSize PythonQtShell_QHeaderView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -20678,7 +20678,7 @@ QRect PythonQtShell_QHeaderView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -20711,7 +20711,7 @@ QRegion PythonQtShell_QHeaderView::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -20744,7 +20744,7 @@ void PythonQtShell_QHeaderView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp index 33b35e45c..e400f318a 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp @@ -155,7 +155,7 @@ QSize PythonQtShell_QIconEngine::actualSize(const QSize& size0, QIcon::Mode m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actualSize"); + static PyObject* name = PyUnicode_FromString("actualSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -188,7 +188,7 @@ void PythonQtShell_QIconEngine::addFile(const QString& fileName0, const QSize& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addFile"); + static PyObject* name = PyUnicode_FromString("addFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -210,7 +210,7 @@ void PythonQtShell_QIconEngine::addPixmap(const QPixmap& pixmap0, QIcon::Mode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addPixmap"); + static PyObject* name = PyUnicode_FromString("addPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPixmap&" , "QIcon::Mode" , "QIcon::State"}; @@ -232,7 +232,7 @@ QList PythonQtShell_QIconEngine::availableSizes(QIcon::Mode mode0, QIc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableSizes"); + static PyObject* name = PyUnicode_FromString("availableSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QIcon::Mode" , "QIcon::State"}; @@ -265,7 +265,7 @@ QIconEngine* PythonQtShell_QIconEngine::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIconEngine*"}; @@ -298,7 +298,7 @@ QString PythonQtShell_QIconEngine::iconName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("iconName"); + static PyObject* name = PyUnicode_FromString("iconName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -331,7 +331,7 @@ QString PythonQtShell_QIconEngine::key() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("key"); + static PyObject* name = PyUnicode_FromString("key"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -364,7 +364,7 @@ void PythonQtShell_QIconEngine::paint(QPainter* painter0, const QRect& rect1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "QIcon::Mode" , "QIcon::State"}; @@ -386,7 +386,7 @@ QPixmap PythonQtShell_QIconEngine::pixmap(const QSize& size0, QIcon::Mode mod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixmap"); + static PyObject* name = PyUnicode_FromString("pixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -419,7 +419,7 @@ bool PythonQtShell_QIconEngine::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -452,7 +452,7 @@ bool PythonQtShell_QIconEngine::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -564,7 +564,7 @@ bool PythonQtShell_QImageIOHandler::canRead() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canRead"); + static PyObject* name = PyUnicode_FromString("canRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -597,7 +597,7 @@ int PythonQtShell_QImageIOHandler::currentImageNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentImageNumber"); + static PyObject* name = PyUnicode_FromString("currentImageNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -630,7 +630,7 @@ QRect PythonQtShell_QImageIOHandler::currentImageRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentImageRect"); + static PyObject* name = PyUnicode_FromString("currentImageRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -663,7 +663,7 @@ int PythonQtShell_QImageIOHandler::imageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageCount"); + static PyObject* name = PyUnicode_FromString("imageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -696,7 +696,7 @@ bool PythonQtShell_QImageIOHandler::jumpToImage(int imageNumber0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("jumpToImage"); + static PyObject* name = PyUnicode_FromString("jumpToImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -729,7 +729,7 @@ bool PythonQtShell_QImageIOHandler::jumpToNextImage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("jumpToNextImage"); + static PyObject* name = PyUnicode_FromString("jumpToNextImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -762,7 +762,7 @@ int PythonQtShell_QImageIOHandler::loopCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loopCount"); + static PyObject* name = PyUnicode_FromString("loopCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -795,7 +795,7 @@ int PythonQtShell_QImageIOHandler::nextImageDelay() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextImageDelay"); + static PyObject* name = PyUnicode_FromString("nextImageDelay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -828,7 +828,7 @@ QVariant PythonQtShell_QImageIOHandler::option(QImageIOHandler::ImageOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("option"); + static PyObject* name = PyUnicode_FromString("option"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QImageIOHandler::ImageOption"}; @@ -861,7 +861,7 @@ bool PythonQtShell_QImageIOHandler::read(QImage* image0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImage*"}; @@ -894,7 +894,7 @@ void PythonQtShell_QImageIOHandler::setOption(QImageIOHandler::ImageOption opti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOption"); + static PyObject* name = PyUnicode_FromString("setOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QImageIOHandler::ImageOption" , "const QVariant&"}; @@ -916,7 +916,7 @@ bool PythonQtShell_QImageIOHandler::supportsOption(QImageIOHandler::ImageOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsOption"); + static PyObject* name = PyUnicode_FromString("supportsOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImageIOHandler::ImageOption"}; @@ -949,7 +949,7 @@ bool PythonQtShell_QImageIOHandler::write(const QImage& image0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QImage&"}; @@ -1077,7 +1077,7 @@ QImageIOPlugin::Capabilities PythonQtShell_QImageIOPlugin::capabilities(QIODevi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("capabilities"); + static PyObject* name = PyUnicode_FromString("capabilities"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOPlugin::Capabilities" , "QIODevice*" , "const QByteArray&"}; @@ -1110,7 +1110,7 @@ void PythonQtShell_QImageIOPlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1132,7 +1132,7 @@ QImageIOHandler* PythonQtShell_QImageIOPlugin::create(QIODevice* device0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOHandler*" , "QIODevice*" , "const QByteArray&"}; @@ -1165,7 +1165,7 @@ void PythonQtShell_QImageIOPlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1187,7 +1187,7 @@ bool PythonQtShell_QImageIOPlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1220,7 +1220,7 @@ bool PythonQtShell_QImageIOPlugin::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1253,7 +1253,7 @@ void PythonQtShell_QImageIOPlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1736,7 +1736,7 @@ void PythonQtShell_QInputDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1758,7 +1758,7 @@ void PythonQtShell_QInputDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1780,7 +1780,7 @@ void PythonQtShell_QInputDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1802,7 +1802,7 @@ void PythonQtShell_QInputDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1824,7 +1824,7 @@ void PythonQtShell_QInputDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1846,7 +1846,7 @@ void PythonQtShell_QInputDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1868,7 +1868,7 @@ void PythonQtShell_QInputDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1890,7 +1890,7 @@ int PythonQtShell_QInputDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1923,7 +1923,7 @@ void PythonQtShell_QInputDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1945,7 +1945,7 @@ void PythonQtShell_QInputDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1967,7 +1967,7 @@ void PythonQtShell_QInputDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1989,7 +1989,7 @@ void PythonQtShell_QInputDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2011,7 +2011,7 @@ void PythonQtShell_QInputDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2033,7 +2033,7 @@ void PythonQtShell_QInputDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2055,7 +2055,7 @@ bool PythonQtShell_QInputDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2088,7 +2088,7 @@ bool PythonQtShell_QInputDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2121,7 +2121,7 @@ int PythonQtShell_QInputDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2154,7 +2154,7 @@ void PythonQtShell_QInputDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2176,7 +2176,7 @@ bool PythonQtShell_QInputDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2209,7 +2209,7 @@ void PythonQtShell_QInputDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2231,7 +2231,7 @@ bool PythonQtShell_QInputDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2264,7 +2264,7 @@ int PythonQtShell_QInputDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2297,7 +2297,7 @@ void PythonQtShell_QInputDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2319,7 +2319,7 @@ void PythonQtShell_QInputDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2341,7 +2341,7 @@ void PythonQtShell_QInputDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2363,7 +2363,7 @@ QVariant PythonQtShell_QInputDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2396,7 +2396,7 @@ void PythonQtShell_QInputDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2418,7 +2418,7 @@ void PythonQtShell_QInputDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2440,7 +2440,7 @@ void PythonQtShell_QInputDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2462,7 +2462,7 @@ int PythonQtShell_QInputDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2495,7 +2495,7 @@ QSize PythonQtShell_QInputDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2528,7 +2528,7 @@ void PythonQtShell_QInputDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2550,7 +2550,7 @@ void PythonQtShell_QInputDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2572,7 +2572,7 @@ void PythonQtShell_QInputDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2594,7 +2594,7 @@ void PythonQtShell_QInputDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2616,7 +2616,7 @@ void PythonQtShell_QInputDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2638,7 +2638,7 @@ bool PythonQtShell_QInputDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2671,7 +2671,7 @@ QPaintEngine* PythonQtShell_QInputDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2704,7 +2704,7 @@ void PythonQtShell_QInputDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2726,7 +2726,7 @@ QPaintDevice* PythonQtShell_QInputDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2759,7 +2759,7 @@ void PythonQtShell_QInputDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2781,7 +2781,7 @@ void PythonQtShell_QInputDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2803,7 +2803,7 @@ void PythonQtShell_QInputDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2825,7 +2825,7 @@ QPainter* PythonQtShell_QInputDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2858,7 +2858,7 @@ void PythonQtShell_QInputDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2880,7 +2880,7 @@ QSize PythonQtShell_QInputDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2913,7 +2913,7 @@ void PythonQtShell_QInputDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2935,7 +2935,7 @@ void PythonQtShell_QInputDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2957,7 +2957,7 @@ void PythonQtShell_QInputDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3418,7 +3418,7 @@ void PythonQtShell_QIntValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3440,7 +3440,7 @@ void PythonQtShell_QIntValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3462,7 +3462,7 @@ bool PythonQtShell_QIntValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3495,7 +3495,7 @@ bool PythonQtShell_QIntValidator::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3528,7 +3528,7 @@ void PythonQtShell_QIntValidator::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3550,7 +3550,7 @@ void PythonQtShell_QIntValidator::setRange(int bottom0, int top1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3572,7 +3572,7 @@ void PythonQtShell_QIntValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3594,7 +3594,7 @@ QValidator::State PythonQtShell_QIntValidator::validate(QString& arg__1, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3679,7 +3679,7 @@ void PythonQtShell_QItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3701,7 +3701,7 @@ QWidget* PythonQtShell_QItemDelegate::createEditor(QWidget* parent0, const QSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3734,7 +3734,7 @@ void PythonQtShell_QItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3756,7 +3756,7 @@ void PythonQtShell_QItemDelegate::destroyEditor(QWidget* editor0, const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3778,7 +3778,7 @@ void PythonQtShell_QItemDelegate::drawCheck(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawCheck"); + static PyObject* name = PyUnicode_FromString("drawCheck"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "Qt::CheckState"}; @@ -3800,7 +3800,7 @@ void PythonQtShell_QItemDelegate::drawDecoration(QPainter* painter0, const QSty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawDecoration"); + static PyObject* name = PyUnicode_FromString("drawDecoration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QPixmap&"}; @@ -3822,7 +3822,7 @@ void PythonQtShell_QItemDelegate::drawDisplay(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawDisplay"); + static PyObject* name = PyUnicode_FromString("drawDisplay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QString&"}; @@ -3844,7 +3844,7 @@ void PythonQtShell_QItemDelegate::drawFocus(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawFocus"); + static PyObject* name = PyUnicode_FromString("drawFocus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&"}; @@ -3866,7 +3866,7 @@ bool PythonQtShell_QItemDelegate::editorEvent(QEvent* event0, QAbstractItemMod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3899,7 +3899,7 @@ bool PythonQtShell_QItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3932,7 +3932,7 @@ bool PythonQtShell_QItemDelegate::eventFilter(QObject* object0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3965,7 +3965,7 @@ bool PythonQtShell_QItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3998,7 +3998,7 @@ void PythonQtShell_QItemDelegate::paint(QPainter* painter0, const QStyleOptionV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4020,7 +4020,7 @@ QVector PythonQtShell_QItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -4053,7 +4053,7 @@ void PythonQtShell_QItemDelegate::setEditorData(QWidget* editor0, const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -4075,7 +4075,7 @@ void PythonQtShell_QItemDelegate::setModelData(QWidget* editor0, QAbstractItemM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -4097,7 +4097,7 @@ QSize PythonQtShell_QItemDelegate::sizeHint(const QStyleOptionViewItem& option if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4130,7 +4130,7 @@ void PythonQtShell_QItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4152,7 +4152,7 @@ void PythonQtShell_QItemDelegate::updateEditorGeometry(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4272,7 +4272,7 @@ QWidget* PythonQtShell_QItemEditorCreatorBase::createWidget(QWidget* parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -4305,7 +4305,7 @@ QByteArray PythonQtShell_QItemEditorCreatorBase::valuePropertyName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -4358,7 +4358,7 @@ QWidget* PythonQtShell_QItemEditorFactory::createEditor(int userType0, QWidget if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "int" , "QWidget*"}; @@ -4391,7 +4391,7 @@ QByteArray PythonQtShell_QItemEditorFactory::valuePropertyName(int userType0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "int"}; @@ -4739,7 +4739,7 @@ void PythonQtShell_QItemSelectionModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4761,7 +4761,7 @@ void PythonQtShell_QItemSelectionModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4783,7 +4783,7 @@ void PythonQtShell_QItemSelectionModel::clearCurrentIndex() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clearCurrentIndex"); + static PyObject* name = PyUnicode_FromString("clearCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4805,7 +4805,7 @@ void PythonQtShell_QItemSelectionModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4827,7 +4827,7 @@ bool PythonQtShell_QItemSelectionModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4860,7 +4860,7 @@ bool PythonQtShell_QItemSelectionModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4893,7 +4893,7 @@ void PythonQtShell_QItemSelectionModel::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4915,7 +4915,7 @@ void PythonQtShell_QItemSelectionModel::select(const QItemSelection& selection0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "QItemSelectionModel::SelectionFlags"}; @@ -4937,7 +4937,7 @@ void PythonQtShell_QItemSelectionModel::select(const QModelIndex& index0, QItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4959,7 +4959,7 @@ void PythonQtShell_QItemSelectionModel::setCurrentIndex(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4981,7 +4981,7 @@ void PythonQtShell_QItemSelectionModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5299,7 +5299,7 @@ void PythonQtShell_QKeyEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5321,7 +5321,7 @@ void PythonQtShell_QKeyEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5343,7 +5343,7 @@ bool PythonQtShell_QKeyEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5376,7 +5376,7 @@ bool PythonQtShell_QKeyEventTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5409,7 +5409,7 @@ bool PythonQtShell_QKeyEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5442,7 +5442,7 @@ void PythonQtShell_QKeyEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5464,7 +5464,7 @@ void PythonQtShell_QKeyEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5533,7 +5533,7 @@ void PythonQtShell_QKeySequenceEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5555,7 +5555,7 @@ void PythonQtShell_QKeySequenceEdit::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5577,7 +5577,7 @@ void PythonQtShell_QKeySequenceEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5599,7 +5599,7 @@ void PythonQtShell_QKeySequenceEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5621,7 +5621,7 @@ void PythonQtShell_QKeySequenceEdit::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5643,7 +5643,7 @@ void PythonQtShell_QKeySequenceEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5665,7 +5665,7 @@ int PythonQtShell_QKeySequenceEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5698,7 +5698,7 @@ void PythonQtShell_QKeySequenceEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5720,7 +5720,7 @@ void PythonQtShell_QKeySequenceEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5742,7 +5742,7 @@ void PythonQtShell_QKeySequenceEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5764,7 +5764,7 @@ void PythonQtShell_QKeySequenceEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5786,7 +5786,7 @@ void PythonQtShell_QKeySequenceEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5808,7 +5808,7 @@ bool PythonQtShell_QKeySequenceEdit::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5841,7 +5841,7 @@ bool PythonQtShell_QKeySequenceEdit::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5874,7 +5874,7 @@ void PythonQtShell_QKeySequenceEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5896,7 +5896,7 @@ bool PythonQtShell_QKeySequenceEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5929,7 +5929,7 @@ void PythonQtShell_QKeySequenceEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5951,7 +5951,7 @@ bool PythonQtShell_QKeySequenceEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5984,7 +5984,7 @@ int PythonQtShell_QKeySequenceEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QKeySequenceEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6039,7 +6039,7 @@ void PythonQtShell_QKeySequenceEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6061,7 +6061,7 @@ void PythonQtShell_QKeySequenceEdit::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6083,7 +6083,7 @@ QVariant PythonQtShell_QKeySequenceEdit::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6116,7 +6116,7 @@ void PythonQtShell_QKeySequenceEdit::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6138,7 +6138,7 @@ void PythonQtShell_QKeySequenceEdit::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6160,7 +6160,7 @@ void PythonQtShell_QKeySequenceEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6182,7 +6182,7 @@ int PythonQtShell_QKeySequenceEdit::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6215,7 +6215,7 @@ QSize PythonQtShell_QKeySequenceEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6248,7 +6248,7 @@ void PythonQtShell_QKeySequenceEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6270,7 +6270,7 @@ void PythonQtShell_QKeySequenceEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6292,7 +6292,7 @@ void PythonQtShell_QKeySequenceEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6314,7 +6314,7 @@ void PythonQtShell_QKeySequenceEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6336,7 +6336,7 @@ void PythonQtShell_QKeySequenceEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6358,7 +6358,7 @@ bool PythonQtShell_QKeySequenceEdit::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6391,7 +6391,7 @@ QPaintEngine* PythonQtShell_QKeySequenceEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6424,7 +6424,7 @@ void PythonQtShell_QKeySequenceEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6446,7 +6446,7 @@ QPaintDevice* PythonQtShell_QKeySequenceEdit::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6479,7 +6479,7 @@ void PythonQtShell_QKeySequenceEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6501,7 +6501,7 @@ void PythonQtShell_QKeySequenceEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6523,7 +6523,7 @@ QPainter* PythonQtShell_QKeySequenceEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6556,7 +6556,7 @@ void PythonQtShell_QKeySequenceEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6578,7 +6578,7 @@ QSize PythonQtShell_QKeySequenceEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6611,7 +6611,7 @@ void PythonQtShell_QKeySequenceEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6633,7 +6633,7 @@ void PythonQtShell_QKeySequenceEdit::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6655,7 +6655,7 @@ void PythonQtShell_QKeySequenceEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6709,7 +6709,7 @@ void PythonQtShell_QLCDNumber::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6731,7 +6731,7 @@ void PythonQtShell_QLCDNumber::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6753,7 +6753,7 @@ void PythonQtShell_QLCDNumber::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6775,7 +6775,7 @@ void PythonQtShell_QLCDNumber::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6797,7 +6797,7 @@ void PythonQtShell_QLCDNumber::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6819,7 +6819,7 @@ void PythonQtShell_QLCDNumber::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6841,7 +6841,7 @@ int PythonQtShell_QLCDNumber::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6874,7 +6874,7 @@ void PythonQtShell_QLCDNumber::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6896,7 +6896,7 @@ void PythonQtShell_QLCDNumber::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6918,7 +6918,7 @@ void PythonQtShell_QLCDNumber::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6940,7 +6940,7 @@ void PythonQtShell_QLCDNumber::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6962,7 +6962,7 @@ void PythonQtShell_QLCDNumber::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6984,7 +6984,7 @@ bool PythonQtShell_QLCDNumber::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7017,7 +7017,7 @@ bool PythonQtShell_QLCDNumber::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7050,7 +7050,7 @@ void PythonQtShell_QLCDNumber::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7072,7 +7072,7 @@ bool PythonQtShell_QLCDNumber::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7105,7 +7105,7 @@ void PythonQtShell_QLCDNumber::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7127,7 +7127,7 @@ bool PythonQtShell_QLCDNumber::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7160,7 +7160,7 @@ int PythonQtShell_QLCDNumber::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7193,7 +7193,7 @@ void PythonQtShell_QLCDNumber::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7215,7 +7215,7 @@ void PythonQtShell_QLCDNumber::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7237,7 +7237,7 @@ void PythonQtShell_QLCDNumber::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7259,7 +7259,7 @@ QVariant PythonQtShell_QLCDNumber::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7292,7 +7292,7 @@ void PythonQtShell_QLCDNumber::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7314,7 +7314,7 @@ void PythonQtShell_QLCDNumber::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7336,7 +7336,7 @@ void PythonQtShell_QLCDNumber::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7358,7 +7358,7 @@ int PythonQtShell_QLCDNumber::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7391,7 +7391,7 @@ QSize PythonQtShell_QLCDNumber::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7424,7 +7424,7 @@ void PythonQtShell_QLCDNumber::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7446,7 +7446,7 @@ void PythonQtShell_QLCDNumber::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7468,7 +7468,7 @@ void PythonQtShell_QLCDNumber::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7490,7 +7490,7 @@ void PythonQtShell_QLCDNumber::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7512,7 +7512,7 @@ void PythonQtShell_QLCDNumber::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7534,7 +7534,7 @@ bool PythonQtShell_QLCDNumber::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7567,7 +7567,7 @@ QPaintEngine* PythonQtShell_QLCDNumber::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7600,7 +7600,7 @@ void PythonQtShell_QLCDNumber::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7622,7 +7622,7 @@ QPaintDevice* PythonQtShell_QLCDNumber::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7655,7 +7655,7 @@ void PythonQtShell_QLCDNumber::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7677,7 +7677,7 @@ void PythonQtShell_QLCDNumber::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7699,7 +7699,7 @@ QPainter* PythonQtShell_QLCDNumber::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7732,7 +7732,7 @@ void PythonQtShell_QLCDNumber::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7754,7 +7754,7 @@ QSize PythonQtShell_QLCDNumber::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7787,7 +7787,7 @@ void PythonQtShell_QLCDNumber::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7809,7 +7809,7 @@ void PythonQtShell_QLCDNumber::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7831,7 +7831,7 @@ void PythonQtShell_QLCDNumber::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7935,7 +7935,7 @@ void PythonQtShell_QLabel::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7957,7 +7957,7 @@ void PythonQtShell_QLabel::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7979,7 +7979,7 @@ void PythonQtShell_QLabel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8001,7 +8001,7 @@ void PythonQtShell_QLabel::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8023,7 +8023,7 @@ void PythonQtShell_QLabel::contextMenuEvent(QContextMenuEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8045,7 +8045,7 @@ void PythonQtShell_QLabel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8067,7 +8067,7 @@ int PythonQtShell_QLabel::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8100,7 +8100,7 @@ void PythonQtShell_QLabel::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8122,7 +8122,7 @@ void PythonQtShell_QLabel::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8144,7 +8144,7 @@ void PythonQtShell_QLabel::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8166,7 +8166,7 @@ void PythonQtShell_QLabel::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8188,7 +8188,7 @@ void PythonQtShell_QLabel::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8210,7 +8210,7 @@ bool PythonQtShell_QLabel::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8243,7 +8243,7 @@ bool PythonQtShell_QLabel::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8276,7 +8276,7 @@ void PythonQtShell_QLabel::focusInEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8298,7 +8298,7 @@ bool PythonQtShell_QLabel::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8331,7 +8331,7 @@ void PythonQtShell_QLabel::focusOutEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8353,7 +8353,7 @@ bool PythonQtShell_QLabel::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8386,7 +8386,7 @@ int PythonQtShell_QLabel::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8419,7 +8419,7 @@ void PythonQtShell_QLabel::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8441,7 +8441,7 @@ void PythonQtShell_QLabel::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8463,7 +8463,7 @@ void PythonQtShell_QLabel::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8485,7 +8485,7 @@ QVariant PythonQtShell_QLabel::inputMethodQuery(Qt::InputMethodQuery arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8518,7 +8518,7 @@ void PythonQtShell_QLabel::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8540,7 +8540,7 @@ void PythonQtShell_QLabel::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8562,7 +8562,7 @@ void PythonQtShell_QLabel::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8584,7 +8584,7 @@ int PythonQtShell_QLabel::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8617,7 +8617,7 @@ QSize PythonQtShell_QLabel::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8650,7 +8650,7 @@ void PythonQtShell_QLabel::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8672,7 +8672,7 @@ void PythonQtShell_QLabel::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8694,7 +8694,7 @@ void PythonQtShell_QLabel::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8716,7 +8716,7 @@ void PythonQtShell_QLabel::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8738,7 +8738,7 @@ void PythonQtShell_QLabel::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8760,7 +8760,7 @@ bool PythonQtShell_QLabel::nativeEvent(const QByteArray& eventType0, void* me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8793,7 +8793,7 @@ QPaintEngine* PythonQtShell_QLabel::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8826,7 +8826,7 @@ void PythonQtShell_QLabel::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8848,7 +8848,7 @@ QPaintDevice* PythonQtShell_QLabel::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8881,7 +8881,7 @@ void PythonQtShell_QLabel::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8903,7 +8903,7 @@ void PythonQtShell_QLabel::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8925,7 +8925,7 @@ QPainter* PythonQtShell_QLabel::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8958,7 +8958,7 @@ void PythonQtShell_QLabel::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8980,7 +8980,7 @@ QSize PythonQtShell_QLabel::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9013,7 +9013,7 @@ void PythonQtShell_QLabel::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9035,7 +9035,7 @@ void PythonQtShell_QLabel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9057,7 +9057,7 @@ void PythonQtShell_QLabel::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9241,7 +9241,7 @@ void PythonQtShell_QLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -9263,7 +9263,7 @@ void PythonQtShell_QLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9285,7 +9285,7 @@ QSizePolicy::ControlTypes PythonQtShell_QLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9318,7 +9318,7 @@ int PythonQtShell_QLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9351,7 +9351,7 @@ void PythonQtShell_QLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9373,7 +9373,7 @@ bool PythonQtShell_QLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9406,7 +9406,7 @@ bool PythonQtShell_QLayout::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9439,7 +9439,7 @@ Qt::Orientations PythonQtShell_QLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -9472,7 +9472,7 @@ QRect PythonQtShell_QLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -9505,7 +9505,7 @@ bool PythonQtShell_QLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9538,7 +9538,7 @@ int PythonQtShell_QLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9571,7 +9571,7 @@ int PythonQtShell_QLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -9604,7 +9604,7 @@ void PythonQtShell_QLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9626,7 +9626,7 @@ bool PythonQtShell_QLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9659,7 +9659,7 @@ QLayoutItem* PythonQtShell_QLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9692,7 +9692,7 @@ QLayout* PythonQtShell_QLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -9725,7 +9725,7 @@ QSize PythonQtShell_QLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9758,7 +9758,7 @@ int PythonQtShell_QLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9791,7 +9791,7 @@ QSize PythonQtShell_QLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9824,7 +9824,7 @@ void PythonQtShell_QLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -9846,7 +9846,7 @@ QSize PythonQtShell_QLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9879,7 +9879,7 @@ QSpacerItem* PythonQtShell_QLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -9912,7 +9912,7 @@ QLayoutItem* PythonQtShell_QLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9945,7 +9945,7 @@ void PythonQtShell_QLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9967,7 +9967,7 @@ QWidget* PythonQtShell_QLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -10217,7 +10217,7 @@ QSizePolicy::ControlTypes PythonQtShell_QLayoutItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10250,7 +10250,7 @@ Qt::Orientations PythonQtShell_QLayoutItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10283,7 +10283,7 @@ QRect PythonQtShell_QLayoutItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10316,7 +10316,7 @@ bool PythonQtShell_QLayoutItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10349,7 +10349,7 @@ int PythonQtShell_QLayoutItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10382,7 +10382,7 @@ void PythonQtShell_QLayoutItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10404,7 +10404,7 @@ bool PythonQtShell_QLayoutItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10437,7 +10437,7 @@ QLayout* PythonQtShell_QLayoutItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10470,7 +10470,7 @@ QSize PythonQtShell_QLayoutItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10503,7 +10503,7 @@ int PythonQtShell_QLayoutItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10536,7 +10536,7 @@ QSize PythonQtShell_QLayoutItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10569,7 +10569,7 @@ void PythonQtShell_QLayoutItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10591,7 +10591,7 @@ QSize PythonQtShell_QLayoutItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10624,7 +10624,7 @@ QSpacerItem* PythonQtShell_QLayoutItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -10657,7 +10657,7 @@ QWidget* PythonQtShell_QLayoutItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -10785,7 +10785,7 @@ void PythonQtShell_QLineEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10807,7 +10807,7 @@ void PythonQtShell_QLineEdit::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10829,7 +10829,7 @@ void PythonQtShell_QLineEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10851,7 +10851,7 @@ void PythonQtShell_QLineEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10873,7 +10873,7 @@ void PythonQtShell_QLineEdit::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10895,7 +10895,7 @@ void PythonQtShell_QLineEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10917,7 +10917,7 @@ int PythonQtShell_QLineEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10950,7 +10950,7 @@ void PythonQtShell_QLineEdit::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10972,7 +10972,7 @@ void PythonQtShell_QLineEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10994,7 +10994,7 @@ void PythonQtShell_QLineEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11016,7 +11016,7 @@ void PythonQtShell_QLineEdit::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11038,7 +11038,7 @@ void PythonQtShell_QLineEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11060,7 +11060,7 @@ bool PythonQtShell_QLineEdit::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11093,7 +11093,7 @@ bool PythonQtShell_QLineEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11126,7 +11126,7 @@ void PythonQtShell_QLineEdit::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11148,7 +11148,7 @@ bool PythonQtShell_QLineEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11181,7 +11181,7 @@ void PythonQtShell_QLineEdit::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11203,7 +11203,7 @@ bool PythonQtShell_QLineEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11236,7 +11236,7 @@ int PythonQtShell_QLineEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11269,7 +11269,7 @@ void PythonQtShell_QLineEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11291,7 +11291,7 @@ void PythonQtShell_QLineEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11313,7 +11313,7 @@ void PythonQtShell_QLineEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11335,7 +11335,7 @@ QVariant PythonQtShell_QLineEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11368,7 +11368,7 @@ void PythonQtShell_QLineEdit::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11390,7 +11390,7 @@ void PythonQtShell_QLineEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11412,7 +11412,7 @@ void PythonQtShell_QLineEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11434,7 +11434,7 @@ int PythonQtShell_QLineEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11467,7 +11467,7 @@ QSize PythonQtShell_QLineEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11500,7 +11500,7 @@ void PythonQtShell_QLineEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11522,7 +11522,7 @@ void PythonQtShell_QLineEdit::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11544,7 +11544,7 @@ void PythonQtShell_QLineEdit::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11566,7 +11566,7 @@ void PythonQtShell_QLineEdit::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11588,7 +11588,7 @@ void PythonQtShell_QLineEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11610,7 +11610,7 @@ bool PythonQtShell_QLineEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11643,7 +11643,7 @@ QPaintEngine* PythonQtShell_QLineEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11676,7 +11676,7 @@ void PythonQtShell_QLineEdit::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11698,7 +11698,7 @@ QPaintDevice* PythonQtShell_QLineEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11731,7 +11731,7 @@ void PythonQtShell_QLineEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11753,7 +11753,7 @@ void PythonQtShell_QLineEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11775,7 +11775,7 @@ QPainter* PythonQtShell_QLineEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11808,7 +11808,7 @@ void PythonQtShell_QLineEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11830,7 +11830,7 @@ QSize PythonQtShell_QLineEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11863,7 +11863,7 @@ void PythonQtShell_QLineEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11885,7 +11885,7 @@ void PythonQtShell_QLineEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11907,7 +11907,7 @@ void PythonQtShell_QLineEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp index 28424ae2a..b08ec73df 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp @@ -144,7 +144,7 @@ void PythonQtShell_QListView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -166,7 +166,7 @@ void PythonQtShell_QListView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -188,7 +188,7 @@ void PythonQtShell_QListView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -210,7 +210,7 @@ void PythonQtShell_QListView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -232,7 +232,7 @@ void PythonQtShell_QListView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -254,7 +254,7 @@ void PythonQtShell_QListView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -276,7 +276,7 @@ void PythonQtShell_QListView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -298,7 +298,7 @@ void PythonQtShell_QListView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -320,7 +320,7 @@ void PythonQtShell_QListView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -342,7 +342,7 @@ void PythonQtShell_QListView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -364,7 +364,7 @@ int PythonQtShell_QListView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -397,7 +397,7 @@ void PythonQtShell_QListView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -419,7 +419,7 @@ void PythonQtShell_QListView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -441,7 +441,7 @@ void PythonQtShell_QListView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -463,7 +463,7 @@ void PythonQtShell_QListView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -485,7 +485,7 @@ void PythonQtShell_QListView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -507,7 +507,7 @@ bool PythonQtShell_QListView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -540,7 +540,7 @@ void PythonQtShell_QListView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -562,7 +562,7 @@ void PythonQtShell_QListView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -584,7 +584,7 @@ bool PythonQtShell_QListView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -617,7 +617,7 @@ bool PythonQtShell_QListView::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -650,7 +650,7 @@ void PythonQtShell_QListView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -672,7 +672,7 @@ bool PythonQtShell_QListView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -705,7 +705,7 @@ void PythonQtShell_QListView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -727,7 +727,7 @@ bool PythonQtShell_QListView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -760,7 +760,7 @@ int PythonQtShell_QListView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -793,7 +793,7 @@ void PythonQtShell_QListView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -815,7 +815,7 @@ int PythonQtShell_QListView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -848,7 +848,7 @@ void PythonQtShell_QListView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -870,7 +870,7 @@ void PythonQtShell_QListView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -892,7 +892,7 @@ QModelIndex PythonQtShell_QListView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -925,7 +925,7 @@ void PythonQtShell_QListView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -947,7 +947,7 @@ void PythonQtShell_QListView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -969,7 +969,7 @@ QVariant PythonQtShell_QListView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1002,7 +1002,7 @@ bool PythonQtShell_QListView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1035,7 +1035,7 @@ void PythonQtShell_QListView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1057,7 +1057,7 @@ void PythonQtShell_QListView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1079,7 +1079,7 @@ void PythonQtShell_QListView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1101,7 +1101,7 @@ void PythonQtShell_QListView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1123,7 +1123,7 @@ int PythonQtShell_QListView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1156,7 +1156,7 @@ QSize PythonQtShell_QListView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1189,7 +1189,7 @@ void PythonQtShell_QListView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1211,7 +1211,7 @@ void PythonQtShell_QListView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1233,7 +1233,7 @@ void PythonQtShell_QListView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1255,7 +1255,7 @@ void PythonQtShell_QListView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1277,7 +1277,7 @@ QModelIndex PythonQtShell_QListView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -1310,7 +1310,7 @@ void PythonQtShell_QListView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1332,7 +1332,7 @@ bool PythonQtShell_QListView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1365,7 +1365,7 @@ QPaintEngine* PythonQtShell_QListView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1398,7 +1398,7 @@ void PythonQtShell_QListView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1420,7 +1420,7 @@ QPaintDevice* PythonQtShell_QListView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1453,7 +1453,7 @@ void PythonQtShell_QListView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1475,7 +1475,7 @@ void PythonQtShell_QListView::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1497,7 +1497,7 @@ void PythonQtShell_QListView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1519,7 +1519,7 @@ void PythonQtShell_QListView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1541,7 +1541,7 @@ void PythonQtShell_QListView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1563,7 +1563,7 @@ void PythonQtShell_QListView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -1585,7 +1585,7 @@ void PythonQtShell_QListView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1607,7 +1607,7 @@ QList PythonQtShell_QListView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1640,7 +1640,7 @@ void PythonQtShell_QListView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -1662,7 +1662,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QListView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -1695,7 +1695,7 @@ void PythonQtShell_QListView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -1717,7 +1717,7 @@ void PythonQtShell_QListView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1739,7 +1739,7 @@ void PythonQtShell_QListView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -1761,7 +1761,7 @@ void PythonQtShell_QListView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -1783,7 +1783,7 @@ void PythonQtShell_QListView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1805,7 +1805,7 @@ void PythonQtShell_QListView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1827,7 +1827,7 @@ QPainter* PythonQtShell_QListView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1860,7 +1860,7 @@ void PythonQtShell_QListView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1882,7 +1882,7 @@ QSize PythonQtShell_QListView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1915,7 +1915,7 @@ int PythonQtShell_QListView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1948,7 +1948,7 @@ int PythonQtShell_QListView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1981,7 +1981,7 @@ void PythonQtShell_QListView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -2003,7 +2003,7 @@ void PythonQtShell_QListView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2025,7 +2025,7 @@ void PythonQtShell_QListView::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2047,7 +2047,7 @@ void PythonQtShell_QListView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2069,7 +2069,7 @@ void PythonQtShell_QListView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2091,7 +2091,7 @@ void PythonQtShell_QListView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2113,7 +2113,7 @@ int PythonQtShell_QListView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2146,7 +2146,7 @@ void PythonQtShell_QListView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2168,7 +2168,7 @@ void PythonQtShell_QListView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2190,7 +2190,7 @@ QStyleOptionViewItem PythonQtShell_QListView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -2223,7 +2223,7 @@ bool PythonQtShell_QListView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2256,7 +2256,7 @@ QSize PythonQtShell_QListView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2289,7 +2289,7 @@ QRect PythonQtShell_QListView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -2322,7 +2322,7 @@ QRegion PythonQtShell_QListView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -2355,7 +2355,7 @@ void PythonQtShell_QListView::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2575,7 +2575,7 @@ void PythonQtShell_QListWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2597,7 +2597,7 @@ void PythonQtShell_QListWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2619,7 +2619,7 @@ void PythonQtShell_QListWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2641,7 +2641,7 @@ void PythonQtShell_QListWidget::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -2663,7 +2663,7 @@ void PythonQtShell_QListWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2685,7 +2685,7 @@ void PythonQtShell_QListWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2707,7 +2707,7 @@ void PythonQtShell_QListWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2729,7 +2729,7 @@ void PythonQtShell_QListWidget::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -2751,7 +2751,7 @@ void PythonQtShell_QListWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2773,7 +2773,7 @@ void PythonQtShell_QListWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -2795,7 +2795,7 @@ int PythonQtShell_QListWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2828,7 +2828,7 @@ void PythonQtShell_QListWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2850,7 +2850,7 @@ void PythonQtShell_QListWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2872,7 +2872,7 @@ void PythonQtShell_QListWidget::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2894,7 +2894,7 @@ void PythonQtShell_QListWidget::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2916,7 +2916,7 @@ void PythonQtShell_QListWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2938,7 +2938,7 @@ bool PythonQtShell_QListWidget::dropMimeData(int index0, const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -2971,7 +2971,7 @@ bool PythonQtShell_QListWidget::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -3004,7 +3004,7 @@ void PythonQtShell_QListWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3026,7 +3026,7 @@ void PythonQtShell_QListWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3048,7 +3048,7 @@ bool PythonQtShell_QListWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3081,7 +3081,7 @@ bool PythonQtShell_QListWidget::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3114,7 +3114,7 @@ void PythonQtShell_QListWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3136,7 +3136,7 @@ bool PythonQtShell_QListWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3169,7 +3169,7 @@ void PythonQtShell_QListWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3191,7 +3191,7 @@ bool PythonQtShell_QListWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3224,7 +3224,7 @@ int PythonQtShell_QListWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3257,7 +3257,7 @@ void PythonQtShell_QListWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3279,7 +3279,7 @@ int PythonQtShell_QListWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3312,7 +3312,7 @@ void PythonQtShell_QListWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3334,7 +3334,7 @@ void PythonQtShell_QListWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3356,7 +3356,7 @@ QModelIndex PythonQtShell_QListWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3389,7 +3389,7 @@ void PythonQtShell_QListWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3411,7 +3411,7 @@ void PythonQtShell_QListWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3433,7 +3433,7 @@ QVariant PythonQtShell_QListWidget::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3466,7 +3466,7 @@ bool PythonQtShell_QListWidget::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3499,7 +3499,7 @@ void PythonQtShell_QListWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3521,7 +3521,7 @@ void PythonQtShell_QListWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3543,7 +3543,7 @@ void PythonQtShell_QListWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3565,7 +3565,7 @@ void PythonQtShell_QListWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3587,7 +3587,7 @@ int PythonQtShell_QListWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3620,7 +3620,7 @@ QMimeData* PythonQtShell_QListWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -3653,7 +3653,7 @@ QStringList PythonQtShell_QListWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3686,7 +3686,7 @@ QSize PythonQtShell_QListWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3719,7 +3719,7 @@ void PythonQtShell_QListWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3741,7 +3741,7 @@ void PythonQtShell_QListWidget::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3763,7 +3763,7 @@ void PythonQtShell_QListWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3785,7 +3785,7 @@ void PythonQtShell_QListWidget::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3807,7 +3807,7 @@ QModelIndex PythonQtShell_QListWidget::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -3840,7 +3840,7 @@ void PythonQtShell_QListWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3862,7 +3862,7 @@ bool PythonQtShell_QListWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3895,7 +3895,7 @@ QPaintEngine* PythonQtShell_QListWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3928,7 +3928,7 @@ void PythonQtShell_QListWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3950,7 +3950,7 @@ QPaintDevice* PythonQtShell_QListWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3983,7 +3983,7 @@ void PythonQtShell_QListWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4005,7 +4005,7 @@ void PythonQtShell_QListWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4027,7 +4027,7 @@ void PythonQtShell_QListWidget::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4049,7 +4049,7 @@ void PythonQtShell_QListWidget::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4071,7 +4071,7 @@ void PythonQtShell_QListWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4093,7 +4093,7 @@ void PythonQtShell_QListWidget::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -4115,7 +4115,7 @@ void PythonQtShell_QListWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4137,7 +4137,7 @@ QList PythonQtShell_QListWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4170,7 +4170,7 @@ void PythonQtShell_QListWidget::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -4192,7 +4192,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QListWidget::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -4225,7 +4225,7 @@ void PythonQtShell_QListWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4247,7 +4247,7 @@ void PythonQtShell_QListWidget::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4269,7 +4269,7 @@ void PythonQtShell_QListWidget::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4291,7 +4291,7 @@ void PythonQtShell_QListWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4313,7 +4313,7 @@ void PythonQtShell_QListWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4335,7 +4335,7 @@ QPainter* PythonQtShell_QListWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4368,7 +4368,7 @@ void PythonQtShell_QListWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4390,7 +4390,7 @@ QSize PythonQtShell_QListWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4423,7 +4423,7 @@ int PythonQtShell_QListWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4456,7 +4456,7 @@ int PythonQtShell_QListWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4489,7 +4489,7 @@ void PythonQtShell_QListWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4511,7 +4511,7 @@ Qt::DropActions PythonQtShell_QListWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4544,7 +4544,7 @@ void PythonQtShell_QListWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4566,7 +4566,7 @@ void PythonQtShell_QListWidget::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4588,7 +4588,7 @@ void PythonQtShell_QListWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4610,7 +4610,7 @@ void PythonQtShell_QListWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4632,7 +4632,7 @@ void PythonQtShell_QListWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4654,7 +4654,7 @@ int PythonQtShell_QListWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4687,7 +4687,7 @@ void PythonQtShell_QListWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4709,7 +4709,7 @@ void PythonQtShell_QListWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4731,7 +4731,7 @@ QStyleOptionViewItem PythonQtShell_QListWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4764,7 +4764,7 @@ bool PythonQtShell_QListWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4797,7 +4797,7 @@ QSize PythonQtShell_QListWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4830,7 +4830,7 @@ QRect PythonQtShell_QListWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -4863,7 +4863,7 @@ QRegion PythonQtShell_QListWidget::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -4896,7 +4896,7 @@ void PythonQtShell_QListWidget::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5136,7 +5136,7 @@ QListWidgetItem* PythonQtShell_QListWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QListWidgetItem*"}; @@ -5169,7 +5169,7 @@ QVariant PythonQtShell_QListWidgetItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -5202,7 +5202,7 @@ void PythonQtShell_QListWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -5224,7 +5224,7 @@ void PythonQtShell_QListWidgetItem::setData(int role0, const QVariant& value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -5246,7 +5246,7 @@ void PythonQtShell_QListWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -5471,7 +5471,7 @@ void PythonQtShell_QMainWindow::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5493,7 +5493,7 @@ void PythonQtShell_QMainWindow::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5515,7 +5515,7 @@ void PythonQtShell_QMainWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5537,7 +5537,7 @@ void PythonQtShell_QMainWindow::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5559,7 +5559,7 @@ void PythonQtShell_QMainWindow::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5581,7 +5581,7 @@ QMenu* PythonQtShell_QMainWindow::createPopupMenu() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createPopupMenu"); + static PyObject* name = PyUnicode_FromString("createPopupMenu"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMenu*"}; @@ -5614,7 +5614,7 @@ void PythonQtShell_QMainWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5636,7 +5636,7 @@ int PythonQtShell_QMainWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5669,7 +5669,7 @@ void PythonQtShell_QMainWindow::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5691,7 +5691,7 @@ void PythonQtShell_QMainWindow::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5713,7 +5713,7 @@ void PythonQtShell_QMainWindow::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5735,7 +5735,7 @@ void PythonQtShell_QMainWindow::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5757,7 +5757,7 @@ void PythonQtShell_QMainWindow::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5779,7 +5779,7 @@ bool PythonQtShell_QMainWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5812,7 +5812,7 @@ bool PythonQtShell_QMainWindow::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5845,7 +5845,7 @@ void PythonQtShell_QMainWindow::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5867,7 +5867,7 @@ bool PythonQtShell_QMainWindow::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5900,7 +5900,7 @@ void PythonQtShell_QMainWindow::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5922,7 +5922,7 @@ bool PythonQtShell_QMainWindow::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5955,7 +5955,7 @@ int PythonQtShell_QMainWindow::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5988,7 +5988,7 @@ void PythonQtShell_QMainWindow::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6010,7 +6010,7 @@ void PythonQtShell_QMainWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6032,7 +6032,7 @@ void PythonQtShell_QMainWindow::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6054,7 +6054,7 @@ QVariant PythonQtShell_QMainWindow::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6087,7 +6087,7 @@ void PythonQtShell_QMainWindow::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6109,7 +6109,7 @@ void PythonQtShell_QMainWindow::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6131,7 +6131,7 @@ void PythonQtShell_QMainWindow::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6153,7 +6153,7 @@ int PythonQtShell_QMainWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6186,7 +6186,7 @@ QSize PythonQtShell_QMainWindow::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6219,7 +6219,7 @@ void PythonQtShell_QMainWindow::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6241,7 +6241,7 @@ void PythonQtShell_QMainWindow::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6263,7 +6263,7 @@ void PythonQtShell_QMainWindow::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6285,7 +6285,7 @@ void PythonQtShell_QMainWindow::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6307,7 +6307,7 @@ void PythonQtShell_QMainWindow::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6329,7 +6329,7 @@ bool PythonQtShell_QMainWindow::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6362,7 +6362,7 @@ QPaintEngine* PythonQtShell_QMainWindow::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6395,7 +6395,7 @@ void PythonQtShell_QMainWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6417,7 +6417,7 @@ QPaintDevice* PythonQtShell_QMainWindow::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6450,7 +6450,7 @@ void PythonQtShell_QMainWindow::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6472,7 +6472,7 @@ void PythonQtShell_QMainWindow::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6494,7 +6494,7 @@ QPainter* PythonQtShell_QMainWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6527,7 +6527,7 @@ void PythonQtShell_QMainWindow::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6549,7 +6549,7 @@ QSize PythonQtShell_QMainWindow::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6582,7 +6582,7 @@ void PythonQtShell_QMainWindow::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6604,7 +6604,7 @@ void PythonQtShell_QMainWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6626,7 +6626,7 @@ void PythonQtShell_QMainWindow::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7269,7 +7269,7 @@ void PythonQtShell_QMdiArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7291,7 +7291,7 @@ void PythonQtShell_QMdiArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7313,7 +7313,7 @@ void PythonQtShell_QMdiArea::childEvent(QChildEvent* childEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7335,7 +7335,7 @@ void PythonQtShell_QMdiArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7357,7 +7357,7 @@ void PythonQtShell_QMdiArea::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7379,7 +7379,7 @@ void PythonQtShell_QMdiArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7401,7 +7401,7 @@ int PythonQtShell_QMdiArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7434,7 +7434,7 @@ void PythonQtShell_QMdiArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7456,7 +7456,7 @@ void PythonQtShell_QMdiArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7478,7 +7478,7 @@ void PythonQtShell_QMdiArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7500,7 +7500,7 @@ void PythonQtShell_QMdiArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7522,7 +7522,7 @@ void PythonQtShell_QMdiArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7544,7 +7544,7 @@ bool PythonQtShell_QMdiArea::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7577,7 +7577,7 @@ bool PythonQtShell_QMdiArea::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7610,7 +7610,7 @@ void PythonQtShell_QMdiArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7632,7 +7632,7 @@ bool PythonQtShell_QMdiArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7665,7 +7665,7 @@ void PythonQtShell_QMdiArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7687,7 +7687,7 @@ bool PythonQtShell_QMdiArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7720,7 +7720,7 @@ int PythonQtShell_QMdiArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7753,7 +7753,7 @@ void PythonQtShell_QMdiArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7775,7 +7775,7 @@ void PythonQtShell_QMdiArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7797,7 +7797,7 @@ void PythonQtShell_QMdiArea::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7819,7 +7819,7 @@ QVariant PythonQtShell_QMdiArea::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7852,7 +7852,7 @@ void PythonQtShell_QMdiArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7874,7 +7874,7 @@ void PythonQtShell_QMdiArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7896,7 +7896,7 @@ void PythonQtShell_QMdiArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7918,7 +7918,7 @@ int PythonQtShell_QMdiArea::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7951,7 +7951,7 @@ QSize PythonQtShell_QMdiArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7984,7 +7984,7 @@ void PythonQtShell_QMdiArea::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8006,7 +8006,7 @@ void PythonQtShell_QMdiArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8028,7 +8028,7 @@ void PythonQtShell_QMdiArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8050,7 +8050,7 @@ void PythonQtShell_QMdiArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8072,7 +8072,7 @@ void PythonQtShell_QMdiArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8094,7 +8094,7 @@ bool PythonQtShell_QMdiArea::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8127,7 +8127,7 @@ QPaintEngine* PythonQtShell_QMdiArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8160,7 +8160,7 @@ void PythonQtShell_QMdiArea::paintEvent(QPaintEvent* paintEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8182,7 +8182,7 @@ QPaintDevice* PythonQtShell_QMdiArea::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8215,7 +8215,7 @@ void PythonQtShell_QMdiArea::resizeEvent(QResizeEvent* resizeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8237,7 +8237,7 @@ void PythonQtShell_QMdiArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8259,7 +8259,7 @@ void PythonQtShell_QMdiArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8281,7 +8281,7 @@ void PythonQtShell_QMdiArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8303,7 +8303,7 @@ QPainter* PythonQtShell_QMdiArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8336,7 +8336,7 @@ void PythonQtShell_QMdiArea::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8358,7 +8358,7 @@ QSize PythonQtShell_QMdiArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8391,7 +8391,7 @@ void PythonQtShell_QMdiArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8413,7 +8413,7 @@ void PythonQtShell_QMdiArea::timerEvent(QTimerEvent* timerEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8435,7 +8435,7 @@ bool PythonQtShell_QMdiArea::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8468,7 +8468,7 @@ QSize PythonQtShell_QMdiArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8501,7 +8501,7 @@ void PythonQtShell_QMdiArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8661,7 +8661,7 @@ void PythonQtShell_QMdiSubWindow::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8683,7 +8683,7 @@ void PythonQtShell_QMdiSubWindow::changeEvent(QEvent* changeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8705,7 +8705,7 @@ void PythonQtShell_QMdiSubWindow::childEvent(QChildEvent* childEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8727,7 +8727,7 @@ void PythonQtShell_QMdiSubWindow::closeEvent(QCloseEvent* closeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8749,7 +8749,7 @@ void PythonQtShell_QMdiSubWindow::contextMenuEvent(QContextMenuEvent* contextMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8771,7 +8771,7 @@ void PythonQtShell_QMdiSubWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8793,7 +8793,7 @@ int PythonQtShell_QMdiSubWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8826,7 +8826,7 @@ void PythonQtShell_QMdiSubWindow::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8848,7 +8848,7 @@ void PythonQtShell_QMdiSubWindow::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8870,7 +8870,7 @@ void PythonQtShell_QMdiSubWindow::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8892,7 +8892,7 @@ void PythonQtShell_QMdiSubWindow::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8914,7 +8914,7 @@ void PythonQtShell_QMdiSubWindow::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8936,7 +8936,7 @@ bool PythonQtShell_QMdiSubWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8969,7 +8969,7 @@ bool PythonQtShell_QMdiSubWindow::eventFilter(QObject* object0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9002,7 +9002,7 @@ void PythonQtShell_QMdiSubWindow::focusInEvent(QFocusEvent* focusInEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9024,7 +9024,7 @@ bool PythonQtShell_QMdiSubWindow::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9057,7 +9057,7 @@ void PythonQtShell_QMdiSubWindow::focusOutEvent(QFocusEvent* focusOutEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9079,7 +9079,7 @@ bool PythonQtShell_QMdiSubWindow::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9112,7 +9112,7 @@ int PythonQtShell_QMdiSubWindow::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9145,7 +9145,7 @@ void PythonQtShell_QMdiSubWindow::hideEvent(QHideEvent* hideEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9167,7 +9167,7 @@ void PythonQtShell_QMdiSubWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9189,7 +9189,7 @@ void PythonQtShell_QMdiSubWindow::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9211,7 +9211,7 @@ QVariant PythonQtShell_QMdiSubWindow::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9244,7 +9244,7 @@ void PythonQtShell_QMdiSubWindow::keyPressEvent(QKeyEvent* keyEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9266,7 +9266,7 @@ void PythonQtShell_QMdiSubWindow::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9288,7 +9288,7 @@ void PythonQtShell_QMdiSubWindow::leaveEvent(QEvent* leaveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9310,7 +9310,7 @@ int PythonQtShell_QMdiSubWindow::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9343,7 +9343,7 @@ QSize PythonQtShell_QMdiSubWindow::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9376,7 +9376,7 @@ void PythonQtShell_QMdiSubWindow::mouseDoubleClickEvent(QMouseEvent* mouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9398,7 +9398,7 @@ void PythonQtShell_QMdiSubWindow::mouseMoveEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9420,7 +9420,7 @@ void PythonQtShell_QMdiSubWindow::mousePressEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9442,7 +9442,7 @@ void PythonQtShell_QMdiSubWindow::mouseReleaseEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9464,7 +9464,7 @@ void PythonQtShell_QMdiSubWindow::moveEvent(QMoveEvent* moveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9486,7 +9486,7 @@ bool PythonQtShell_QMdiSubWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9519,7 +9519,7 @@ QPaintEngine* PythonQtShell_QMdiSubWindow::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9552,7 +9552,7 @@ void PythonQtShell_QMdiSubWindow::paintEvent(QPaintEvent* paintEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9574,7 +9574,7 @@ QPaintDevice* PythonQtShell_QMdiSubWindow::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9607,7 +9607,7 @@ void PythonQtShell_QMdiSubWindow::resizeEvent(QResizeEvent* resizeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9629,7 +9629,7 @@ void PythonQtShell_QMdiSubWindow::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9651,7 +9651,7 @@ QPainter* PythonQtShell_QMdiSubWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9684,7 +9684,7 @@ void PythonQtShell_QMdiSubWindow::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9706,7 +9706,7 @@ QSize PythonQtShell_QMdiSubWindow::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9739,7 +9739,7 @@ void PythonQtShell_QMdiSubWindow::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9761,7 +9761,7 @@ void PythonQtShell_QMdiSubWindow::timerEvent(QTimerEvent* timerEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9783,7 +9783,7 @@ void PythonQtShell_QMdiSubWindow::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9908,7 +9908,7 @@ void PythonQtShell_QMenu::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9930,7 +9930,7 @@ void PythonQtShell_QMenu::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9952,7 +9952,7 @@ void PythonQtShell_QMenu::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9974,7 +9974,7 @@ void PythonQtShell_QMenu::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9996,7 +9996,7 @@ void PythonQtShell_QMenu::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10018,7 +10018,7 @@ void PythonQtShell_QMenu::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10040,7 +10040,7 @@ int PythonQtShell_QMenu::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10073,7 +10073,7 @@ void PythonQtShell_QMenu::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10095,7 +10095,7 @@ void PythonQtShell_QMenu::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10117,7 +10117,7 @@ void PythonQtShell_QMenu::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10139,7 +10139,7 @@ void PythonQtShell_QMenu::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10161,7 +10161,7 @@ void PythonQtShell_QMenu::enterEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10183,7 +10183,7 @@ bool PythonQtShell_QMenu::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10216,7 +10216,7 @@ bool PythonQtShell_QMenu::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10249,7 +10249,7 @@ void PythonQtShell_QMenu::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10271,7 +10271,7 @@ bool PythonQtShell_QMenu::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10304,7 +10304,7 @@ void PythonQtShell_QMenu::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10326,7 +10326,7 @@ bool PythonQtShell_QMenu::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10359,7 +10359,7 @@ int PythonQtShell_QMenu::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10392,7 +10392,7 @@ void PythonQtShell_QMenu::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10414,7 +10414,7 @@ void PythonQtShell_QMenu::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10436,7 +10436,7 @@ void PythonQtShell_QMenu::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10458,7 +10458,7 @@ QVariant PythonQtShell_QMenu::inputMethodQuery(Qt::InputMethodQuery arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10491,7 +10491,7 @@ void PythonQtShell_QMenu::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10513,7 +10513,7 @@ void PythonQtShell_QMenu::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10535,7 +10535,7 @@ void PythonQtShell_QMenu::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10557,7 +10557,7 @@ int PythonQtShell_QMenu::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10590,7 +10590,7 @@ QSize PythonQtShell_QMenu::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10623,7 +10623,7 @@ void PythonQtShell_QMenu::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10645,7 +10645,7 @@ void PythonQtShell_QMenu::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10667,7 +10667,7 @@ void PythonQtShell_QMenu::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10689,7 +10689,7 @@ void PythonQtShell_QMenu::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10711,7 +10711,7 @@ void PythonQtShell_QMenu::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10733,7 +10733,7 @@ bool PythonQtShell_QMenu::nativeEvent(const QByteArray& eventType0, void* mes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10766,7 +10766,7 @@ QPaintEngine* PythonQtShell_QMenu::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10799,7 +10799,7 @@ void PythonQtShell_QMenu::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10821,7 +10821,7 @@ QPaintDevice* PythonQtShell_QMenu::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10854,7 +10854,7 @@ void PythonQtShell_QMenu::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10876,7 +10876,7 @@ void PythonQtShell_QMenu::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10898,7 +10898,7 @@ QPainter* PythonQtShell_QMenu::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10931,7 +10931,7 @@ void PythonQtShell_QMenu::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10953,7 +10953,7 @@ QSize PythonQtShell_QMenu::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10986,7 +10986,7 @@ void PythonQtShell_QMenu::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11008,7 +11008,7 @@ void PythonQtShell_QMenu::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11030,7 +11030,7 @@ void PythonQtShell_QMenu::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11299,7 +11299,7 @@ void PythonQtShell_QMenuBar::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11321,7 +11321,7 @@ void PythonQtShell_QMenuBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11343,7 +11343,7 @@ void PythonQtShell_QMenuBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11365,7 +11365,7 @@ void PythonQtShell_QMenuBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11387,7 +11387,7 @@ void PythonQtShell_QMenuBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11409,7 +11409,7 @@ void PythonQtShell_QMenuBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11431,7 +11431,7 @@ int PythonQtShell_QMenuBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11464,7 +11464,7 @@ void PythonQtShell_QMenuBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11486,7 +11486,7 @@ void PythonQtShell_QMenuBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11508,7 +11508,7 @@ void PythonQtShell_QMenuBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11530,7 +11530,7 @@ void PythonQtShell_QMenuBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11552,7 +11552,7 @@ void PythonQtShell_QMenuBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11574,7 +11574,7 @@ bool PythonQtShell_QMenuBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11607,7 +11607,7 @@ bool PythonQtShell_QMenuBar::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11640,7 +11640,7 @@ void PythonQtShell_QMenuBar::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11662,7 +11662,7 @@ bool PythonQtShell_QMenuBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11695,7 +11695,7 @@ void PythonQtShell_QMenuBar::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11717,7 +11717,7 @@ bool PythonQtShell_QMenuBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11750,7 +11750,7 @@ int PythonQtShell_QMenuBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11783,7 +11783,7 @@ void PythonQtShell_QMenuBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11805,7 +11805,7 @@ void PythonQtShell_QMenuBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11827,7 +11827,7 @@ void PythonQtShell_QMenuBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11849,7 +11849,7 @@ QVariant PythonQtShell_QMenuBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11882,7 +11882,7 @@ void PythonQtShell_QMenuBar::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11904,7 +11904,7 @@ void PythonQtShell_QMenuBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11926,7 +11926,7 @@ void PythonQtShell_QMenuBar::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11948,7 +11948,7 @@ int PythonQtShell_QMenuBar::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11981,7 +11981,7 @@ QSize PythonQtShell_QMenuBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12014,7 +12014,7 @@ void PythonQtShell_QMenuBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12036,7 +12036,7 @@ void PythonQtShell_QMenuBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12058,7 +12058,7 @@ void PythonQtShell_QMenuBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12080,7 +12080,7 @@ void PythonQtShell_QMenuBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12102,7 +12102,7 @@ void PythonQtShell_QMenuBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12124,7 +12124,7 @@ bool PythonQtShell_QMenuBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12157,7 +12157,7 @@ QPaintEngine* PythonQtShell_QMenuBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12190,7 +12190,7 @@ void PythonQtShell_QMenuBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12212,7 +12212,7 @@ QPaintDevice* PythonQtShell_QMenuBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12245,7 +12245,7 @@ void PythonQtShell_QMenuBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12267,7 +12267,7 @@ void PythonQtShell_QMenuBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12289,7 +12289,7 @@ QPainter* PythonQtShell_QMenuBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12322,7 +12322,7 @@ void PythonQtShell_QMenuBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12344,7 +12344,7 @@ QSize PythonQtShell_QMenuBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12377,7 +12377,7 @@ void PythonQtShell_QMenuBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12399,7 +12399,7 @@ void PythonQtShell_QMenuBar::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12421,7 +12421,7 @@ void PythonQtShell_QMenuBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12576,7 +12576,7 @@ void PythonQtShell_QMessageBox::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12598,7 +12598,7 @@ void PythonQtShell_QMessageBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12620,7 +12620,7 @@ void PythonQtShell_QMessageBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12642,7 +12642,7 @@ void PythonQtShell_QMessageBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12664,7 +12664,7 @@ void PythonQtShell_QMessageBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12686,7 +12686,7 @@ void PythonQtShell_QMessageBox::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12708,7 +12708,7 @@ void PythonQtShell_QMessageBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12730,7 +12730,7 @@ int PythonQtShell_QMessageBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12763,7 +12763,7 @@ void PythonQtShell_QMessageBox::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12785,7 +12785,7 @@ void PythonQtShell_QMessageBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12807,7 +12807,7 @@ void PythonQtShell_QMessageBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12829,7 +12829,7 @@ void PythonQtShell_QMessageBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12851,7 +12851,7 @@ void PythonQtShell_QMessageBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12873,7 +12873,7 @@ void PythonQtShell_QMessageBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12895,7 +12895,7 @@ bool PythonQtShell_QMessageBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12928,7 +12928,7 @@ bool PythonQtShell_QMessageBox::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12961,7 +12961,7 @@ int PythonQtShell_QMessageBox::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12994,7 +12994,7 @@ void PythonQtShell_QMessageBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13016,7 +13016,7 @@ bool PythonQtShell_QMessageBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13049,7 +13049,7 @@ void PythonQtShell_QMessageBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13071,7 +13071,7 @@ bool PythonQtShell_QMessageBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13104,7 +13104,7 @@ int PythonQtShell_QMessageBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13137,7 +13137,7 @@ void PythonQtShell_QMessageBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13159,7 +13159,7 @@ void PythonQtShell_QMessageBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13181,7 +13181,7 @@ void PythonQtShell_QMessageBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13203,7 +13203,7 @@ QVariant PythonQtShell_QMessageBox::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13236,7 +13236,7 @@ void PythonQtShell_QMessageBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13258,7 +13258,7 @@ void PythonQtShell_QMessageBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13280,7 +13280,7 @@ void PythonQtShell_QMessageBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13302,7 +13302,7 @@ int PythonQtShell_QMessageBox::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13335,7 +13335,7 @@ QSize PythonQtShell_QMessageBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13368,7 +13368,7 @@ void PythonQtShell_QMessageBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13390,7 +13390,7 @@ void PythonQtShell_QMessageBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13412,7 +13412,7 @@ void PythonQtShell_QMessageBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13434,7 +13434,7 @@ void PythonQtShell_QMessageBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13456,7 +13456,7 @@ void PythonQtShell_QMessageBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13478,7 +13478,7 @@ bool PythonQtShell_QMessageBox::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13511,7 +13511,7 @@ QPaintEngine* PythonQtShell_QMessageBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13544,7 +13544,7 @@ void PythonQtShell_QMessageBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13566,7 +13566,7 @@ QPaintDevice* PythonQtShell_QMessageBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13599,7 +13599,7 @@ void PythonQtShell_QMessageBox::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13621,7 +13621,7 @@ void PythonQtShell_QMessageBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13643,7 +13643,7 @@ void PythonQtShell_QMessageBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13665,7 +13665,7 @@ QPainter* PythonQtShell_QMessageBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13698,7 +13698,7 @@ void PythonQtShell_QMessageBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13720,7 +13720,7 @@ QSize PythonQtShell_QMessageBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13753,7 +13753,7 @@ void PythonQtShell_QMessageBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13775,7 +13775,7 @@ void PythonQtShell_QMessageBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13797,7 +13797,7 @@ void PythonQtShell_QMessageBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14158,7 +14158,7 @@ void PythonQtShell_QMouseEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14180,7 +14180,7 @@ void PythonQtShell_QMouseEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14202,7 +14202,7 @@ bool PythonQtShell_QMouseEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14235,7 +14235,7 @@ bool PythonQtShell_QMouseEventTransition::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14268,7 +14268,7 @@ bool PythonQtShell_QMouseEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14301,7 +14301,7 @@ void PythonQtShell_QMouseEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14323,7 +14323,7 @@ void PythonQtShell_QMouseEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14422,7 +14422,7 @@ void PythonQtShell_QMovie::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14444,7 +14444,7 @@ void PythonQtShell_QMovie::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14466,7 +14466,7 @@ bool PythonQtShell_QMovie::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14499,7 +14499,7 @@ bool PythonQtShell_QMovie::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14532,7 +14532,7 @@ void PythonQtShell_QMovie::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14769,7 +14769,7 @@ void PythonQtShell_QOffscreenSurface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14791,7 +14791,7 @@ void PythonQtShell_QOffscreenSurface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14813,7 +14813,7 @@ bool PythonQtShell_QOffscreenSurface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14846,7 +14846,7 @@ bool PythonQtShell_QOffscreenSurface::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14879,7 +14879,7 @@ QSurfaceFormat PythonQtShell_QOffscreenSurface::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -14912,7 +14912,7 @@ QSize PythonQtShell_QOffscreenSurface::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14945,7 +14945,7 @@ QSurface::SurfaceType PythonQtShell_QOffscreenSurface::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -14978,7 +14978,7 @@ void PythonQtShell_QOffscreenSurface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15176,7 +15176,7 @@ void PythonQtShell_QOpenGLContext::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15198,7 +15198,7 @@ void PythonQtShell_QOpenGLContext::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15220,7 +15220,7 @@ bool PythonQtShell_QOpenGLContext::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15253,7 +15253,7 @@ bool PythonQtShell_QOpenGLContext::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15286,7 +15286,7 @@ void PythonQtShell_QOpenGLContext::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15732,7 +15732,7 @@ int PythonQtShell_QOpenGLPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15765,7 +15765,7 @@ void PythonQtShell_QOpenGLPaintDevice::ensureActiveTarget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ensureActiveTarget"); + static PyObject* name = PyUnicode_FromString("ensureActiveTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15787,7 +15787,7 @@ void PythonQtShell_QOpenGLPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15809,7 +15809,7 @@ int PythonQtShell_QOpenGLPaintDevice::metric(QPaintDevice::PaintDeviceMetric m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15842,7 +15842,7 @@ QPaintEngine* PythonQtShell_QOpenGLPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15875,7 +15875,7 @@ QPaintDevice* PythonQtShell_QOpenGLPaintDevice::redirected(QPoint* offset0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15908,7 +15908,7 @@ QPainter* PythonQtShell_QOpenGLPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16014,7 +16014,7 @@ void PythonQtShell_QOpenGLShader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16036,7 +16036,7 @@ void PythonQtShell_QOpenGLShader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16058,7 +16058,7 @@ bool PythonQtShell_QOpenGLShader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16091,7 +16091,7 @@ bool PythonQtShell_QOpenGLShader::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16124,7 +16124,7 @@ void PythonQtShell_QOpenGLShader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16219,7 +16219,7 @@ void PythonQtShell_QOpenGLShaderProgram::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16241,7 +16241,7 @@ void PythonQtShell_QOpenGLShaderProgram::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16263,7 +16263,7 @@ bool PythonQtShell_QOpenGLShaderProgram::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16296,7 +16296,7 @@ bool PythonQtShell_QOpenGLShaderProgram::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16329,7 +16329,7 @@ bool PythonQtShell_QOpenGLShaderProgram::link() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16362,7 +16362,7 @@ void PythonQtShell_QOpenGLShaderProgram::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17470,7 +17470,7 @@ void PythonQtShell_QOpenGLTimeMonitor::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17492,7 +17492,7 @@ void PythonQtShell_QOpenGLTimeMonitor::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17514,7 +17514,7 @@ bool PythonQtShell_QOpenGLTimeMonitor::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17547,7 +17547,7 @@ bool PythonQtShell_QOpenGLTimeMonitor::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17580,7 +17580,7 @@ void PythonQtShell_QOpenGLTimeMonitor::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17680,7 +17680,7 @@ void PythonQtShell_QOpenGLTimerQuery::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17702,7 +17702,7 @@ void PythonQtShell_QOpenGLTimerQuery::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17724,7 +17724,7 @@ bool PythonQtShell_QOpenGLTimerQuery::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17757,7 +17757,7 @@ bool PythonQtShell_QOpenGLTimerQuery::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17790,7 +17790,7 @@ void PythonQtShell_QOpenGLTimerQuery::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp index 3f0957e8d..f3d8255d8 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp @@ -161,7 +161,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -183,7 +183,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -205,7 +205,7 @@ bool PythonQtShell_QOpenGLVertexArrayObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -238,7 +238,7 @@ bool PythonQtShell_QOpenGLVertexArrayObject::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -271,7 +271,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -346,7 +346,7 @@ void PythonQtShell_QOpenGLWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -368,7 +368,7 @@ void PythonQtShell_QOpenGLWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -390,7 +390,7 @@ void PythonQtShell_QOpenGLWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -412,7 +412,7 @@ void PythonQtShell_QOpenGLWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -434,7 +434,7 @@ void PythonQtShell_QOpenGLWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -456,7 +456,7 @@ void PythonQtShell_QOpenGLWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -478,7 +478,7 @@ int PythonQtShell_QOpenGLWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -511,7 +511,7 @@ void PythonQtShell_QOpenGLWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -533,7 +533,7 @@ void PythonQtShell_QOpenGLWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -555,7 +555,7 @@ void PythonQtShell_QOpenGLWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -577,7 +577,7 @@ void PythonQtShell_QOpenGLWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -599,7 +599,7 @@ void PythonQtShell_QOpenGLWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -621,7 +621,7 @@ bool PythonQtShell_QOpenGLWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -654,7 +654,7 @@ bool PythonQtShell_QOpenGLWidget::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -687,7 +687,7 @@ void PythonQtShell_QOpenGLWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -709,7 +709,7 @@ bool PythonQtShell_QOpenGLWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -742,7 +742,7 @@ void PythonQtShell_QOpenGLWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -764,7 +764,7 @@ bool PythonQtShell_QOpenGLWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -797,7 +797,7 @@ int PythonQtShell_QOpenGLWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -830,7 +830,7 @@ void PythonQtShell_QOpenGLWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -852,7 +852,7 @@ void PythonQtShell_QOpenGLWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -874,7 +874,7 @@ void PythonQtShell_QOpenGLWidget::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -896,7 +896,7 @@ void PythonQtShell_QOpenGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -918,7 +918,7 @@ QVariant PythonQtShell_QOpenGLWidget::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -951,7 +951,7 @@ void PythonQtShell_QOpenGLWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -973,7 +973,7 @@ void PythonQtShell_QOpenGLWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -995,7 +995,7 @@ void PythonQtShell_QOpenGLWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1017,7 +1017,7 @@ int PythonQtShell_QOpenGLWidget::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1050,7 +1050,7 @@ QSize PythonQtShell_QOpenGLWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1083,7 +1083,7 @@ void PythonQtShell_QOpenGLWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1105,7 +1105,7 @@ void PythonQtShell_QOpenGLWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1127,7 +1127,7 @@ void PythonQtShell_QOpenGLWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1149,7 +1149,7 @@ void PythonQtShell_QOpenGLWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1171,7 +1171,7 @@ void PythonQtShell_QOpenGLWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1193,7 +1193,7 @@ bool PythonQtShell_QOpenGLWidget::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1226,7 +1226,7 @@ QPaintEngine* PythonQtShell_QOpenGLWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1259,7 +1259,7 @@ void PythonQtShell_QOpenGLWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1281,7 +1281,7 @@ void PythonQtShell_QOpenGLWidget::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1303,7 +1303,7 @@ QPaintDevice* PythonQtShell_QOpenGLWidget::redirected(QPoint* p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1336,7 +1336,7 @@ void PythonQtShell_QOpenGLWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1358,7 +1358,7 @@ void PythonQtShell_QOpenGLWidget::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1380,7 +1380,7 @@ void PythonQtShell_QOpenGLWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1402,7 +1402,7 @@ QPainter* PythonQtShell_QOpenGLWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1435,7 +1435,7 @@ void PythonQtShell_QOpenGLWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1457,7 +1457,7 @@ QSize PythonQtShell_QOpenGLWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1490,7 +1490,7 @@ void PythonQtShell_QOpenGLWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1512,7 +1512,7 @@ void PythonQtShell_QOpenGLWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1534,7 +1534,7 @@ void PythonQtShell_QOpenGLWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1654,7 +1654,7 @@ void PythonQtShell_QOpenGLWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1676,7 +1676,7 @@ void PythonQtShell_QOpenGLWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1698,7 +1698,7 @@ int PythonQtShell_QOpenGLWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1731,7 +1731,7 @@ bool PythonQtShell_QOpenGLWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1764,7 +1764,7 @@ bool PythonQtShell_QOpenGLWindow::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1797,7 +1797,7 @@ void PythonQtShell_QOpenGLWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -1819,7 +1819,7 @@ void PythonQtShell_QOpenGLWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1841,7 +1841,7 @@ QObject* PythonQtShell_QOpenGLWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -1874,7 +1874,7 @@ void PythonQtShell_QOpenGLWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1896,7 +1896,7 @@ QSurfaceFormat PythonQtShell_QOpenGLWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -1929,7 +1929,7 @@ void PythonQtShell_QOpenGLWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1951,7 +1951,7 @@ void PythonQtShell_QOpenGLWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1973,7 +1973,7 @@ void PythonQtShell_QOpenGLWindow::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1995,7 +1995,7 @@ void PythonQtShell_QOpenGLWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2017,7 +2017,7 @@ void PythonQtShell_QOpenGLWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2039,7 +2039,7 @@ int PythonQtShell_QOpenGLWindow::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2072,7 +2072,7 @@ void PythonQtShell_QOpenGLWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2094,7 +2094,7 @@ void PythonQtShell_QOpenGLWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2116,7 +2116,7 @@ void PythonQtShell_QOpenGLWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2138,7 +2138,7 @@ void PythonQtShell_QOpenGLWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2160,7 +2160,7 @@ void PythonQtShell_QOpenGLWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2182,7 +2182,7 @@ bool PythonQtShell_QOpenGLWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2215,7 +2215,7 @@ void PythonQtShell_QOpenGLWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2237,7 +2237,7 @@ void PythonQtShell_QOpenGLWindow::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2259,7 +2259,7 @@ void PythonQtShell_QOpenGLWindow::paintOverGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintOverGL"); + static PyObject* name = PyUnicode_FromString("paintOverGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2281,7 +2281,7 @@ void PythonQtShell_QOpenGLWindow::paintUnderGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintUnderGL"); + static PyObject* name = PyUnicode_FromString("paintUnderGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2303,7 +2303,7 @@ QPaintDevice* PythonQtShell_QOpenGLWindow::redirected(QPoint* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2336,7 +2336,7 @@ void PythonQtShell_QOpenGLWindow::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2358,7 +2358,7 @@ void PythonQtShell_QOpenGLWindow::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -2380,7 +2380,7 @@ QPainter* PythonQtShell_QOpenGLWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2413,7 +2413,7 @@ void PythonQtShell_QOpenGLWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2435,7 +2435,7 @@ QSize PythonQtShell_QOpenGLWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2468,7 +2468,7 @@ QSurface::SurfaceType PythonQtShell_QOpenGLWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -2501,7 +2501,7 @@ void PythonQtShell_QOpenGLWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2523,7 +2523,7 @@ void PythonQtShell_QOpenGLWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2545,7 +2545,7 @@ void PythonQtShell_QOpenGLWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -2567,7 +2567,7 @@ void PythonQtShell_QOpenGLWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2872,7 +2872,7 @@ void PythonQtShell_QPageSetupDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2894,7 +2894,7 @@ void PythonQtShell_QPageSetupDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2916,7 +2916,7 @@ void PythonQtShell_QPageSetupDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2938,7 +2938,7 @@ void PythonQtShell_QPageSetupDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2960,7 +2960,7 @@ void PythonQtShell_QPageSetupDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2982,7 +2982,7 @@ void PythonQtShell_QPageSetupDialog::contextMenuEvent(QContextMenuEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3004,7 +3004,7 @@ void PythonQtShell_QPageSetupDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3026,7 +3026,7 @@ int PythonQtShell_QPageSetupDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3059,7 +3059,7 @@ void PythonQtShell_QPageSetupDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3081,7 +3081,7 @@ void PythonQtShell_QPageSetupDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3103,7 +3103,7 @@ void PythonQtShell_QPageSetupDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3125,7 +3125,7 @@ void PythonQtShell_QPageSetupDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3147,7 +3147,7 @@ void PythonQtShell_QPageSetupDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3169,7 +3169,7 @@ void PythonQtShell_QPageSetupDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3191,7 +3191,7 @@ bool PythonQtShell_QPageSetupDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3224,7 +3224,7 @@ bool PythonQtShell_QPageSetupDialog::eventFilter(QObject* arg__1, QEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3257,7 +3257,7 @@ int PythonQtShell_QPageSetupDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3290,7 +3290,7 @@ void PythonQtShell_QPageSetupDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3312,7 +3312,7 @@ bool PythonQtShell_QPageSetupDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3345,7 +3345,7 @@ void PythonQtShell_QPageSetupDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3367,7 +3367,7 @@ bool PythonQtShell_QPageSetupDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3400,7 +3400,7 @@ int PythonQtShell_QPageSetupDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3433,7 +3433,7 @@ void PythonQtShell_QPageSetupDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3455,7 +3455,7 @@ void PythonQtShell_QPageSetupDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3477,7 +3477,7 @@ void PythonQtShell_QPageSetupDialog::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3499,7 +3499,7 @@ QVariant PythonQtShell_QPageSetupDialog::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3532,7 +3532,7 @@ void PythonQtShell_QPageSetupDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3554,7 +3554,7 @@ void PythonQtShell_QPageSetupDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3576,7 +3576,7 @@ void PythonQtShell_QPageSetupDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3598,7 +3598,7 @@ int PythonQtShell_QPageSetupDialog::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3631,7 +3631,7 @@ QSize PythonQtShell_QPageSetupDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3664,7 +3664,7 @@ void PythonQtShell_QPageSetupDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3686,7 +3686,7 @@ void PythonQtShell_QPageSetupDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3708,7 +3708,7 @@ void PythonQtShell_QPageSetupDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3730,7 +3730,7 @@ void PythonQtShell_QPageSetupDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3752,7 +3752,7 @@ void PythonQtShell_QPageSetupDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3774,7 +3774,7 @@ bool PythonQtShell_QPageSetupDialog::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3807,7 +3807,7 @@ QPaintEngine* PythonQtShell_QPageSetupDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3840,7 +3840,7 @@ void PythonQtShell_QPageSetupDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3862,7 +3862,7 @@ QPaintDevice* PythonQtShell_QPageSetupDialog::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3895,7 +3895,7 @@ void PythonQtShell_QPageSetupDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3917,7 +3917,7 @@ void PythonQtShell_QPageSetupDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3939,7 +3939,7 @@ void PythonQtShell_QPageSetupDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3961,7 +3961,7 @@ QPainter* PythonQtShell_QPageSetupDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3994,7 +3994,7 @@ void PythonQtShell_QPageSetupDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4016,7 +4016,7 @@ QSize PythonQtShell_QPageSetupDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4049,7 +4049,7 @@ void PythonQtShell_QPageSetupDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4071,7 +4071,7 @@ void PythonQtShell_QPageSetupDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4093,7 +4093,7 @@ void PythonQtShell_QPageSetupDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4408,7 +4408,7 @@ int PythonQtShell_QPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4441,7 +4441,7 @@ void PythonQtShell_QPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4463,7 +4463,7 @@ int PythonQtShell_QPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4496,7 +4496,7 @@ QPaintEngine* PythonQtShell_QPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4529,7 +4529,7 @@ QPaintDevice* PythonQtShell_QPaintDevice::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4562,7 +4562,7 @@ QPainter* PythonQtShell_QPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4722,7 +4722,7 @@ bool PythonQtShell_QPaintEngine::begin(QPaintDevice* pdev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("begin"); + static PyObject* name = PyUnicode_FromString("begin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QPaintDevice*"}; @@ -4755,7 +4755,7 @@ QPoint PythonQtShell_QPaintEngine::coordinateOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("coordinateOffset"); + static PyObject* name = PyUnicode_FromString("coordinateOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPoint"}; @@ -4788,7 +4788,7 @@ void PythonQtShell_QPaintEngine::drawEllipse(const QRect& r0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -4810,7 +4810,7 @@ void PythonQtShell_QPaintEngine::drawEllipse(const QRectF& r0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -4832,7 +4832,7 @@ void PythonQtShell_QPaintEngine::drawImage(const QRectF& r0, const QImage& pm1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawImage"); + static PyObject* name = PyUnicode_FromString("drawImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QImage&" , "const QRectF&" , "Qt::ImageConversionFlags"}; @@ -4854,7 +4854,7 @@ void PythonQtShell_QPaintEngine::drawLines(const QLine* lines0, int lineCount1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLine*" , "int"}; @@ -4876,7 +4876,7 @@ void PythonQtShell_QPaintEngine::drawLines(const QLineF* lines0, int lineCount if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLineF*" , "int"}; @@ -4898,7 +4898,7 @@ void PythonQtShell_QPaintEngine::drawPath(const QPainterPath& path0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPath"); + static PyObject* name = PyUnicode_FromString("drawPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPainterPath&"}; @@ -4920,7 +4920,7 @@ void PythonQtShell_QPaintEngine::drawPixmap(const QRectF& r0, const QPixmap& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPixmap"); + static PyObject* name = PyUnicode_FromString("drawPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QRectF&"}; @@ -4942,7 +4942,7 @@ void PythonQtShell_QPaintEngine::drawPoints(const QPoint* points0, int pointCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int"}; @@ -4964,7 +4964,7 @@ void PythonQtShell_QPaintEngine::drawPoints(const QPointF* points0, int pointC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int"}; @@ -4986,7 +4986,7 @@ void PythonQtShell_QPaintEngine::drawPolygon(const QPoint* points0, int pointC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -5008,7 +5008,7 @@ void PythonQtShell_QPaintEngine::drawPolygon(const QPointF* points0, int point if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -5030,7 +5030,7 @@ void PythonQtShell_QPaintEngine::drawRects(const QRect* rects0, int rectCount1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect*" , "int"}; @@ -5052,7 +5052,7 @@ void PythonQtShell_QPaintEngine::drawRects(const QRectF* rects0, int rectCount if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF*" , "int"}; @@ -5074,7 +5074,7 @@ void PythonQtShell_QPaintEngine::drawTextItem(const QPointF& p0, const QTextIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawTextItem"); + static PyObject* name = PyUnicode_FromString("drawTextItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&" , "const QTextItem&"}; @@ -5096,7 +5096,7 @@ void PythonQtShell_QPaintEngine::drawTiledPixmap(const QRectF& r0, const QPixma if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawTiledPixmap"); + static PyObject* name = PyUnicode_FromString("drawTiledPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QPointF&"}; @@ -5118,7 +5118,7 @@ bool PythonQtShell_QPaintEngine::end() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("end"); + static PyObject* name = PyUnicode_FromString("end"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5151,7 +5151,7 @@ QPaintEngine::Type PythonQtShell_QPaintEngine::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine::Type"}; @@ -5184,7 +5184,7 @@ void PythonQtShell_QPaintEngine::updateState(const QPaintEngineState& state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPaintEngineState&"}; @@ -7056,7 +7056,7 @@ void PythonQtShell_QPanGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7078,7 +7078,7 @@ void PythonQtShell_QPanGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7100,7 +7100,7 @@ bool PythonQtShell_QPanGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7133,7 +7133,7 @@ bool PythonQtShell_QPanGesture::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7166,7 +7166,7 @@ void PythonQtShell_QPanGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7246,7 +7246,7 @@ void PythonQtShell_QPdfWriter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7268,7 +7268,7 @@ void PythonQtShell_QPdfWriter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7290,7 +7290,7 @@ int PythonQtShell_QPdfWriter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7323,7 +7323,7 @@ bool PythonQtShell_QPdfWriter::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7356,7 +7356,7 @@ bool PythonQtShell_QPdfWriter::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7389,7 +7389,7 @@ void PythonQtShell_QPdfWriter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7411,7 +7411,7 @@ int PythonQtShell_QPdfWriter::metric(QPaintDevice::PaintDeviceMetric id0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7444,7 +7444,7 @@ bool PythonQtShell_QPdfWriter::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7477,7 +7477,7 @@ QPaintEngine* PythonQtShell_QPdfWriter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7510,7 +7510,7 @@ QPaintDevice* PythonQtShell_QPdfWriter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7543,7 +7543,7 @@ void PythonQtShell_QPdfWriter::setMargins(const QPagedPaintDevice::Margins& m0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -7565,7 +7565,7 @@ void PythonQtShell_QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -7587,7 +7587,7 @@ void PythonQtShell_QPdfWriter::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -7609,7 +7609,7 @@ QPainter* PythonQtShell_QPdfWriter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7642,7 +7642,7 @@ void PythonQtShell_QPdfWriter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7746,7 +7746,7 @@ int PythonQtShell_QPicture::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7779,7 +7779,7 @@ void PythonQtShell_QPicture::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7801,7 +7801,7 @@ int PythonQtShell_QPicture::metric(QPaintDevice::PaintDeviceMetric m0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7834,7 +7834,7 @@ QPaintEngine* PythonQtShell_QPicture::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7867,7 +7867,7 @@ QPaintDevice* PythonQtShell_QPicture::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7900,7 +7900,7 @@ QPainter* PythonQtShell_QPicture::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8012,7 +8012,7 @@ void PythonQtShell_QPictureFormatPlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8034,7 +8034,7 @@ void PythonQtShell_QPictureFormatPlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8056,7 +8056,7 @@ bool PythonQtShell_QPictureFormatPlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8089,7 +8089,7 @@ bool PythonQtShell_QPictureFormatPlugin::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8122,7 +8122,7 @@ bool PythonQtShell_QPictureFormatPlugin::installIOHandler(const QString& forma if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("installIOHandler"); + static PyObject* name = PyUnicode_FromString("installIOHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -8155,7 +8155,7 @@ bool PythonQtShell_QPictureFormatPlugin::loadPicture(const QString& format0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadPicture"); + static PyObject* name = PyUnicode_FromString("loadPicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QPicture*"}; @@ -8188,7 +8188,7 @@ bool PythonQtShell_QPictureFormatPlugin::savePicture(const QString& format0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("savePicture"); + static PyObject* name = PyUnicode_FromString("savePicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QPicture&"}; @@ -8221,7 +8221,7 @@ void PythonQtShell_QPictureFormatPlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8415,7 +8415,7 @@ void PythonQtShell_QPinchGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8437,7 +8437,7 @@ void PythonQtShell_QPinchGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8459,7 +8459,7 @@ bool PythonQtShell_QPinchGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8492,7 +8492,7 @@ bool PythonQtShell_QPinchGesture::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8525,7 +8525,7 @@ void PythonQtShell_QPinchGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8905,7 +8905,7 @@ QRectF PythonQtShell_QPlainTextDocumentLayout::blockBoundingRect(const QTextBlo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -8938,7 +8938,7 @@ void PythonQtShell_QPlainTextDocumentLayout::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8960,7 +8960,7 @@ void PythonQtShell_QPlainTextDocumentLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8982,7 +8982,7 @@ void PythonQtShell_QPlainTextDocumentLayout::documentChanged(int from0, int ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -9004,7 +9004,7 @@ QSizeF PythonQtShell_QPlainTextDocumentLayout::documentSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -9037,7 +9037,7 @@ void PythonQtShell_QPlainTextDocumentLayout::draw(QPainter* arg__1, const QAbst if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -9059,7 +9059,7 @@ void PythonQtShell_QPlainTextDocumentLayout::drawInlineObject(QPainter* painter if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -9081,7 +9081,7 @@ bool PythonQtShell_QPlainTextDocumentLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9114,7 +9114,7 @@ bool PythonQtShell_QPlainTextDocumentLayout::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9147,7 +9147,7 @@ QRectF PythonQtShell_QPlainTextDocumentLayout::frameBoundingRect(QTextFrame* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -9180,7 +9180,7 @@ int PythonQtShell_QPlainTextDocumentLayout::hitTest(const QPointF& arg__1, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -9213,7 +9213,7 @@ int PythonQtShell_QPlainTextDocumentLayout::pageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9246,7 +9246,7 @@ void PythonQtShell_QPlainTextDocumentLayout::positionInlineObject(QTextInlineObj if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -9268,7 +9268,7 @@ void PythonQtShell_QPlainTextDocumentLayout::resizeInlineObject(QTextInlineObjec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -9290,7 +9290,7 @@ void PythonQtShell_QPlainTextDocumentLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9355,7 +9355,7 @@ void PythonQtShell_QPlainTextEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9377,7 +9377,7 @@ bool PythonQtShell_QPlainTextEdit::canInsertFromMimeData(const QMimeData* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -9410,7 +9410,7 @@ void PythonQtShell_QPlainTextEdit::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9432,7 +9432,7 @@ void PythonQtShell_QPlainTextEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9454,7 +9454,7 @@ void PythonQtShell_QPlainTextEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9476,7 +9476,7 @@ void PythonQtShell_QPlainTextEdit::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9498,7 +9498,7 @@ QMimeData* PythonQtShell_QPlainTextEdit::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -9531,7 +9531,7 @@ void PythonQtShell_QPlainTextEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9553,7 +9553,7 @@ int PythonQtShell_QPlainTextEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9586,7 +9586,7 @@ void PythonQtShell_QPlainTextEdit::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -9608,7 +9608,7 @@ void PythonQtShell_QPlainTextEdit::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9630,7 +9630,7 @@ void PythonQtShell_QPlainTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9652,7 +9652,7 @@ void PythonQtShell_QPlainTextEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9674,7 +9674,7 @@ void PythonQtShell_QPlainTextEdit::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9696,7 +9696,7 @@ void PythonQtShell_QPlainTextEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9718,7 +9718,7 @@ bool PythonQtShell_QPlainTextEdit::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9751,7 +9751,7 @@ bool PythonQtShell_QPlainTextEdit::eventFilter(QObject* arg__1, QEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9784,7 +9784,7 @@ void PythonQtShell_QPlainTextEdit::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9806,7 +9806,7 @@ bool PythonQtShell_QPlainTextEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9839,7 +9839,7 @@ void PythonQtShell_QPlainTextEdit::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9861,7 +9861,7 @@ bool PythonQtShell_QPlainTextEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9894,7 +9894,7 @@ int PythonQtShell_QPlainTextEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9927,7 +9927,7 @@ void PythonQtShell_QPlainTextEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9949,7 +9949,7 @@ void PythonQtShell_QPlainTextEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9971,7 +9971,7 @@ void PythonQtShell_QPlainTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9993,7 +9993,7 @@ QVariant PythonQtShell_QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10026,7 +10026,7 @@ void PythonQtShell_QPlainTextEdit::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -10048,7 +10048,7 @@ void PythonQtShell_QPlainTextEdit::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10070,7 +10070,7 @@ void PythonQtShell_QPlainTextEdit::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10092,7 +10092,7 @@ void PythonQtShell_QPlainTextEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10114,7 +10114,7 @@ QVariant PythonQtShell_QPlainTextEdit::loadResource(int type0, const QUrl& na if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -10147,7 +10147,7 @@ int PythonQtShell_QPlainTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10180,7 +10180,7 @@ QSize PythonQtShell_QPlainTextEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10213,7 +10213,7 @@ void PythonQtShell_QPlainTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10235,7 +10235,7 @@ void PythonQtShell_QPlainTextEdit::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10257,7 +10257,7 @@ void PythonQtShell_QPlainTextEdit::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10279,7 +10279,7 @@ void PythonQtShell_QPlainTextEdit::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10301,7 +10301,7 @@ void PythonQtShell_QPlainTextEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10323,7 +10323,7 @@ bool PythonQtShell_QPlainTextEdit::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10356,7 +10356,7 @@ QPaintEngine* PythonQtShell_QPlainTextEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10389,7 +10389,7 @@ void PythonQtShell_QPlainTextEdit::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10411,7 +10411,7 @@ QPaintDevice* PythonQtShell_QPlainTextEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10444,7 +10444,7 @@ void PythonQtShell_QPlainTextEdit::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10466,7 +10466,7 @@ void PythonQtShell_QPlainTextEdit::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -10488,7 +10488,7 @@ void PythonQtShell_QPlainTextEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10510,7 +10510,7 @@ void PythonQtShell_QPlainTextEdit::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10532,7 +10532,7 @@ QPainter* PythonQtShell_QPlainTextEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10565,7 +10565,7 @@ void PythonQtShell_QPlainTextEdit::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10587,7 +10587,7 @@ QSize PythonQtShell_QPlainTextEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10620,7 +10620,7 @@ void PythonQtShell_QPlainTextEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10642,7 +10642,7 @@ void PythonQtShell_QPlainTextEdit::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10664,7 +10664,7 @@ bool PythonQtShell_QPlainTextEdit::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10697,7 +10697,7 @@ QSize PythonQtShell_QPlainTextEdit::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10730,7 +10730,7 @@ void PythonQtShell_QPlainTextEdit::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp index 8286f8c79..02478e30d 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp @@ -482,7 +482,7 @@ void PythonQtShell_QPrintDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -504,7 +504,7 @@ void PythonQtShell_QPrintDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -526,7 +526,7 @@ void PythonQtShell_QPrintDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -548,7 +548,7 @@ void PythonQtShell_QPrintDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -570,7 +570,7 @@ void PythonQtShell_QPrintDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -592,7 +592,7 @@ void PythonQtShell_QPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -614,7 +614,7 @@ void PythonQtShell_QPrintDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -636,7 +636,7 @@ int PythonQtShell_QPrintDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -669,7 +669,7 @@ void PythonQtShell_QPrintDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -691,7 +691,7 @@ void PythonQtShell_QPrintDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -713,7 +713,7 @@ void PythonQtShell_QPrintDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -735,7 +735,7 @@ void PythonQtShell_QPrintDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -757,7 +757,7 @@ void PythonQtShell_QPrintDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -779,7 +779,7 @@ void PythonQtShell_QPrintDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -801,7 +801,7 @@ bool PythonQtShell_QPrintDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -834,7 +834,7 @@ bool PythonQtShell_QPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -867,7 +867,7 @@ int PythonQtShell_QPrintDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -900,7 +900,7 @@ void PythonQtShell_QPrintDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -922,7 +922,7 @@ bool PythonQtShell_QPrintDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -955,7 +955,7 @@ void PythonQtShell_QPrintDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -977,7 +977,7 @@ bool PythonQtShell_QPrintDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1010,7 +1010,7 @@ int PythonQtShell_QPrintDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1043,7 +1043,7 @@ void PythonQtShell_QPrintDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1065,7 +1065,7 @@ void PythonQtShell_QPrintDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1087,7 +1087,7 @@ void PythonQtShell_QPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1109,7 +1109,7 @@ QVariant PythonQtShell_QPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1142,7 +1142,7 @@ void PythonQtShell_QPrintDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1164,7 +1164,7 @@ void PythonQtShell_QPrintDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1186,7 +1186,7 @@ void PythonQtShell_QPrintDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1208,7 +1208,7 @@ int PythonQtShell_QPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1241,7 +1241,7 @@ QSize PythonQtShell_QPrintDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1274,7 +1274,7 @@ void PythonQtShell_QPrintDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1296,7 +1296,7 @@ void PythonQtShell_QPrintDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1318,7 +1318,7 @@ void PythonQtShell_QPrintDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1340,7 +1340,7 @@ void PythonQtShell_QPrintDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1362,7 +1362,7 @@ void PythonQtShell_QPrintDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1384,7 +1384,7 @@ bool PythonQtShell_QPrintDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1417,7 +1417,7 @@ QPaintEngine* PythonQtShell_QPrintDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1450,7 +1450,7 @@ void PythonQtShell_QPrintDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1472,7 +1472,7 @@ QPaintDevice* PythonQtShell_QPrintDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1505,7 +1505,7 @@ void PythonQtShell_QPrintDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1527,7 +1527,7 @@ void PythonQtShell_QPrintDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1549,7 +1549,7 @@ void PythonQtShell_QPrintDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1571,7 +1571,7 @@ QPainter* PythonQtShell_QPrintDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1604,7 +1604,7 @@ void PythonQtShell_QPrintDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1626,7 +1626,7 @@ QSize PythonQtShell_QPrintDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1659,7 +1659,7 @@ void PythonQtShell_QPrintDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1681,7 +1681,7 @@ void PythonQtShell_QPrintDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1703,7 +1703,7 @@ void PythonQtShell_QPrintDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1777,7 +1777,7 @@ bool PythonQtShell_QPrintEngine::abort() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1810,7 +1810,7 @@ int PythonQtShell_QPrintEngine::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1843,7 +1843,7 @@ bool PythonQtShell_QPrintEngine::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1876,7 +1876,7 @@ QPrinter::PrinterState PythonQtShell_QPrintEngine::printerState() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("printerState"); + static PyObject* name = PyUnicode_FromString("printerState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPrinter::PrinterState"}; @@ -1909,7 +1909,7 @@ QVariant PythonQtShell_QPrintEngine::property(QPrintEngine::PrintEngineProperty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QPrintEngine::PrintEnginePropertyKey"}; @@ -1942,7 +1942,7 @@ void PythonQtShell_QPrintEngine::setProperty(QPrintEngine::PrintEnginePropertyKe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPrintEngine::PrintEnginePropertyKey" , "const QVariant&"}; @@ -2004,7 +2004,7 @@ void PythonQtShell_QPrintPreviewDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2026,7 +2026,7 @@ void PythonQtShell_QPrintPreviewDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2048,7 +2048,7 @@ void PythonQtShell_QPrintPreviewDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2070,7 +2070,7 @@ void PythonQtShell_QPrintPreviewDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2092,7 +2092,7 @@ void PythonQtShell_QPrintPreviewDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2114,7 +2114,7 @@ void PythonQtShell_QPrintPreviewDialog::contextMenuEvent(QContextMenuEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2136,7 +2136,7 @@ void PythonQtShell_QPrintPreviewDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2158,7 +2158,7 @@ int PythonQtShell_QPrintPreviewDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2191,7 +2191,7 @@ void PythonQtShell_QPrintPreviewDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2213,7 +2213,7 @@ void PythonQtShell_QPrintPreviewDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2235,7 +2235,7 @@ void PythonQtShell_QPrintPreviewDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2257,7 +2257,7 @@ void PythonQtShell_QPrintPreviewDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2279,7 +2279,7 @@ void PythonQtShell_QPrintPreviewDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2301,7 +2301,7 @@ void PythonQtShell_QPrintPreviewDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2323,7 +2323,7 @@ bool PythonQtShell_QPrintPreviewDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2356,7 +2356,7 @@ bool PythonQtShell_QPrintPreviewDialog::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2389,7 +2389,7 @@ int PythonQtShell_QPrintPreviewDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2422,7 +2422,7 @@ void PythonQtShell_QPrintPreviewDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2444,7 +2444,7 @@ bool PythonQtShell_QPrintPreviewDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2477,7 +2477,7 @@ void PythonQtShell_QPrintPreviewDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2499,7 +2499,7 @@ bool PythonQtShell_QPrintPreviewDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2532,7 +2532,7 @@ int PythonQtShell_QPrintPreviewDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2565,7 +2565,7 @@ void PythonQtShell_QPrintPreviewDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2587,7 +2587,7 @@ void PythonQtShell_QPrintPreviewDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2609,7 +2609,7 @@ void PythonQtShell_QPrintPreviewDialog::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2631,7 +2631,7 @@ QVariant PythonQtShell_QPrintPreviewDialog::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2664,7 +2664,7 @@ void PythonQtShell_QPrintPreviewDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2686,7 +2686,7 @@ void PythonQtShell_QPrintPreviewDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2708,7 +2708,7 @@ void PythonQtShell_QPrintPreviewDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2730,7 +2730,7 @@ int PythonQtShell_QPrintPreviewDialog::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2763,7 +2763,7 @@ QSize PythonQtShell_QPrintPreviewDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2796,7 +2796,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseDoubleClickEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2818,7 +2818,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2840,7 +2840,7 @@ void PythonQtShell_QPrintPreviewDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2862,7 +2862,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2884,7 +2884,7 @@ void PythonQtShell_QPrintPreviewDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2906,7 +2906,7 @@ bool PythonQtShell_QPrintPreviewDialog::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2939,7 +2939,7 @@ QPaintEngine* PythonQtShell_QPrintPreviewDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2972,7 +2972,7 @@ void PythonQtShell_QPrintPreviewDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2994,7 +2994,7 @@ QPaintDevice* PythonQtShell_QPrintPreviewDialog::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3027,7 +3027,7 @@ void PythonQtShell_QPrintPreviewDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3049,7 +3049,7 @@ void PythonQtShell_QPrintPreviewDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3071,7 +3071,7 @@ void PythonQtShell_QPrintPreviewDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3093,7 +3093,7 @@ QPainter* PythonQtShell_QPrintPreviewDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3126,7 +3126,7 @@ void PythonQtShell_QPrintPreviewDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3148,7 +3148,7 @@ QSize PythonQtShell_QPrintPreviewDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3181,7 +3181,7 @@ void PythonQtShell_QPrintPreviewDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3203,7 +3203,7 @@ void PythonQtShell_QPrintPreviewDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3225,7 +3225,7 @@ void PythonQtShell_QPrintPreviewDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3284,7 +3284,7 @@ void PythonQtShell_QPrintPreviewWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3306,7 +3306,7 @@ void PythonQtShell_QPrintPreviewWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3328,7 +3328,7 @@ void PythonQtShell_QPrintPreviewWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3350,7 +3350,7 @@ void PythonQtShell_QPrintPreviewWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3372,7 +3372,7 @@ void PythonQtShell_QPrintPreviewWidget::contextMenuEvent(QContextMenuEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3394,7 +3394,7 @@ void PythonQtShell_QPrintPreviewWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3416,7 +3416,7 @@ int PythonQtShell_QPrintPreviewWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3449,7 +3449,7 @@ void PythonQtShell_QPrintPreviewWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3471,7 +3471,7 @@ void PythonQtShell_QPrintPreviewWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3493,7 +3493,7 @@ void PythonQtShell_QPrintPreviewWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3515,7 +3515,7 @@ void PythonQtShell_QPrintPreviewWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3537,7 +3537,7 @@ void PythonQtShell_QPrintPreviewWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3559,7 +3559,7 @@ bool PythonQtShell_QPrintPreviewWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3592,7 +3592,7 @@ bool PythonQtShell_QPrintPreviewWidget::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3625,7 +3625,7 @@ void PythonQtShell_QPrintPreviewWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3647,7 +3647,7 @@ bool PythonQtShell_QPrintPreviewWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3680,7 +3680,7 @@ void PythonQtShell_QPrintPreviewWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3702,7 +3702,7 @@ bool PythonQtShell_QPrintPreviewWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3735,7 +3735,7 @@ int PythonQtShell_QPrintPreviewWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3768,7 +3768,7 @@ void PythonQtShell_QPrintPreviewWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3790,7 +3790,7 @@ void PythonQtShell_QPrintPreviewWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3812,7 +3812,7 @@ void PythonQtShell_QPrintPreviewWidget::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3834,7 +3834,7 @@ QVariant PythonQtShell_QPrintPreviewWidget::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3867,7 +3867,7 @@ void PythonQtShell_QPrintPreviewWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3889,7 +3889,7 @@ void PythonQtShell_QPrintPreviewWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3911,7 +3911,7 @@ void PythonQtShell_QPrintPreviewWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3933,7 +3933,7 @@ int PythonQtShell_QPrintPreviewWidget::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3966,7 +3966,7 @@ QSize PythonQtShell_QPrintPreviewWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3999,7 +3999,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseDoubleClickEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4021,7 +4021,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4043,7 +4043,7 @@ void PythonQtShell_QPrintPreviewWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4065,7 +4065,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4087,7 +4087,7 @@ void PythonQtShell_QPrintPreviewWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4109,7 +4109,7 @@ bool PythonQtShell_QPrintPreviewWidget::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4142,7 +4142,7 @@ QPaintEngine* PythonQtShell_QPrintPreviewWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4175,7 +4175,7 @@ void PythonQtShell_QPrintPreviewWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4197,7 +4197,7 @@ QPaintDevice* PythonQtShell_QPrintPreviewWidget::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4230,7 +4230,7 @@ void PythonQtShell_QPrintPreviewWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4252,7 +4252,7 @@ void PythonQtShell_QPrintPreviewWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4274,7 +4274,7 @@ QPainter* PythonQtShell_QPrintPreviewWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4307,7 +4307,7 @@ void PythonQtShell_QPrintPreviewWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4329,7 +4329,7 @@ QSize PythonQtShell_QPrintPreviewWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4362,7 +4362,7 @@ void PythonQtShell_QPrintPreviewWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4384,7 +4384,7 @@ void PythonQtShell_QPrintPreviewWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4406,7 +4406,7 @@ void PythonQtShell_QPrintPreviewWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4485,7 +4485,7 @@ int PythonQtShell_QPrinter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4518,7 +4518,7 @@ void PythonQtShell_QPrinter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4540,7 +4540,7 @@ int PythonQtShell_QPrinter::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4573,7 +4573,7 @@ bool PythonQtShell_QPrinter::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4606,7 +4606,7 @@ QPaintEngine* PythonQtShell_QPrinter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4639,7 +4639,7 @@ QPaintDevice* PythonQtShell_QPrinter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4672,7 +4672,7 @@ void PythonQtShell_QPrinter::setMargins(const QPagedPaintDevice::Margins& m0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -4694,7 +4694,7 @@ void PythonQtShell_QPrinter::setPageSize(QPagedPaintDevice::PageSize arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -4716,7 +4716,7 @@ void PythonQtShell_QPrinter::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -4738,7 +4738,7 @@ QPainter* PythonQtShell_QPrinter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5254,7 +5254,7 @@ void PythonQtShell_QProgressBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5276,7 +5276,7 @@ void PythonQtShell_QProgressBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5298,7 +5298,7 @@ void PythonQtShell_QProgressBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5320,7 +5320,7 @@ void PythonQtShell_QProgressBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5342,7 +5342,7 @@ void PythonQtShell_QProgressBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5364,7 +5364,7 @@ void PythonQtShell_QProgressBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5386,7 +5386,7 @@ int PythonQtShell_QProgressBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5419,7 +5419,7 @@ void PythonQtShell_QProgressBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5441,7 +5441,7 @@ void PythonQtShell_QProgressBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5463,7 +5463,7 @@ void PythonQtShell_QProgressBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5485,7 +5485,7 @@ void PythonQtShell_QProgressBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5507,7 +5507,7 @@ void PythonQtShell_QProgressBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5529,7 +5529,7 @@ bool PythonQtShell_QProgressBar::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5562,7 +5562,7 @@ bool PythonQtShell_QProgressBar::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5595,7 +5595,7 @@ void PythonQtShell_QProgressBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5617,7 +5617,7 @@ bool PythonQtShell_QProgressBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5650,7 +5650,7 @@ void PythonQtShell_QProgressBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5672,7 +5672,7 @@ bool PythonQtShell_QProgressBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5705,7 +5705,7 @@ int PythonQtShell_QProgressBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5738,7 +5738,7 @@ void PythonQtShell_QProgressBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5760,7 +5760,7 @@ void PythonQtShell_QProgressBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5782,7 +5782,7 @@ void PythonQtShell_QProgressBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5804,7 +5804,7 @@ QVariant PythonQtShell_QProgressBar::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5837,7 +5837,7 @@ void PythonQtShell_QProgressBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5859,7 +5859,7 @@ void PythonQtShell_QProgressBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5881,7 +5881,7 @@ void PythonQtShell_QProgressBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5903,7 +5903,7 @@ int PythonQtShell_QProgressBar::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5936,7 +5936,7 @@ QSize PythonQtShell_QProgressBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5969,7 +5969,7 @@ void PythonQtShell_QProgressBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5991,7 +5991,7 @@ void PythonQtShell_QProgressBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6013,7 +6013,7 @@ void PythonQtShell_QProgressBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6035,7 +6035,7 @@ void PythonQtShell_QProgressBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6057,7 +6057,7 @@ void PythonQtShell_QProgressBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6079,7 +6079,7 @@ bool PythonQtShell_QProgressBar::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6112,7 +6112,7 @@ QPaintEngine* PythonQtShell_QProgressBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6145,7 +6145,7 @@ void PythonQtShell_QProgressBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6167,7 +6167,7 @@ QPaintDevice* PythonQtShell_QProgressBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6200,7 +6200,7 @@ void PythonQtShell_QProgressBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6222,7 +6222,7 @@ void PythonQtShell_QProgressBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6244,7 +6244,7 @@ QPainter* PythonQtShell_QProgressBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6277,7 +6277,7 @@ void PythonQtShell_QProgressBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6299,7 +6299,7 @@ QSize PythonQtShell_QProgressBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6332,7 +6332,7 @@ void PythonQtShell_QProgressBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6354,7 +6354,7 @@ QString PythonQtShell_QProgressBar::text() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("text"); + static PyObject* name = PyUnicode_FromString("text"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6387,7 +6387,7 @@ void PythonQtShell_QProgressBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6409,7 +6409,7 @@ void PythonQtShell_QProgressBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6549,7 +6549,7 @@ void PythonQtShell_QProgressDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6571,7 +6571,7 @@ void PythonQtShell_QProgressDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6593,7 +6593,7 @@ void PythonQtShell_QProgressDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6615,7 +6615,7 @@ void PythonQtShell_QProgressDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6637,7 +6637,7 @@ void PythonQtShell_QProgressDialog::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6659,7 +6659,7 @@ void PythonQtShell_QProgressDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6681,7 +6681,7 @@ void PythonQtShell_QProgressDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6703,7 +6703,7 @@ int PythonQtShell_QProgressDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6736,7 +6736,7 @@ void PythonQtShell_QProgressDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6758,7 +6758,7 @@ void PythonQtShell_QProgressDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6780,7 +6780,7 @@ void PythonQtShell_QProgressDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6802,7 +6802,7 @@ void PythonQtShell_QProgressDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6824,7 +6824,7 @@ void PythonQtShell_QProgressDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6846,7 +6846,7 @@ void PythonQtShell_QProgressDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6868,7 +6868,7 @@ bool PythonQtShell_QProgressDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6901,7 +6901,7 @@ bool PythonQtShell_QProgressDialog::eventFilter(QObject* arg__1, QEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6934,7 +6934,7 @@ int PythonQtShell_QProgressDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6967,7 +6967,7 @@ void PythonQtShell_QProgressDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6989,7 +6989,7 @@ bool PythonQtShell_QProgressDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7022,7 +7022,7 @@ void PythonQtShell_QProgressDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7044,7 +7044,7 @@ bool PythonQtShell_QProgressDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7077,7 +7077,7 @@ int PythonQtShell_QProgressDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7110,7 +7110,7 @@ void PythonQtShell_QProgressDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7132,7 +7132,7 @@ void PythonQtShell_QProgressDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7154,7 +7154,7 @@ void PythonQtShell_QProgressDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7176,7 +7176,7 @@ QVariant PythonQtShell_QProgressDialog::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7209,7 +7209,7 @@ void PythonQtShell_QProgressDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7231,7 +7231,7 @@ void PythonQtShell_QProgressDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7253,7 +7253,7 @@ void PythonQtShell_QProgressDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7275,7 +7275,7 @@ int PythonQtShell_QProgressDialog::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7308,7 +7308,7 @@ QSize PythonQtShell_QProgressDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7341,7 +7341,7 @@ void PythonQtShell_QProgressDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7363,7 +7363,7 @@ void PythonQtShell_QProgressDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7385,7 +7385,7 @@ void PythonQtShell_QProgressDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7407,7 +7407,7 @@ void PythonQtShell_QProgressDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7429,7 +7429,7 @@ void PythonQtShell_QProgressDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7451,7 +7451,7 @@ bool PythonQtShell_QProgressDialog::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7484,7 +7484,7 @@ QPaintEngine* PythonQtShell_QProgressDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7517,7 +7517,7 @@ void PythonQtShell_QProgressDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7539,7 +7539,7 @@ QPaintDevice* PythonQtShell_QProgressDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7572,7 +7572,7 @@ void PythonQtShell_QProgressDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7594,7 +7594,7 @@ void PythonQtShell_QProgressDialog::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7616,7 +7616,7 @@ void PythonQtShell_QProgressDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7638,7 +7638,7 @@ QPainter* PythonQtShell_QProgressDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7671,7 +7671,7 @@ void PythonQtShell_QProgressDialog::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7693,7 +7693,7 @@ QSize PythonQtShell_QProgressDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7726,7 +7726,7 @@ void PythonQtShell_QProgressDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7748,7 +7748,7 @@ void PythonQtShell_QProgressDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7770,7 +7770,7 @@ void PythonQtShell_QProgressDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7889,7 +7889,7 @@ void PythonQtShell_QProxyStyle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7911,7 +7911,7 @@ void PythonQtShell_QProxyStyle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7933,7 +7933,7 @@ void PythonQtShell_QProxyStyle::drawComplexControl(QStyle::ComplexControl contr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -7955,7 +7955,7 @@ void PythonQtShell_QProxyStyle::drawControl(QStyle::ControlElement element0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -7977,7 +7977,7 @@ void PythonQtShell_QProxyStyle::drawItemPixmap(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -7999,7 +7999,7 @@ void PythonQtShell_QProxyStyle::drawItemText(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -8021,7 +8021,7 @@ void PythonQtShell_QProxyStyle::drawPrimitive(QStyle::PrimitiveElement element0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -8043,7 +8043,7 @@ bool PythonQtShell_QProxyStyle::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8076,7 +8076,7 @@ bool PythonQtShell_QProxyStyle::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8109,7 +8109,7 @@ QPixmap PythonQtShell_QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -8142,7 +8142,7 @@ QStyle::SubControl PythonQtShell_QProxyStyle::hitTestComplexControl(QStyle::Com if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -8175,7 +8175,7 @@ QRect PythonQtShell_QProxyStyle::itemPixmapRect(const QRect& r0, int flags1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -8208,7 +8208,7 @@ QRect PythonQtShell_QProxyStyle::itemTextRect(const QFontMetrics& fm0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemTextRect"); + static PyObject* name = PyUnicode_FromString("itemTextRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QFontMetrics&" , "const QRect&" , "int" , "bool" , "const QString&"}; @@ -8241,7 +8241,7 @@ int PythonQtShell_QProxyStyle::layoutSpacing(QSizePolicy::ControlType control1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -8274,7 +8274,7 @@ int PythonQtShell_QProxyStyle::pixelMetric(QStyle::PixelMetric metric0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -8307,7 +8307,7 @@ void PythonQtShell_QProxyStyle::polish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -8329,7 +8329,7 @@ void PythonQtShell_QProxyStyle::polish(QPalette& pal0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -8351,7 +8351,7 @@ void PythonQtShell_QProxyStyle::polish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8373,7 +8373,7 @@ QSize PythonQtShell_QProxyStyle::sizeFromContents(QStyle::ContentsType type0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -8406,7 +8406,7 @@ QIcon PythonQtShell_QProxyStyle::standardIcon(QStyle::StandardPixmap standardI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -8439,7 +8439,7 @@ QPalette PythonQtShell_QProxyStyle::standardPalette() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -8472,7 +8472,7 @@ QPixmap PythonQtShell_QProxyStyle::standardPixmap(QStyle::StandardPixmap stand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -8505,7 +8505,7 @@ int PythonQtShell_QProxyStyle::styleHint(QStyle::StyleHint hint0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -8538,7 +8538,7 @@ QRect PythonQtShell_QProxyStyle::subControlRect(QStyle::ComplexControl cc0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -8571,7 +8571,7 @@ QRect PythonQtShell_QProxyStyle::subElementRect(QStyle::SubElement element0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -8604,7 +8604,7 @@ void PythonQtShell_QProxyStyle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8626,7 +8626,7 @@ void PythonQtShell_QProxyStyle::unpolish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -8648,7 +8648,7 @@ void PythonQtShell_QProxyStyle::unpolish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8712,7 +8712,7 @@ void PythonQtShell_QPushButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8734,7 +8734,7 @@ void PythonQtShell_QPushButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8756,7 +8756,7 @@ void PythonQtShell_QPushButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8778,7 +8778,7 @@ void PythonQtShell_QPushButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8800,7 +8800,7 @@ void PythonQtShell_QPushButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8822,7 +8822,7 @@ void PythonQtShell_QPushButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8844,7 +8844,7 @@ void PythonQtShell_QPushButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8866,7 +8866,7 @@ int PythonQtShell_QPushButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8899,7 +8899,7 @@ void PythonQtShell_QPushButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8921,7 +8921,7 @@ void PythonQtShell_QPushButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8943,7 +8943,7 @@ void PythonQtShell_QPushButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8965,7 +8965,7 @@ void PythonQtShell_QPushButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8987,7 +8987,7 @@ void PythonQtShell_QPushButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9009,7 +9009,7 @@ bool PythonQtShell_QPushButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9042,7 +9042,7 @@ bool PythonQtShell_QPushButton::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9075,7 +9075,7 @@ void PythonQtShell_QPushButton::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9097,7 +9097,7 @@ bool PythonQtShell_QPushButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9130,7 +9130,7 @@ void PythonQtShell_QPushButton::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9152,7 +9152,7 @@ bool PythonQtShell_QPushButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9185,7 +9185,7 @@ int PythonQtShell_QPushButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9218,7 +9218,7 @@ void PythonQtShell_QPushButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9240,7 +9240,7 @@ bool PythonQtShell_QPushButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -9273,7 +9273,7 @@ void PythonQtShell_QPushButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9295,7 +9295,7 @@ void PythonQtShell_QPushButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9317,7 +9317,7 @@ QVariant PythonQtShell_QPushButton::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9350,7 +9350,7 @@ void PythonQtShell_QPushButton::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9372,7 +9372,7 @@ void PythonQtShell_QPushButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9394,7 +9394,7 @@ void PythonQtShell_QPushButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9416,7 +9416,7 @@ int PythonQtShell_QPushButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9449,7 +9449,7 @@ QSize PythonQtShell_QPushButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9482,7 +9482,7 @@ void PythonQtShell_QPushButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9504,7 +9504,7 @@ void PythonQtShell_QPushButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9526,7 +9526,7 @@ void PythonQtShell_QPushButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9548,7 +9548,7 @@ void PythonQtShell_QPushButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9570,7 +9570,7 @@ void PythonQtShell_QPushButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9592,7 +9592,7 @@ bool PythonQtShell_QPushButton::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9625,7 +9625,7 @@ void PythonQtShell_QPushButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9647,7 +9647,7 @@ QPaintEngine* PythonQtShell_QPushButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9680,7 +9680,7 @@ void PythonQtShell_QPushButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9702,7 +9702,7 @@ QPaintDevice* PythonQtShell_QPushButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9735,7 +9735,7 @@ void PythonQtShell_QPushButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9757,7 +9757,7 @@ void PythonQtShell_QPushButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9779,7 +9779,7 @@ QPainter* PythonQtShell_QPushButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9812,7 +9812,7 @@ void PythonQtShell_QPushButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9834,7 +9834,7 @@ QSize PythonQtShell_QPushButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9867,7 +9867,7 @@ void PythonQtShell_QPushButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9889,7 +9889,7 @@ void PythonQtShell_QPushButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9911,7 +9911,7 @@ void PythonQtShell_QPushButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10394,7 +10394,7 @@ void PythonQtShell_QRadioButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10416,7 +10416,7 @@ void PythonQtShell_QRadioButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10438,7 +10438,7 @@ void PythonQtShell_QRadioButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10460,7 +10460,7 @@ void PythonQtShell_QRadioButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10482,7 +10482,7 @@ void PythonQtShell_QRadioButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10504,7 +10504,7 @@ void PythonQtShell_QRadioButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10526,7 +10526,7 @@ void PythonQtShell_QRadioButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10548,7 +10548,7 @@ int PythonQtShell_QRadioButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10581,7 +10581,7 @@ void PythonQtShell_QRadioButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10603,7 +10603,7 @@ void PythonQtShell_QRadioButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10625,7 +10625,7 @@ void PythonQtShell_QRadioButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10647,7 +10647,7 @@ void PythonQtShell_QRadioButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10669,7 +10669,7 @@ void PythonQtShell_QRadioButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10691,7 +10691,7 @@ bool PythonQtShell_QRadioButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10724,7 +10724,7 @@ bool PythonQtShell_QRadioButton::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10757,7 +10757,7 @@ void PythonQtShell_QRadioButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10779,7 +10779,7 @@ bool PythonQtShell_QRadioButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10812,7 +10812,7 @@ void PythonQtShell_QRadioButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10834,7 +10834,7 @@ bool PythonQtShell_QRadioButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10867,7 +10867,7 @@ int PythonQtShell_QRadioButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10900,7 +10900,7 @@ void PythonQtShell_QRadioButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10922,7 +10922,7 @@ bool PythonQtShell_QRadioButton::hitButton(const QPoint& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -10955,7 +10955,7 @@ void PythonQtShell_QRadioButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10977,7 +10977,7 @@ void PythonQtShell_QRadioButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10999,7 +10999,7 @@ QVariant PythonQtShell_QRadioButton::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11032,7 +11032,7 @@ void PythonQtShell_QRadioButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11054,7 +11054,7 @@ void PythonQtShell_QRadioButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11076,7 +11076,7 @@ void PythonQtShell_QRadioButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11098,7 +11098,7 @@ int PythonQtShell_QRadioButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11131,7 +11131,7 @@ QSize PythonQtShell_QRadioButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11164,7 +11164,7 @@ void PythonQtShell_QRadioButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11186,7 +11186,7 @@ void PythonQtShell_QRadioButton::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11208,7 +11208,7 @@ void PythonQtShell_QRadioButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11230,7 +11230,7 @@ void PythonQtShell_QRadioButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11252,7 +11252,7 @@ void PythonQtShell_QRadioButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11274,7 +11274,7 @@ bool PythonQtShell_QRadioButton::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11307,7 +11307,7 @@ void PythonQtShell_QRadioButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11329,7 +11329,7 @@ QPaintEngine* PythonQtShell_QRadioButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11362,7 +11362,7 @@ void PythonQtShell_QRadioButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11384,7 +11384,7 @@ QPaintDevice* PythonQtShell_QRadioButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11417,7 +11417,7 @@ void PythonQtShell_QRadioButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11439,7 +11439,7 @@ void PythonQtShell_QRadioButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11461,7 +11461,7 @@ QPainter* PythonQtShell_QRadioButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11494,7 +11494,7 @@ void PythonQtShell_QRadioButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11516,7 +11516,7 @@ QSize PythonQtShell_QRadioButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11549,7 +11549,7 @@ void PythonQtShell_QRadioButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11571,7 +11571,7 @@ void PythonQtShell_QRadioButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11593,7 +11593,7 @@ void PythonQtShell_QRadioButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11657,7 +11657,7 @@ void PythonQtShell_QRasterWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11679,7 +11679,7 @@ void PythonQtShell_QRasterWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11701,7 +11701,7 @@ int PythonQtShell_QRasterWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11734,7 +11734,7 @@ bool PythonQtShell_QRasterWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11767,7 +11767,7 @@ bool PythonQtShell_QRasterWindow::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11800,7 +11800,7 @@ void PythonQtShell_QRasterWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -11822,7 +11822,7 @@ void PythonQtShell_QRasterWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11844,7 +11844,7 @@ QObject* PythonQtShell_QRasterWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -11877,7 +11877,7 @@ void PythonQtShell_QRasterWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11899,7 +11899,7 @@ QSurfaceFormat PythonQtShell_QRasterWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -11932,7 +11932,7 @@ void PythonQtShell_QRasterWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11954,7 +11954,7 @@ void PythonQtShell_QRasterWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11976,7 +11976,7 @@ void PythonQtShell_QRasterWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11998,7 +11998,7 @@ void PythonQtShell_QRasterWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12020,7 +12020,7 @@ int PythonQtShell_QRasterWindow::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12053,7 +12053,7 @@ void PythonQtShell_QRasterWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12075,7 +12075,7 @@ void PythonQtShell_QRasterWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12097,7 +12097,7 @@ void PythonQtShell_QRasterWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12119,7 +12119,7 @@ void PythonQtShell_QRasterWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12141,7 +12141,7 @@ void PythonQtShell_QRasterWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12163,7 +12163,7 @@ bool PythonQtShell_QRasterWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12196,7 +12196,7 @@ void PythonQtShell_QRasterWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12218,7 +12218,7 @@ QPaintDevice* PythonQtShell_QRasterWindow::redirected(QPoint* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12251,7 +12251,7 @@ void PythonQtShell_QRasterWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12273,7 +12273,7 @@ QPainter* PythonQtShell_QRasterWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12306,7 +12306,7 @@ void PythonQtShell_QRasterWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12328,7 +12328,7 @@ QSize PythonQtShell_QRasterWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12361,7 +12361,7 @@ QSurface::SurfaceType PythonQtShell_QRasterWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -12394,7 +12394,7 @@ void PythonQtShell_QRasterWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12416,7 +12416,7 @@ void PythonQtShell_QRasterWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12438,7 +12438,7 @@ void PythonQtShell_QRasterWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -12460,7 +12460,7 @@ void PythonQtShell_QRasterWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12713,7 +12713,7 @@ void PythonQtShell_QRegExpValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12735,7 +12735,7 @@ void PythonQtShell_QRegExpValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12757,7 +12757,7 @@ bool PythonQtShell_QRegExpValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12790,7 +12790,7 @@ bool PythonQtShell_QRegExpValidator::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12823,7 +12823,7 @@ void PythonQtShell_QRegExpValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -12845,7 +12845,7 @@ void PythonQtShell_QRegExpValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12867,7 +12867,7 @@ QValidator::State PythonQtShell_QRegExpValidator::validate(QString& input0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12937,7 +12937,7 @@ void PythonQtShell_QRegularExpressionValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12959,7 +12959,7 @@ void PythonQtShell_QRegularExpressionValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12981,7 +12981,7 @@ bool PythonQtShell_QRegularExpressionValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13014,7 +13014,7 @@ bool PythonQtShell_QRegularExpressionValidator::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13047,7 +13047,7 @@ void PythonQtShell_QRegularExpressionValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -13069,7 +13069,7 @@ void PythonQtShell_QRegularExpressionValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13091,7 +13091,7 @@ QValidator::State PythonQtShell_QRegularExpressionValidator::validate(QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -13297,7 +13297,7 @@ void PythonQtShell_QRubberBand::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13319,7 +13319,7 @@ void PythonQtShell_QRubberBand::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13341,7 +13341,7 @@ void PythonQtShell_QRubberBand::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13363,7 +13363,7 @@ void PythonQtShell_QRubberBand::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13385,7 +13385,7 @@ void PythonQtShell_QRubberBand::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13407,7 +13407,7 @@ void PythonQtShell_QRubberBand::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13429,7 +13429,7 @@ int PythonQtShell_QRubberBand::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13462,7 +13462,7 @@ void PythonQtShell_QRubberBand::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13484,7 +13484,7 @@ void PythonQtShell_QRubberBand::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13506,7 +13506,7 @@ void PythonQtShell_QRubberBand::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13528,7 +13528,7 @@ void PythonQtShell_QRubberBand::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13550,7 +13550,7 @@ void PythonQtShell_QRubberBand::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13572,7 +13572,7 @@ bool PythonQtShell_QRubberBand::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13605,7 +13605,7 @@ bool PythonQtShell_QRubberBand::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13638,7 +13638,7 @@ void PythonQtShell_QRubberBand::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13660,7 +13660,7 @@ bool PythonQtShell_QRubberBand::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13693,7 +13693,7 @@ void PythonQtShell_QRubberBand::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13715,7 +13715,7 @@ bool PythonQtShell_QRubberBand::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13748,7 +13748,7 @@ int PythonQtShell_QRubberBand::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13781,7 +13781,7 @@ void PythonQtShell_QRubberBand::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13803,7 +13803,7 @@ void PythonQtShell_QRubberBand::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13825,7 +13825,7 @@ void PythonQtShell_QRubberBand::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13847,7 +13847,7 @@ QVariant PythonQtShell_QRubberBand::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13880,7 +13880,7 @@ void PythonQtShell_QRubberBand::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13902,7 +13902,7 @@ void PythonQtShell_QRubberBand::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13924,7 +13924,7 @@ void PythonQtShell_QRubberBand::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13946,7 +13946,7 @@ int PythonQtShell_QRubberBand::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13979,7 +13979,7 @@ QSize PythonQtShell_QRubberBand::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14012,7 +14012,7 @@ void PythonQtShell_QRubberBand::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14034,7 +14034,7 @@ void PythonQtShell_QRubberBand::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14056,7 +14056,7 @@ void PythonQtShell_QRubberBand::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14078,7 +14078,7 @@ void PythonQtShell_QRubberBand::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14100,7 +14100,7 @@ void PythonQtShell_QRubberBand::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14122,7 +14122,7 @@ bool PythonQtShell_QRubberBand::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14155,7 +14155,7 @@ QPaintEngine* PythonQtShell_QRubberBand::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14188,7 +14188,7 @@ void PythonQtShell_QRubberBand::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14210,7 +14210,7 @@ QPaintDevice* PythonQtShell_QRubberBand::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14243,7 +14243,7 @@ void PythonQtShell_QRubberBand::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14265,7 +14265,7 @@ void PythonQtShell_QRubberBand::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14287,7 +14287,7 @@ QPainter* PythonQtShell_QRubberBand::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14320,7 +14320,7 @@ void PythonQtShell_QRubberBand::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14342,7 +14342,7 @@ QSize PythonQtShell_QRubberBand::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14375,7 +14375,7 @@ void PythonQtShell_QRubberBand::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14397,7 +14397,7 @@ void PythonQtShell_QRubberBand::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14419,7 +14419,7 @@ void PythonQtShell_QRubberBand::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14704,7 +14704,7 @@ void PythonQtShell_QScrollArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14726,7 +14726,7 @@ void PythonQtShell_QScrollArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14748,7 +14748,7 @@ void PythonQtShell_QScrollArea::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14770,7 +14770,7 @@ void PythonQtShell_QScrollArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14792,7 +14792,7 @@ void PythonQtShell_QScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14814,7 +14814,7 @@ void PythonQtShell_QScrollArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14836,7 +14836,7 @@ int PythonQtShell_QScrollArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14869,7 +14869,7 @@ void PythonQtShell_QScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14891,7 +14891,7 @@ void PythonQtShell_QScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14913,7 +14913,7 @@ void PythonQtShell_QScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14935,7 +14935,7 @@ void PythonQtShell_QScrollArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14957,7 +14957,7 @@ void PythonQtShell_QScrollArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14979,7 +14979,7 @@ bool PythonQtShell_QScrollArea::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15012,7 +15012,7 @@ bool PythonQtShell_QScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15045,7 +15045,7 @@ void PythonQtShell_QScrollArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15067,7 +15067,7 @@ bool PythonQtShell_QScrollArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15100,7 +15100,7 @@ void PythonQtShell_QScrollArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15122,7 +15122,7 @@ bool PythonQtShell_QScrollArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15155,7 +15155,7 @@ int PythonQtShell_QScrollArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15188,7 +15188,7 @@ void PythonQtShell_QScrollArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15210,7 +15210,7 @@ void PythonQtShell_QScrollArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15232,7 +15232,7 @@ void PythonQtShell_QScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15254,7 +15254,7 @@ QVariant PythonQtShell_QScrollArea::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15287,7 +15287,7 @@ void PythonQtShell_QScrollArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15309,7 +15309,7 @@ void PythonQtShell_QScrollArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15331,7 +15331,7 @@ void PythonQtShell_QScrollArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15353,7 +15353,7 @@ int PythonQtShell_QScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15386,7 +15386,7 @@ QSize PythonQtShell_QScrollArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15419,7 +15419,7 @@ void PythonQtShell_QScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15441,7 +15441,7 @@ void PythonQtShell_QScrollArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15463,7 +15463,7 @@ void PythonQtShell_QScrollArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15485,7 +15485,7 @@ void PythonQtShell_QScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15507,7 +15507,7 @@ void PythonQtShell_QScrollArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15529,7 +15529,7 @@ bool PythonQtShell_QScrollArea::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15562,7 +15562,7 @@ QPaintEngine* PythonQtShell_QScrollArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15595,7 +15595,7 @@ void PythonQtShell_QScrollArea::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15617,7 +15617,7 @@ QPaintDevice* PythonQtShell_QScrollArea::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15650,7 +15650,7 @@ void PythonQtShell_QScrollArea::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15672,7 +15672,7 @@ void PythonQtShell_QScrollArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -15694,7 +15694,7 @@ void PythonQtShell_QScrollArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15716,7 +15716,7 @@ void PythonQtShell_QScrollArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -15738,7 +15738,7 @@ QPainter* PythonQtShell_QScrollArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15771,7 +15771,7 @@ void PythonQtShell_QScrollArea::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15793,7 +15793,7 @@ QSize PythonQtShell_QScrollArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15826,7 +15826,7 @@ void PythonQtShell_QScrollArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15848,7 +15848,7 @@ void PythonQtShell_QScrollArea::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15870,7 +15870,7 @@ bool PythonQtShell_QScrollArea::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15903,7 +15903,7 @@ QSize PythonQtShell_QScrollArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15936,7 +15936,7 @@ void PythonQtShell_QScrollArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16026,7 +16026,7 @@ void PythonQtShell_QScrollBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16048,7 +16048,7 @@ void PythonQtShell_QScrollBar::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16070,7 +16070,7 @@ void PythonQtShell_QScrollBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16092,7 +16092,7 @@ void PythonQtShell_QScrollBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16114,7 +16114,7 @@ void PythonQtShell_QScrollBar::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16136,7 +16136,7 @@ void PythonQtShell_QScrollBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16158,7 +16158,7 @@ int PythonQtShell_QScrollBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16191,7 +16191,7 @@ void PythonQtShell_QScrollBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16213,7 +16213,7 @@ void PythonQtShell_QScrollBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16235,7 +16235,7 @@ void PythonQtShell_QScrollBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16257,7 +16257,7 @@ void PythonQtShell_QScrollBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16279,7 +16279,7 @@ void PythonQtShell_QScrollBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16301,7 +16301,7 @@ bool PythonQtShell_QScrollBar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16334,7 +16334,7 @@ bool PythonQtShell_QScrollBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16367,7 +16367,7 @@ void PythonQtShell_QScrollBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16389,7 +16389,7 @@ bool PythonQtShell_QScrollBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16422,7 +16422,7 @@ void PythonQtShell_QScrollBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16444,7 +16444,7 @@ bool PythonQtShell_QScrollBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16477,7 +16477,7 @@ int PythonQtShell_QScrollBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16510,7 +16510,7 @@ void PythonQtShell_QScrollBar::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16532,7 +16532,7 @@ void PythonQtShell_QScrollBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16554,7 +16554,7 @@ void PythonQtShell_QScrollBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16576,7 +16576,7 @@ QVariant PythonQtShell_QScrollBar::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16609,7 +16609,7 @@ void PythonQtShell_QScrollBar::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16631,7 +16631,7 @@ void PythonQtShell_QScrollBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16653,7 +16653,7 @@ void PythonQtShell_QScrollBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16675,7 +16675,7 @@ int PythonQtShell_QScrollBar::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16708,7 +16708,7 @@ QSize PythonQtShell_QScrollBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16741,7 +16741,7 @@ void PythonQtShell_QScrollBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16763,7 +16763,7 @@ void PythonQtShell_QScrollBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16785,7 +16785,7 @@ void PythonQtShell_QScrollBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16807,7 +16807,7 @@ void PythonQtShell_QScrollBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16829,7 +16829,7 @@ void PythonQtShell_QScrollBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16851,7 +16851,7 @@ bool PythonQtShell_QScrollBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16884,7 +16884,7 @@ QPaintEngine* PythonQtShell_QScrollBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16917,7 +16917,7 @@ void PythonQtShell_QScrollBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16939,7 +16939,7 @@ QPaintDevice* PythonQtShell_QScrollBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16972,7 +16972,7 @@ void PythonQtShell_QScrollBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16994,7 +16994,7 @@ void PythonQtShell_QScrollBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -17016,7 +17016,7 @@ QPainter* PythonQtShell_QScrollBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17049,7 +17049,7 @@ void PythonQtShell_QScrollBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17071,7 +17071,7 @@ QSize PythonQtShell_QScrollBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17104,7 +17104,7 @@ void PythonQtShell_QScrollBar::sliderChange(QAbstractSlider::SliderChange chang if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -17126,7 +17126,7 @@ void PythonQtShell_QScrollBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17148,7 +17148,7 @@ void PythonQtShell_QScrollBar::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17170,7 +17170,7 @@ void PythonQtShell_QScrollBar::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp index 778fda6bd..80479ff53 100644 --- a/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp @@ -153,7 +153,7 @@ void PythonQtShell_QShortcut::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -175,7 +175,7 @@ void PythonQtShell_QShortcut::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -197,7 +197,7 @@ bool PythonQtShell_QShortcut::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -230,7 +230,7 @@ bool PythonQtShell_QShortcut::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -263,7 +263,7 @@ void PythonQtShell_QShortcut::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -403,7 +403,7 @@ void PythonQtShell_QSizeGrip::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -425,7 +425,7 @@ void PythonQtShell_QSizeGrip::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -447,7 +447,7 @@ void PythonQtShell_QSizeGrip::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -469,7 +469,7 @@ void PythonQtShell_QSizeGrip::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -491,7 +491,7 @@ void PythonQtShell_QSizeGrip::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -513,7 +513,7 @@ void PythonQtShell_QSizeGrip::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -535,7 +535,7 @@ int PythonQtShell_QSizeGrip::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -568,7 +568,7 @@ void PythonQtShell_QSizeGrip::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -590,7 +590,7 @@ void PythonQtShell_QSizeGrip::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -612,7 +612,7 @@ void PythonQtShell_QSizeGrip::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -634,7 +634,7 @@ void PythonQtShell_QSizeGrip::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -656,7 +656,7 @@ void PythonQtShell_QSizeGrip::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -678,7 +678,7 @@ bool PythonQtShell_QSizeGrip::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -711,7 +711,7 @@ bool PythonQtShell_QSizeGrip::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -744,7 +744,7 @@ void PythonQtShell_QSizeGrip::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -766,7 +766,7 @@ bool PythonQtShell_QSizeGrip::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -799,7 +799,7 @@ void PythonQtShell_QSizeGrip::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -821,7 +821,7 @@ bool PythonQtShell_QSizeGrip::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -854,7 +854,7 @@ int PythonQtShell_QSizeGrip::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -887,7 +887,7 @@ void PythonQtShell_QSizeGrip::hideEvent(QHideEvent* hideEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -909,7 +909,7 @@ void PythonQtShell_QSizeGrip::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -931,7 +931,7 @@ void PythonQtShell_QSizeGrip::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -953,7 +953,7 @@ QVariant PythonQtShell_QSizeGrip::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -986,7 +986,7 @@ void PythonQtShell_QSizeGrip::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1008,7 +1008,7 @@ void PythonQtShell_QSizeGrip::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1030,7 +1030,7 @@ void PythonQtShell_QSizeGrip::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1052,7 +1052,7 @@ int PythonQtShell_QSizeGrip::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1085,7 +1085,7 @@ QSize PythonQtShell_QSizeGrip::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1118,7 +1118,7 @@ void PythonQtShell_QSizeGrip::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1140,7 +1140,7 @@ void PythonQtShell_QSizeGrip::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1162,7 +1162,7 @@ void PythonQtShell_QSizeGrip::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1184,7 +1184,7 @@ void PythonQtShell_QSizeGrip::mouseReleaseEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1206,7 +1206,7 @@ void PythonQtShell_QSizeGrip::moveEvent(QMoveEvent* moveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1228,7 +1228,7 @@ bool PythonQtShell_QSizeGrip::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1261,7 +1261,7 @@ QPaintEngine* PythonQtShell_QSizeGrip::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1294,7 +1294,7 @@ void PythonQtShell_QSizeGrip::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1316,7 +1316,7 @@ QPaintDevice* PythonQtShell_QSizeGrip::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1349,7 +1349,7 @@ void PythonQtShell_QSizeGrip::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1371,7 +1371,7 @@ void PythonQtShell_QSizeGrip::setVisible(bool arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1393,7 +1393,7 @@ QPainter* PythonQtShell_QSizeGrip::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1426,7 +1426,7 @@ void PythonQtShell_QSizeGrip::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1448,7 +1448,7 @@ QSize PythonQtShell_QSizeGrip::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1481,7 +1481,7 @@ void PythonQtShell_QSizeGrip::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1503,7 +1503,7 @@ void PythonQtShell_QSizeGrip::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1525,7 +1525,7 @@ void PythonQtShell_QSizeGrip::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1575,7 +1575,7 @@ void PythonQtShell_QSlider::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1597,7 +1597,7 @@ void PythonQtShell_QSlider::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1619,7 +1619,7 @@ void PythonQtShell_QSlider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1641,7 +1641,7 @@ void PythonQtShell_QSlider::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1663,7 +1663,7 @@ void PythonQtShell_QSlider::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1685,7 +1685,7 @@ void PythonQtShell_QSlider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1707,7 +1707,7 @@ int PythonQtShell_QSlider::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1740,7 +1740,7 @@ void PythonQtShell_QSlider::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1762,7 +1762,7 @@ void PythonQtShell_QSlider::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1784,7 +1784,7 @@ void PythonQtShell_QSlider::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1806,7 +1806,7 @@ void PythonQtShell_QSlider::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1828,7 +1828,7 @@ void PythonQtShell_QSlider::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1850,7 +1850,7 @@ bool PythonQtShell_QSlider::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1883,7 +1883,7 @@ bool PythonQtShell_QSlider::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1916,7 +1916,7 @@ void PythonQtShell_QSlider::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1938,7 +1938,7 @@ bool PythonQtShell_QSlider::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1971,7 +1971,7 @@ void PythonQtShell_QSlider::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1993,7 +1993,7 @@ bool PythonQtShell_QSlider::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2026,7 +2026,7 @@ int PythonQtShell_QSlider::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2059,7 +2059,7 @@ void PythonQtShell_QSlider::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2081,7 +2081,7 @@ void PythonQtShell_QSlider::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2103,7 +2103,7 @@ void PythonQtShell_QSlider::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2125,7 +2125,7 @@ QVariant PythonQtShell_QSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2158,7 +2158,7 @@ void PythonQtShell_QSlider::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2180,7 +2180,7 @@ void PythonQtShell_QSlider::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2202,7 +2202,7 @@ void PythonQtShell_QSlider::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2224,7 +2224,7 @@ int PythonQtShell_QSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2257,7 +2257,7 @@ QSize PythonQtShell_QSlider::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2290,7 +2290,7 @@ void PythonQtShell_QSlider::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2312,7 +2312,7 @@ void PythonQtShell_QSlider::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2334,7 +2334,7 @@ void PythonQtShell_QSlider::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2356,7 +2356,7 @@ void PythonQtShell_QSlider::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2378,7 +2378,7 @@ void PythonQtShell_QSlider::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2400,7 +2400,7 @@ bool PythonQtShell_QSlider::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2433,7 +2433,7 @@ QPaintEngine* PythonQtShell_QSlider::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2466,7 +2466,7 @@ void PythonQtShell_QSlider::paintEvent(QPaintEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2488,7 +2488,7 @@ QPaintDevice* PythonQtShell_QSlider::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2521,7 +2521,7 @@ void PythonQtShell_QSlider::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2543,7 +2543,7 @@ void PythonQtShell_QSlider::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2565,7 +2565,7 @@ QPainter* PythonQtShell_QSlider::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2598,7 +2598,7 @@ void PythonQtShell_QSlider::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2620,7 +2620,7 @@ QSize PythonQtShell_QSlider::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2653,7 +2653,7 @@ void PythonQtShell_QSlider::sliderChange(QAbstractSlider::SliderChange change0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -2675,7 +2675,7 @@ void PythonQtShell_QSlider::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2697,7 +2697,7 @@ void PythonQtShell_QSlider::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2719,7 +2719,7 @@ void PythonQtShell_QSlider::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2803,7 +2803,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::buddy(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2836,7 +2836,7 @@ bool PythonQtShell_QSortFilterProxyModel::canDropMimeData(const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2869,7 +2869,7 @@ bool PythonQtShell_QSortFilterProxyModel::canFetchMore(const QModelIndex& pare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2902,7 +2902,7 @@ void PythonQtShell_QSortFilterProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2924,7 +2924,7 @@ int PythonQtShell_QSortFilterProxyModel::columnCount(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2957,7 +2957,7 @@ void PythonQtShell_QSortFilterProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2979,7 +2979,7 @@ QVariant PythonQtShell_QSortFilterProxyModel::data(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3012,7 +3012,7 @@ bool PythonQtShell_QSortFilterProxyModel::dropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3045,7 +3045,7 @@ bool PythonQtShell_QSortFilterProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3078,7 +3078,7 @@ bool PythonQtShell_QSortFilterProxyModel::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3111,7 +3111,7 @@ void PythonQtShell_QSortFilterProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3133,7 +3133,7 @@ bool PythonQtShell_QSortFilterProxyModel::filterAcceptsColumn(int source_colum if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("filterAcceptsColumn"); + static PyObject* name = PyUnicode_FromString("filterAcceptsColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -3166,7 +3166,7 @@ bool PythonQtShell_QSortFilterProxyModel::filterAcceptsRow(int source_row0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("filterAcceptsRow"); + static PyObject* name = PyUnicode_FromString("filterAcceptsRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -3199,7 +3199,7 @@ Qt::ItemFlags PythonQtShell_QSortFilterProxyModel::flags(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3232,7 +3232,7 @@ bool PythonQtShell_QSortFilterProxyModel::hasChildren(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3265,7 +3265,7 @@ QVariant PythonQtShell_QSortFilterProxyModel::headerData(int section0, Qt::Ori if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3298,7 +3298,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::index(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3331,7 +3331,7 @@ bool PythonQtShell_QSortFilterProxyModel::insertColumns(int column0, int coun if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3364,7 +3364,7 @@ bool PythonQtShell_QSortFilterProxyModel::insertRows(int row0, int count1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3397,7 +3397,7 @@ QMap PythonQtShell_QSortFilterProxyModel::itemData(const QMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3430,7 +3430,7 @@ bool PythonQtShell_QSortFilterProxyModel::lessThan(const QModelIndex& source_l if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lessThan"); + static PyObject* name = PyUnicode_FromString("lessThan"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3463,7 +3463,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::mapFromSource(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3496,7 +3496,7 @@ QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionFromSource(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -3529,7 +3529,7 @@ QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionToSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -3562,7 +3562,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3595,7 +3595,7 @@ QList PythonQtShell_QSortFilterProxyModel::match(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3628,7 +3628,7 @@ QMimeData* PythonQtShell_QSortFilterProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3661,7 +3661,7 @@ QStringList PythonQtShell_QSortFilterProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3694,7 +3694,7 @@ bool PythonQtShell_QSortFilterProxyModel::moveColumns(const QModelIndex& sourc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3727,7 +3727,7 @@ bool PythonQtShell_QSortFilterProxyModel::moveRows(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3760,7 +3760,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::parent(const QModelIndex& chi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3793,7 +3793,7 @@ bool PythonQtShell_QSortFilterProxyModel::removeColumns(int column0, int coun if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3826,7 +3826,7 @@ bool PythonQtShell_QSortFilterProxyModel::removeRows(int row0, int count1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3859,7 +3859,7 @@ void PythonQtShell_QSortFilterProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3881,7 +3881,7 @@ QHash PythonQtShell_QSortFilterProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -3914,7 +3914,7 @@ int PythonQtShell_QSortFilterProxyModel::rowCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3947,7 +3947,7 @@ bool PythonQtShell_QSortFilterProxyModel::setData(const QModelIndex& index0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -3980,7 +3980,7 @@ bool PythonQtShell_QSortFilterProxyModel::setHeaderData(int section0, Qt::Orie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4013,7 +4013,7 @@ bool PythonQtShell_QSortFilterProxyModel::setItemData(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4046,7 +4046,7 @@ void PythonQtShell_QSortFilterProxyModel::setSourceModel(QAbstractItemModel* so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -4068,7 +4068,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::sibling(int row0, int column if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4101,7 +4101,7 @@ void PythonQtShell_QSortFilterProxyModel::sort(int column0, Qt::SortOrder orde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4123,7 +4123,7 @@ QSize PythonQtShell_QSortFilterProxyModel::span(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4156,7 +4156,7 @@ bool PythonQtShell_QSortFilterProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4189,7 +4189,7 @@ Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDragActions() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4222,7 +4222,7 @@ Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDropActions() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4255,7 +4255,7 @@ void PythonQtShell_QSortFilterProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4420,7 +4420,7 @@ QSizePolicy::ControlTypes PythonQtShell_QSpacerItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -4453,7 +4453,7 @@ Qt::Orientations PythonQtShell_QSpacerItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -4486,7 +4486,7 @@ QRect PythonQtShell_QSpacerItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -4519,7 +4519,7 @@ bool PythonQtShell_QSpacerItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4552,7 +4552,7 @@ int PythonQtShell_QSpacerItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4585,7 +4585,7 @@ void PythonQtShell_QSpacerItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4607,7 +4607,7 @@ bool PythonQtShell_QSpacerItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4640,7 +4640,7 @@ QLayout* PythonQtShell_QSpacerItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -4673,7 +4673,7 @@ QSize PythonQtShell_QSpacerItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4706,7 +4706,7 @@ int PythonQtShell_QSpacerItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4739,7 +4739,7 @@ QSize PythonQtShell_QSpacerItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4772,7 +4772,7 @@ void PythonQtShell_QSpacerItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -4794,7 +4794,7 @@ QSize PythonQtShell_QSpacerItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4827,7 +4827,7 @@ QSpacerItem* PythonQtShell_QSpacerItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -4860,7 +4860,7 @@ QWidget* PythonQtShell_QSpacerItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -4913,7 +4913,7 @@ void PythonQtShell_QSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4935,7 +4935,7 @@ void PythonQtShell_QSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4957,7 +4957,7 @@ void PythonQtShell_QSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4979,7 +4979,7 @@ void PythonQtShell_QSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5001,7 +5001,7 @@ void PythonQtShell_QSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5023,7 +5023,7 @@ void PythonQtShell_QSpinBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5045,7 +5045,7 @@ void PythonQtShell_QSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5067,7 +5067,7 @@ int PythonQtShell_QSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5100,7 +5100,7 @@ void PythonQtShell_QSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5122,7 +5122,7 @@ void PythonQtShell_QSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5144,7 +5144,7 @@ void PythonQtShell_QSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5166,7 +5166,7 @@ void PythonQtShell_QSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5188,7 +5188,7 @@ void PythonQtShell_QSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5210,7 +5210,7 @@ bool PythonQtShell_QSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5243,7 +5243,7 @@ bool PythonQtShell_QSpinBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5276,7 +5276,7 @@ void PythonQtShell_QSpinBox::fixup(QString& str0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -5298,7 +5298,7 @@ void PythonQtShell_QSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5320,7 +5320,7 @@ bool PythonQtShell_QSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5353,7 +5353,7 @@ void PythonQtShell_QSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5375,7 +5375,7 @@ bool PythonQtShell_QSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5408,7 +5408,7 @@ int PythonQtShell_QSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5441,7 +5441,7 @@ void PythonQtShell_QSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5463,7 +5463,7 @@ void PythonQtShell_QSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5485,7 +5485,7 @@ void PythonQtShell_QSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5507,7 +5507,7 @@ QVariant PythonQtShell_QSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5540,7 +5540,7 @@ void PythonQtShell_QSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5562,7 +5562,7 @@ void PythonQtShell_QSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5584,7 +5584,7 @@ void PythonQtShell_QSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5606,7 +5606,7 @@ int PythonQtShell_QSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5639,7 +5639,7 @@ QSize PythonQtShell_QSpinBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5672,7 +5672,7 @@ void PythonQtShell_QSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5694,7 +5694,7 @@ void PythonQtShell_QSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5716,7 +5716,7 @@ void PythonQtShell_QSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5738,7 +5738,7 @@ void PythonQtShell_QSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5760,7 +5760,7 @@ void PythonQtShell_QSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5782,7 +5782,7 @@ bool PythonQtShell_QSpinBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5815,7 +5815,7 @@ QPaintEngine* PythonQtShell_QSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5848,7 +5848,7 @@ void PythonQtShell_QSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5870,7 +5870,7 @@ QPaintDevice* PythonQtShell_QSpinBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5903,7 +5903,7 @@ void PythonQtShell_QSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5925,7 +5925,7 @@ void PythonQtShell_QSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5947,7 +5947,7 @@ QPainter* PythonQtShell_QSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5980,7 +5980,7 @@ void PythonQtShell_QSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6002,7 +6002,7 @@ QSize PythonQtShell_QSpinBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6035,7 +6035,7 @@ void PythonQtShell_QSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6057,7 +6057,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QSpinBox::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -6090,7 +6090,7 @@ void PythonQtShell_QSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6112,7 +6112,7 @@ QString PythonQtShell_QSpinBox::textFromValue(int val0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6145,7 +6145,7 @@ void PythonQtShell_QSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6167,7 +6167,7 @@ QValidator::State PythonQtShell_QSpinBox::validate(QString& input0, int& pos1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -6200,7 +6200,7 @@ int PythonQtShell_QSpinBox::valueFromText(const QString& text0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -6233,7 +6233,7 @@ void PythonQtShell_QSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6373,7 +6373,7 @@ void PythonQtShell_QSplashScreen::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6395,7 +6395,7 @@ void PythonQtShell_QSplashScreen::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6417,7 +6417,7 @@ void PythonQtShell_QSplashScreen::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6439,7 +6439,7 @@ void PythonQtShell_QSplashScreen::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6461,7 +6461,7 @@ void PythonQtShell_QSplashScreen::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6483,7 +6483,7 @@ void PythonQtShell_QSplashScreen::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6505,7 +6505,7 @@ int PythonQtShell_QSplashScreen::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6538,7 +6538,7 @@ void PythonQtShell_QSplashScreen::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6560,7 +6560,7 @@ void PythonQtShell_QSplashScreen::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6582,7 +6582,7 @@ void PythonQtShell_QSplashScreen::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6604,7 +6604,7 @@ void PythonQtShell_QSplashScreen::drawContents(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawContents"); + static PyObject* name = PyUnicode_FromString("drawContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6626,7 +6626,7 @@ void PythonQtShell_QSplashScreen::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6648,7 +6648,7 @@ void PythonQtShell_QSplashScreen::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6670,7 +6670,7 @@ bool PythonQtShell_QSplashScreen::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6703,7 +6703,7 @@ bool PythonQtShell_QSplashScreen::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6736,7 +6736,7 @@ void PythonQtShell_QSplashScreen::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6758,7 +6758,7 @@ bool PythonQtShell_QSplashScreen::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6791,7 +6791,7 @@ void PythonQtShell_QSplashScreen::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6813,7 +6813,7 @@ bool PythonQtShell_QSplashScreen::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6846,7 +6846,7 @@ int PythonQtShell_QSplashScreen::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6879,7 +6879,7 @@ void PythonQtShell_QSplashScreen::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6901,7 +6901,7 @@ void PythonQtShell_QSplashScreen::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6923,7 +6923,7 @@ void PythonQtShell_QSplashScreen::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6945,7 +6945,7 @@ QVariant PythonQtShell_QSplashScreen::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6978,7 +6978,7 @@ void PythonQtShell_QSplashScreen::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7000,7 +7000,7 @@ void PythonQtShell_QSplashScreen::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7022,7 +7022,7 @@ void PythonQtShell_QSplashScreen::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7044,7 +7044,7 @@ int PythonQtShell_QSplashScreen::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7077,7 +7077,7 @@ QSize PythonQtShell_QSplashScreen::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7110,7 +7110,7 @@ void PythonQtShell_QSplashScreen::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7132,7 +7132,7 @@ void PythonQtShell_QSplashScreen::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7154,7 +7154,7 @@ void PythonQtShell_QSplashScreen::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7176,7 +7176,7 @@ void PythonQtShell_QSplashScreen::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7198,7 +7198,7 @@ void PythonQtShell_QSplashScreen::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7220,7 +7220,7 @@ bool PythonQtShell_QSplashScreen::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7253,7 +7253,7 @@ QPaintEngine* PythonQtShell_QSplashScreen::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7286,7 +7286,7 @@ void PythonQtShell_QSplashScreen::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7308,7 +7308,7 @@ QPaintDevice* PythonQtShell_QSplashScreen::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7341,7 +7341,7 @@ void PythonQtShell_QSplashScreen::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7363,7 +7363,7 @@ void PythonQtShell_QSplashScreen::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7385,7 +7385,7 @@ QPainter* PythonQtShell_QSplashScreen::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7418,7 +7418,7 @@ void PythonQtShell_QSplashScreen::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7440,7 +7440,7 @@ QSize PythonQtShell_QSplashScreen::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7473,7 +7473,7 @@ void PythonQtShell_QSplashScreen::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7495,7 +7495,7 @@ void PythonQtShell_QSplashScreen::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7517,7 +7517,7 @@ void PythonQtShell_QSplashScreen::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7595,7 +7595,7 @@ void PythonQtShell_QSplitter::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7617,7 +7617,7 @@ void PythonQtShell_QSplitter::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7639,7 +7639,7 @@ void PythonQtShell_QSplitter::childEvent(QChildEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7661,7 +7661,7 @@ void PythonQtShell_QSplitter::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7683,7 +7683,7 @@ void PythonQtShell_QSplitter::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7705,7 +7705,7 @@ QSplitterHandle* PythonQtShell_QSplitter::createHandle() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createHandle"); + static PyObject* name = PyUnicode_FromString("createHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSplitterHandle*"}; @@ -7738,7 +7738,7 @@ void PythonQtShell_QSplitter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7760,7 +7760,7 @@ int PythonQtShell_QSplitter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7793,7 +7793,7 @@ void PythonQtShell_QSplitter::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7815,7 +7815,7 @@ void PythonQtShell_QSplitter::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7837,7 +7837,7 @@ void PythonQtShell_QSplitter::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7859,7 +7859,7 @@ void PythonQtShell_QSplitter::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7881,7 +7881,7 @@ void PythonQtShell_QSplitter::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7903,7 +7903,7 @@ bool PythonQtShell_QSplitter::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7936,7 +7936,7 @@ bool PythonQtShell_QSplitter::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7969,7 +7969,7 @@ void PythonQtShell_QSplitter::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7991,7 +7991,7 @@ bool PythonQtShell_QSplitter::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8024,7 +8024,7 @@ void PythonQtShell_QSplitter::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8046,7 +8046,7 @@ bool PythonQtShell_QSplitter::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8079,7 +8079,7 @@ int PythonQtShell_QSplitter::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8112,7 +8112,7 @@ void PythonQtShell_QSplitter::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8134,7 +8134,7 @@ void PythonQtShell_QSplitter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8156,7 +8156,7 @@ void PythonQtShell_QSplitter::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8178,7 +8178,7 @@ QVariant PythonQtShell_QSplitter::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8211,7 +8211,7 @@ void PythonQtShell_QSplitter::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8233,7 +8233,7 @@ void PythonQtShell_QSplitter::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8255,7 +8255,7 @@ void PythonQtShell_QSplitter::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8277,7 +8277,7 @@ int PythonQtShell_QSplitter::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8310,7 +8310,7 @@ QSize PythonQtShell_QSplitter::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8343,7 +8343,7 @@ void PythonQtShell_QSplitter::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8365,7 +8365,7 @@ void PythonQtShell_QSplitter::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8387,7 +8387,7 @@ void PythonQtShell_QSplitter::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8409,7 +8409,7 @@ void PythonQtShell_QSplitter::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8431,7 +8431,7 @@ void PythonQtShell_QSplitter::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8453,7 +8453,7 @@ bool PythonQtShell_QSplitter::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8486,7 +8486,7 @@ QPaintEngine* PythonQtShell_QSplitter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8519,7 +8519,7 @@ void PythonQtShell_QSplitter::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8541,7 +8541,7 @@ QPaintDevice* PythonQtShell_QSplitter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8574,7 +8574,7 @@ void PythonQtShell_QSplitter::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8596,7 +8596,7 @@ void PythonQtShell_QSplitter::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8618,7 +8618,7 @@ QPainter* PythonQtShell_QSplitter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8651,7 +8651,7 @@ void PythonQtShell_QSplitter::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8673,7 +8673,7 @@ QSize PythonQtShell_QSplitter::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8706,7 +8706,7 @@ void PythonQtShell_QSplitter::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8728,7 +8728,7 @@ void PythonQtShell_QSplitter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8750,7 +8750,7 @@ void PythonQtShell_QSplitter::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8949,7 +8949,7 @@ void PythonQtShell_QSplitterHandle::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8971,7 +8971,7 @@ void PythonQtShell_QSplitterHandle::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8993,7 +8993,7 @@ void PythonQtShell_QSplitterHandle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9015,7 +9015,7 @@ void PythonQtShell_QSplitterHandle::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9037,7 +9037,7 @@ void PythonQtShell_QSplitterHandle::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9059,7 +9059,7 @@ void PythonQtShell_QSplitterHandle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9081,7 +9081,7 @@ int PythonQtShell_QSplitterHandle::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9114,7 +9114,7 @@ void PythonQtShell_QSplitterHandle::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9136,7 +9136,7 @@ void PythonQtShell_QSplitterHandle::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9158,7 +9158,7 @@ void PythonQtShell_QSplitterHandle::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9180,7 +9180,7 @@ void PythonQtShell_QSplitterHandle::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9202,7 +9202,7 @@ void PythonQtShell_QSplitterHandle::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9224,7 +9224,7 @@ bool PythonQtShell_QSplitterHandle::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9257,7 +9257,7 @@ bool PythonQtShell_QSplitterHandle::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9290,7 +9290,7 @@ void PythonQtShell_QSplitterHandle::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9312,7 +9312,7 @@ bool PythonQtShell_QSplitterHandle::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9345,7 +9345,7 @@ void PythonQtShell_QSplitterHandle::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9367,7 +9367,7 @@ bool PythonQtShell_QSplitterHandle::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9400,7 +9400,7 @@ int PythonQtShell_QSplitterHandle::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9433,7 +9433,7 @@ void PythonQtShell_QSplitterHandle::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9455,7 +9455,7 @@ void PythonQtShell_QSplitterHandle::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9477,7 +9477,7 @@ void PythonQtShell_QSplitterHandle::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9499,7 +9499,7 @@ QVariant PythonQtShell_QSplitterHandle::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9532,7 +9532,7 @@ void PythonQtShell_QSplitterHandle::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9554,7 +9554,7 @@ void PythonQtShell_QSplitterHandle::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9576,7 +9576,7 @@ void PythonQtShell_QSplitterHandle::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9598,7 +9598,7 @@ int PythonQtShell_QSplitterHandle::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9631,7 +9631,7 @@ QSize PythonQtShell_QSplitterHandle::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9664,7 +9664,7 @@ void PythonQtShell_QSplitterHandle::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9686,7 +9686,7 @@ void PythonQtShell_QSplitterHandle::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9708,7 +9708,7 @@ void PythonQtShell_QSplitterHandle::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9730,7 +9730,7 @@ void PythonQtShell_QSplitterHandle::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9752,7 +9752,7 @@ void PythonQtShell_QSplitterHandle::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9774,7 +9774,7 @@ bool PythonQtShell_QSplitterHandle::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9807,7 +9807,7 @@ QPaintEngine* PythonQtShell_QSplitterHandle::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9840,7 +9840,7 @@ void PythonQtShell_QSplitterHandle::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9862,7 +9862,7 @@ QPaintDevice* PythonQtShell_QSplitterHandle::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9895,7 +9895,7 @@ void PythonQtShell_QSplitterHandle::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9917,7 +9917,7 @@ void PythonQtShell_QSplitterHandle::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9939,7 +9939,7 @@ QPainter* PythonQtShell_QSplitterHandle::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9972,7 +9972,7 @@ void PythonQtShell_QSplitterHandle::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9994,7 +9994,7 @@ QSize PythonQtShell_QSplitterHandle::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10027,7 +10027,7 @@ void PythonQtShell_QSplitterHandle::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10049,7 +10049,7 @@ void PythonQtShell_QSplitterHandle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10071,7 +10071,7 @@ void PythonQtShell_QSplitterHandle::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10151,7 +10151,7 @@ void PythonQtShell_QStackedLayout::addItem(QLayoutItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -10173,7 +10173,7 @@ void PythonQtShell_QStackedLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10195,7 +10195,7 @@ QSizePolicy::ControlTypes PythonQtShell_QStackedLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10228,7 +10228,7 @@ int PythonQtShell_QStackedLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10261,7 +10261,7 @@ void PythonQtShell_QStackedLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10283,7 +10283,7 @@ bool PythonQtShell_QStackedLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10316,7 +10316,7 @@ bool PythonQtShell_QStackedLayout::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10349,7 +10349,7 @@ Qt::Orientations PythonQtShell_QStackedLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10382,7 +10382,7 @@ QRect PythonQtShell_QStackedLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10415,7 +10415,7 @@ bool PythonQtShell_QStackedLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10448,7 +10448,7 @@ int PythonQtShell_QStackedLayout::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10481,7 +10481,7 @@ int PythonQtShell_QStackedLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -10514,7 +10514,7 @@ void PythonQtShell_QStackedLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10536,7 +10536,7 @@ bool PythonQtShell_QStackedLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10569,7 +10569,7 @@ QLayoutItem* PythonQtShell_QStackedLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10602,7 +10602,7 @@ QLayout* PythonQtShell_QStackedLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10635,7 +10635,7 @@ QSize PythonQtShell_QStackedLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10668,7 +10668,7 @@ int PythonQtShell_QStackedLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10701,7 +10701,7 @@ QSize PythonQtShell_QStackedLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10734,7 +10734,7 @@ void PythonQtShell_QStackedLayout::setGeometry(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10756,7 +10756,7 @@ QSize PythonQtShell_QStackedLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10789,7 +10789,7 @@ QSpacerItem* PythonQtShell_QStackedLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -10822,7 +10822,7 @@ QLayoutItem* PythonQtShell_QStackedLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10855,7 +10855,7 @@ void PythonQtShell_QStackedLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10943,7 +10943,7 @@ void PythonQtShell_QStackedWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10965,7 +10965,7 @@ void PythonQtShell_QStackedWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10987,7 +10987,7 @@ void PythonQtShell_QStackedWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11009,7 +11009,7 @@ void PythonQtShell_QStackedWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11031,7 +11031,7 @@ void PythonQtShell_QStackedWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11053,7 +11053,7 @@ void PythonQtShell_QStackedWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11075,7 +11075,7 @@ int PythonQtShell_QStackedWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11108,7 +11108,7 @@ void PythonQtShell_QStackedWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11130,7 +11130,7 @@ void PythonQtShell_QStackedWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11152,7 +11152,7 @@ void PythonQtShell_QStackedWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11174,7 +11174,7 @@ void PythonQtShell_QStackedWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11196,7 +11196,7 @@ void PythonQtShell_QStackedWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11218,7 +11218,7 @@ bool PythonQtShell_QStackedWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11251,7 +11251,7 @@ bool PythonQtShell_QStackedWidget::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11284,7 +11284,7 @@ void PythonQtShell_QStackedWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11306,7 +11306,7 @@ bool PythonQtShell_QStackedWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11339,7 +11339,7 @@ void PythonQtShell_QStackedWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11361,7 +11361,7 @@ bool PythonQtShell_QStackedWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11394,7 +11394,7 @@ int PythonQtShell_QStackedWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11427,7 +11427,7 @@ void PythonQtShell_QStackedWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11449,7 +11449,7 @@ void PythonQtShell_QStackedWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11471,7 +11471,7 @@ void PythonQtShell_QStackedWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11493,7 +11493,7 @@ QVariant PythonQtShell_QStackedWidget::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11526,7 +11526,7 @@ void PythonQtShell_QStackedWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11548,7 +11548,7 @@ void PythonQtShell_QStackedWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11570,7 +11570,7 @@ void PythonQtShell_QStackedWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11592,7 +11592,7 @@ int PythonQtShell_QStackedWidget::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11625,7 +11625,7 @@ QSize PythonQtShell_QStackedWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11658,7 +11658,7 @@ void PythonQtShell_QStackedWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11680,7 +11680,7 @@ void PythonQtShell_QStackedWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11702,7 +11702,7 @@ void PythonQtShell_QStackedWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11724,7 +11724,7 @@ void PythonQtShell_QStackedWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11746,7 +11746,7 @@ void PythonQtShell_QStackedWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11768,7 +11768,7 @@ bool PythonQtShell_QStackedWidget::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11801,7 +11801,7 @@ QPaintEngine* PythonQtShell_QStackedWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11834,7 +11834,7 @@ void PythonQtShell_QStackedWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11856,7 +11856,7 @@ QPaintDevice* PythonQtShell_QStackedWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11889,7 +11889,7 @@ void PythonQtShell_QStackedWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11911,7 +11911,7 @@ void PythonQtShell_QStackedWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11933,7 +11933,7 @@ QPainter* PythonQtShell_QStackedWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11966,7 +11966,7 @@ void PythonQtShell_QStackedWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11988,7 +11988,7 @@ QSize PythonQtShell_QStackedWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12021,7 +12021,7 @@ void PythonQtShell_QStackedWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12043,7 +12043,7 @@ void PythonQtShell_QStackedWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12065,7 +12065,7 @@ void PythonQtShell_QStackedWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12150,7 +12150,7 @@ QStandardItem* PythonQtShell_QStandardItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStandardItem*"}; @@ -12183,7 +12183,7 @@ QVariant PythonQtShell_QStandardItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -12216,7 +12216,7 @@ void PythonQtShell_QStandardItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -12238,7 +12238,7 @@ void PythonQtShell_QStandardItem::setData(const QVariant& value0, int role1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&" , "int"}; @@ -12260,7 +12260,7 @@ int PythonQtShell_QStandardItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12293,7 +12293,7 @@ void PythonQtShell_QStandardItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -12776,7 +12776,7 @@ QModelIndex PythonQtShell_QStandardItemModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12809,7 +12809,7 @@ bool PythonQtShell_QStandardItemModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12842,7 +12842,7 @@ bool PythonQtShell_QStandardItemModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12875,7 +12875,7 @@ void PythonQtShell_QStandardItemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12897,7 +12897,7 @@ int PythonQtShell_QStandardItemModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12930,7 +12930,7 @@ void PythonQtShell_QStandardItemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12952,7 +12952,7 @@ QVariant PythonQtShell_QStandardItemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -12985,7 +12985,7 @@ bool PythonQtShell_QStandardItemModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -13018,7 +13018,7 @@ bool PythonQtShell_QStandardItemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13051,7 +13051,7 @@ bool PythonQtShell_QStandardItemModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13084,7 +13084,7 @@ void PythonQtShell_QStandardItemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -13106,7 +13106,7 @@ Qt::ItemFlags PythonQtShell_QStandardItemModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -13139,7 +13139,7 @@ bool PythonQtShell_QStandardItemModel::hasChildren(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -13172,7 +13172,7 @@ QVariant PythonQtShell_QStandardItemModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -13205,7 +13205,7 @@ QModelIndex PythonQtShell_QStandardItemModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13238,7 +13238,7 @@ bool PythonQtShell_QStandardItemModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13271,7 +13271,7 @@ bool PythonQtShell_QStandardItemModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13304,7 +13304,7 @@ QMap PythonQtShell_QStandardItemModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -13337,7 +13337,7 @@ QList PythonQtShell_QStandardItemModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -13370,7 +13370,7 @@ QMimeData* PythonQtShell_QStandardItemModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -13403,7 +13403,7 @@ QStringList PythonQtShell_QStandardItemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13436,7 +13436,7 @@ bool PythonQtShell_QStandardItemModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13469,7 +13469,7 @@ bool PythonQtShell_QStandardItemModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13502,7 +13502,7 @@ QModelIndex PythonQtShell_QStandardItemModel::parent(const QModelIndex& child0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -13535,7 +13535,7 @@ bool PythonQtShell_QStandardItemModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13568,7 +13568,7 @@ bool PythonQtShell_QStandardItemModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13601,7 +13601,7 @@ void PythonQtShell_QStandardItemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13623,7 +13623,7 @@ QHash PythonQtShell_QStandardItemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -13656,7 +13656,7 @@ int PythonQtShell_QStandardItemModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13689,7 +13689,7 @@ bool PythonQtShell_QStandardItemModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -13722,7 +13722,7 @@ bool PythonQtShell_QStandardItemModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -13755,7 +13755,7 @@ bool PythonQtShell_QStandardItemModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -13788,7 +13788,7 @@ QModelIndex PythonQtShell_QStandardItemModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13821,7 +13821,7 @@ void PythonQtShell_QStandardItemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -13843,7 +13843,7 @@ QSize PythonQtShell_QStandardItemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -13876,7 +13876,7 @@ bool PythonQtShell_QStandardItemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13909,7 +13909,7 @@ Qt::DropActions PythonQtShell_QStandardItemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13942,7 +13942,7 @@ Qt::DropActions PythonQtShell_QStandardItemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13975,7 +13975,7 @@ void PythonQtShell_QStandardItemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14283,7 +14283,7 @@ void PythonQtShell_QStatusBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14305,7 +14305,7 @@ void PythonQtShell_QStatusBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14327,7 +14327,7 @@ void PythonQtShell_QStatusBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14349,7 +14349,7 @@ void PythonQtShell_QStatusBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14371,7 +14371,7 @@ void PythonQtShell_QStatusBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14393,7 +14393,7 @@ void PythonQtShell_QStatusBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14415,7 +14415,7 @@ int PythonQtShell_QStatusBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14448,7 +14448,7 @@ void PythonQtShell_QStatusBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14470,7 +14470,7 @@ void PythonQtShell_QStatusBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14492,7 +14492,7 @@ void PythonQtShell_QStatusBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14514,7 +14514,7 @@ void PythonQtShell_QStatusBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14536,7 +14536,7 @@ void PythonQtShell_QStatusBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14558,7 +14558,7 @@ bool PythonQtShell_QStatusBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14591,7 +14591,7 @@ bool PythonQtShell_QStatusBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14624,7 +14624,7 @@ void PythonQtShell_QStatusBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14646,7 +14646,7 @@ bool PythonQtShell_QStatusBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14679,7 +14679,7 @@ void PythonQtShell_QStatusBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14701,7 +14701,7 @@ bool PythonQtShell_QStatusBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14734,7 +14734,7 @@ int PythonQtShell_QStatusBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14767,7 +14767,7 @@ void PythonQtShell_QStatusBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14789,7 +14789,7 @@ void PythonQtShell_QStatusBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14811,7 +14811,7 @@ void PythonQtShell_QStatusBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14833,7 +14833,7 @@ QVariant PythonQtShell_QStatusBar::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14866,7 +14866,7 @@ void PythonQtShell_QStatusBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14888,7 +14888,7 @@ void PythonQtShell_QStatusBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14910,7 +14910,7 @@ void PythonQtShell_QStatusBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14932,7 +14932,7 @@ int PythonQtShell_QStatusBar::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14965,7 +14965,7 @@ QSize PythonQtShell_QStatusBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14998,7 +14998,7 @@ void PythonQtShell_QStatusBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15020,7 +15020,7 @@ void PythonQtShell_QStatusBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15042,7 +15042,7 @@ void PythonQtShell_QStatusBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15064,7 +15064,7 @@ void PythonQtShell_QStatusBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15086,7 +15086,7 @@ void PythonQtShell_QStatusBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15108,7 +15108,7 @@ bool PythonQtShell_QStatusBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15141,7 +15141,7 @@ QPaintEngine* PythonQtShell_QStatusBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15174,7 +15174,7 @@ void PythonQtShell_QStatusBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15196,7 +15196,7 @@ QPaintDevice* PythonQtShell_QStatusBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15229,7 +15229,7 @@ void PythonQtShell_QStatusBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15251,7 +15251,7 @@ void PythonQtShell_QStatusBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15273,7 +15273,7 @@ QPainter* PythonQtShell_QStatusBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15306,7 +15306,7 @@ void PythonQtShell_QStatusBar::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15328,7 +15328,7 @@ QSize PythonQtShell_QStatusBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15361,7 +15361,7 @@ void PythonQtShell_QStatusBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15383,7 +15383,7 @@ void PythonQtShell_QStatusBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15405,7 +15405,7 @@ void PythonQtShell_QStatusBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15511,7 +15511,7 @@ QModelIndex PythonQtShell_QStringListModel::buddy(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -15544,7 +15544,7 @@ bool PythonQtShell_QStringListModel::canDropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -15577,7 +15577,7 @@ bool PythonQtShell_QStringListModel::canFetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -15610,7 +15610,7 @@ void PythonQtShell_QStringListModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15632,7 +15632,7 @@ void PythonQtShell_QStringListModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15654,7 +15654,7 @@ QVariant PythonQtShell_QStringListModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -15687,7 +15687,7 @@ bool PythonQtShell_QStringListModel::dropMimeData(const QMimeData* data0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -15720,7 +15720,7 @@ bool PythonQtShell_QStringListModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15753,7 +15753,7 @@ bool PythonQtShell_QStringListModel::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15786,7 +15786,7 @@ void PythonQtShell_QStringListModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -15808,7 +15808,7 @@ Qt::ItemFlags PythonQtShell_QStringListModel::flags(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -15841,7 +15841,7 @@ QVariant PythonQtShell_QStringListModel::headerData(int section0, Qt::Orientat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -15874,7 +15874,7 @@ QModelIndex PythonQtShell_QStringListModel::index(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15907,7 +15907,7 @@ bool PythonQtShell_QStringListModel::insertColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15940,7 +15940,7 @@ bool PythonQtShell_QStringListModel::insertRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15973,7 +15973,7 @@ QMap PythonQtShell_QStringListModel::itemData(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -16006,7 +16006,7 @@ QList PythonQtShell_QStringListModel::match(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -16039,7 +16039,7 @@ QMimeData* PythonQtShell_QStringListModel::mimeData(const QList& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -16072,7 +16072,7 @@ QStringList PythonQtShell_QStringListModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -16105,7 +16105,7 @@ bool PythonQtShell_QStringListModel::moveColumns(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -16138,7 +16138,7 @@ bool PythonQtShell_QStringListModel::moveRows(const QModelIndex& sourceParent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -16171,7 +16171,7 @@ bool PythonQtShell_QStringListModel::removeColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -16204,7 +16204,7 @@ bool PythonQtShell_QStringListModel::removeRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -16237,7 +16237,7 @@ void PythonQtShell_QStringListModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16259,7 +16259,7 @@ QHash PythonQtShell_QStringListModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -16292,7 +16292,7 @@ int PythonQtShell_QStringListModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -16325,7 +16325,7 @@ bool PythonQtShell_QStringListModel::setData(const QModelIndex& index0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -16358,7 +16358,7 @@ bool PythonQtShell_QStringListModel::setHeaderData(int section0, Qt::Orientati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -16391,7 +16391,7 @@ bool PythonQtShell_QStringListModel::setItemData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -16424,7 +16424,7 @@ QModelIndex PythonQtShell_QStringListModel::sibling(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -16457,7 +16457,7 @@ void PythonQtShell_QStringListModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -16479,7 +16479,7 @@ QSize PythonQtShell_QStringListModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -16512,7 +16512,7 @@ bool PythonQtShell_QStringListModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16545,7 +16545,7 @@ Qt::DropActions PythonQtShell_QStringListModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16578,7 +16578,7 @@ Qt::DropActions PythonQtShell_QStringListModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16611,7 +16611,7 @@ void PythonQtShell_QStringListModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp b/generated_cpp_515/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp index fcedcabca..ff4d679fe 100644 --- a/generated_cpp_515/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +++ b/generated_cpp_515/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp @@ -62,7 +62,7 @@ int PythonQtShell_QBitmap::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -95,7 +95,7 @@ void PythonQtShell_QBitmap::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -117,7 +117,7 @@ int PythonQtShell_QBitmap::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -150,7 +150,7 @@ QPaintEngine* PythonQtShell_QBitmap::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -183,7 +183,7 @@ QPaintDevice* PythonQtShell_QBitmap::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -216,7 +216,7 @@ QPainter* PythonQtShell_QBitmap::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1627,7 +1627,7 @@ int PythonQtShell_QImage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1660,7 +1660,7 @@ void PythonQtShell_QImage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1682,7 +1682,7 @@ int PythonQtShell_QImage::metric(QPaintDevice::PaintDeviceMetric metric0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1715,7 +1715,7 @@ QPaintEngine* PythonQtShell_QImage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1748,7 +1748,7 @@ QPaintDevice* PythonQtShell_QImage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1781,7 +1781,7 @@ QPainter* PythonQtShell_QImage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3200,7 +3200,7 @@ int PythonQtShell_QPixmap::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3233,7 +3233,7 @@ void PythonQtShell_QPixmap::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3255,7 +3255,7 @@ int PythonQtShell_QPixmap::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3288,7 +3288,7 @@ QPaintEngine* PythonQtShell_QPixmap::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3321,7 +3321,7 @@ QPaintDevice* PythonQtShell_QPixmap::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3354,7 +3354,7 @@ QPainter* PythonQtShell_QPixmap::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp index d75b11ca4..7cbaa834c 100644 --- a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +++ b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp @@ -44,7 +44,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -66,7 +66,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -88,7 +88,7 @@ QString PythonQtShell_QAbstractAudioDeviceInfo::deviceName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceName"); + static PyObject* name = PyUnicode_FromString("deviceName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -121,7 +121,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -154,7 +154,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -187,7 +187,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::isFormatSupported(const QAudioForm if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QAudioFormat&"}; @@ -220,7 +220,7 @@ QAudioFormat PythonQtShell_QAbstractAudioDeviceInfo::preferredFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preferredFormat"); + static PyObject* name = PyUnicode_FromString("preferredFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -253,7 +253,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedB if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedByteOrders"); + static PyObject* name = PyUnicode_FromString("supportedByteOrders"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -286,7 +286,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedChannelCounts() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedChannelCounts"); + static PyObject* name = PyUnicode_FromString("supportedChannelCounts"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -319,7 +319,7 @@ QStringList PythonQtShell_QAbstractAudioDeviceInfo::supportedCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedCodecs"); + static PyObject* name = PyUnicode_FromString("supportedCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -352,7 +352,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedSampleRates() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleRates"); + static PyObject* name = PyUnicode_FromString("supportedSampleRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -385,7 +385,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedSampleSizes() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleSizes"); + static PyObject* name = PyUnicode_FromString("supportedSampleSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -418,7 +418,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::suppor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleTypes"); + static PyObject* name = PyUnicode_FromString("supportedSampleTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -451,7 +451,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -541,7 +541,7 @@ int PythonQtShell_QAbstractAudioInput::bufferSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferSize"); + static PyObject* name = PyUnicode_FromString("bufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -574,7 +574,7 @@ int PythonQtShell_QAbstractAudioInput::bytesReady() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesReady"); + static PyObject* name = PyUnicode_FromString("bytesReady"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -607,7 +607,7 @@ void PythonQtShell_QAbstractAudioInput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -629,7 +629,7 @@ void PythonQtShell_QAbstractAudioInput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -651,7 +651,7 @@ qint64 PythonQtShell_QAbstractAudioInput::elapsedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elapsedUSecs"); + static PyObject* name = PyUnicode_FromString("elapsedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -684,7 +684,7 @@ QAudio::Error PythonQtShell_QAbstractAudioInput::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Error"}; @@ -717,7 +717,7 @@ bool PythonQtShell_QAbstractAudioInput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -750,7 +750,7 @@ bool PythonQtShell_QAbstractAudioInput::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -783,7 +783,7 @@ QAudioFormat PythonQtShell_QAbstractAudioInput::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -816,7 +816,7 @@ int PythonQtShell_QAbstractAudioInput::notifyInterval() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notifyInterval"); + static PyObject* name = PyUnicode_FromString("notifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -849,7 +849,7 @@ int PythonQtShell_QAbstractAudioInput::periodSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("periodSize"); + static PyObject* name = PyUnicode_FromString("periodSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -882,7 +882,7 @@ qint64 PythonQtShell_QAbstractAudioInput::processedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processedUSecs"); + static PyObject* name = PyUnicode_FromString("processedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -915,7 +915,7 @@ void PythonQtShell_QAbstractAudioInput::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -937,7 +937,7 @@ void PythonQtShell_QAbstractAudioInput::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -959,7 +959,7 @@ void PythonQtShell_QAbstractAudioInput::setBufferSize(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferSize"); + static PyObject* name = PyUnicode_FromString("setBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -981,7 +981,7 @@ void PythonQtShell_QAbstractAudioInput::setFormat(const QAudioFormat& fmt0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFormat"); + static PyObject* name = PyUnicode_FromString("setFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -1003,7 +1003,7 @@ void PythonQtShell_QAbstractAudioInput::setNotifyInterval(int milliSeconds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNotifyInterval"); + static PyObject* name = PyUnicode_FromString("setNotifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1025,7 +1025,7 @@ void PythonQtShell_QAbstractAudioInput::setVolume(qreal arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1047,7 +1047,7 @@ QIODevice* PythonQtShell_QAbstractAudioInput::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -1080,7 +1080,7 @@ void PythonQtShell_QAbstractAudioInput::start(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -1102,7 +1102,7 @@ QAudio::State PythonQtShell_QAbstractAudioInput::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::State"}; @@ -1135,7 +1135,7 @@ void PythonQtShell_QAbstractAudioInput::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1157,7 +1157,7 @@ void PythonQtShell_QAbstractAudioInput::suspend() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("suspend"); + static PyObject* name = PyUnicode_FromString("suspend"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1179,7 +1179,7 @@ void PythonQtShell_QAbstractAudioInput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1201,7 +1201,7 @@ qreal PythonQtShell_QAbstractAudioInput::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -1357,7 +1357,7 @@ int PythonQtShell_QAbstractAudioOutput::bufferSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferSize"); + static PyObject* name = PyUnicode_FromString("bufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1390,7 +1390,7 @@ int PythonQtShell_QAbstractAudioOutput::bytesFree() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesFree"); + static PyObject* name = PyUnicode_FromString("bytesFree"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1423,7 +1423,7 @@ QString PythonQtShell_QAbstractAudioOutput::category() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("category"); + static PyObject* name = PyUnicode_FromString("category"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1456,7 +1456,7 @@ void PythonQtShell_QAbstractAudioOutput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1478,7 +1478,7 @@ void PythonQtShell_QAbstractAudioOutput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1500,7 +1500,7 @@ qint64 PythonQtShell_QAbstractAudioOutput::elapsedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elapsedUSecs"); + static PyObject* name = PyUnicode_FromString("elapsedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1533,7 +1533,7 @@ QAudio::Error PythonQtShell_QAbstractAudioOutput::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Error"}; @@ -1566,7 +1566,7 @@ bool PythonQtShell_QAbstractAudioOutput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1599,7 +1599,7 @@ bool PythonQtShell_QAbstractAudioOutput::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1632,7 +1632,7 @@ QAudioFormat PythonQtShell_QAbstractAudioOutput::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -1665,7 +1665,7 @@ int PythonQtShell_QAbstractAudioOutput::notifyInterval() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notifyInterval"); + static PyObject* name = PyUnicode_FromString("notifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1698,7 +1698,7 @@ int PythonQtShell_QAbstractAudioOutput::periodSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("periodSize"); + static PyObject* name = PyUnicode_FromString("periodSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1731,7 +1731,7 @@ qint64 PythonQtShell_QAbstractAudioOutput::processedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processedUSecs"); + static PyObject* name = PyUnicode_FromString("processedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1764,7 +1764,7 @@ void PythonQtShell_QAbstractAudioOutput::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1786,7 +1786,7 @@ void PythonQtShell_QAbstractAudioOutput::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1808,7 +1808,7 @@ void PythonQtShell_QAbstractAudioOutput::setBufferSize(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferSize"); + static PyObject* name = PyUnicode_FromString("setBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1830,7 +1830,7 @@ void PythonQtShell_QAbstractAudioOutput::setCategory(const QString& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCategory"); + static PyObject* name = PyUnicode_FromString("setCategory"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1852,7 +1852,7 @@ void PythonQtShell_QAbstractAudioOutput::setFormat(const QAudioFormat& fmt0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFormat"); + static PyObject* name = PyUnicode_FromString("setFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -1874,7 +1874,7 @@ void PythonQtShell_QAbstractAudioOutput::setNotifyInterval(int milliSeconds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNotifyInterval"); + static PyObject* name = PyUnicode_FromString("setNotifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1896,7 +1896,7 @@ void PythonQtShell_QAbstractAudioOutput::setVolume(qreal arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1918,7 +1918,7 @@ QIODevice* PythonQtShell_QAbstractAudioOutput::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -1951,7 +1951,7 @@ void PythonQtShell_QAbstractAudioOutput::start(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -1973,7 +1973,7 @@ QAudio::State PythonQtShell_QAbstractAudioOutput::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::State"}; @@ -2006,7 +2006,7 @@ void PythonQtShell_QAbstractAudioOutput::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2028,7 +2028,7 @@ void PythonQtShell_QAbstractAudioOutput::suspend() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("suspend"); + static PyObject* name = PyUnicode_FromString("suspend"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2050,7 +2050,7 @@ void PythonQtShell_QAbstractAudioOutput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2072,7 +2072,7 @@ qreal PythonQtShell_QAbstractAudioOutput::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -2238,7 +2238,7 @@ QVariant PythonQtShell_QAbstractVideoBuffer::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -2271,7 +2271,7 @@ uchar* PythonQtShell_QAbstractVideoBuffer::map(QAbstractVideoBuffer::MapMode m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("map"); + static PyObject* name = PyUnicode_FromString("map"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"uchar*" , "QAbstractVideoBuffer::MapMode" , "int*" , "int*"}; @@ -2304,7 +2304,7 @@ QAbstractVideoBuffer::MapMode PythonQtShell_QAbstractVideoBuffer::mapMode() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapMode"); + static PyObject* name = PyUnicode_FromString("mapMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoBuffer::MapMode"}; @@ -2337,7 +2337,7 @@ void PythonQtShell_QAbstractVideoBuffer::release() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2359,7 +2359,7 @@ void PythonQtShell_QAbstractVideoBuffer::unmap() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unmap"); + static PyObject* name = PyUnicode_FromString("unmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2421,7 +2421,7 @@ void PythonQtShell_QAbstractVideoSurface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2443,7 +2443,7 @@ void PythonQtShell_QAbstractVideoSurface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2465,7 +2465,7 @@ bool PythonQtShell_QAbstractVideoSurface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2498,7 +2498,7 @@ bool PythonQtShell_QAbstractVideoSurface::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2531,7 +2531,7 @@ bool PythonQtShell_QAbstractVideoSurface::isFormatSupported(const QVideoSurface if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -2564,7 +2564,7 @@ QVideoSurfaceFormat PythonQtShell_QAbstractVideoSurface::nearestFormat(const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nearestFormat"); + static PyObject* name = PyUnicode_FromString("nearestFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoSurfaceFormat" , "const QVideoSurfaceFormat&"}; @@ -2597,7 +2597,7 @@ bool PythonQtShell_QAbstractVideoSurface::present(const QVideoFrame& frame0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("present"); + static PyObject* name = PyUnicode_FromString("present"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoFrame&"}; @@ -2630,7 +2630,7 @@ bool PythonQtShell_QAbstractVideoSurface::start(const QVideoSurfaceFormat& for if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -2663,7 +2663,7 @@ void PythonQtShell_QAbstractVideoSurface::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2685,7 +2685,7 @@ QList PythonQtShell_QAbstractVideoSurface::supported if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedPixelFormats"); + static PyObject* name = PyUnicode_FromString("supportedPixelFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAbstractVideoBuffer::HandleType"}; @@ -2718,7 +2718,7 @@ void PythonQtShell_QAbstractVideoSurface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2903,7 +2903,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QAudioDecoder::availability() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -2936,7 +2936,7 @@ bool PythonQtShell_QAudioDecoder::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -2969,7 +2969,7 @@ void PythonQtShell_QAudioDecoder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2991,7 +2991,7 @@ void PythonQtShell_QAudioDecoder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3013,7 +3013,7 @@ bool PythonQtShell_QAudioDecoder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3046,7 +3046,7 @@ bool PythonQtShell_QAudioDecoder::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3079,7 +3079,7 @@ bool PythonQtShell_QAudioDecoder::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3112,7 +3112,7 @@ QMediaService* PythonQtShell_QAudioDecoder::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -3145,7 +3145,7 @@ void PythonQtShell_QAudioDecoder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3167,7 +3167,7 @@ void PythonQtShell_QAudioDecoder::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3282,7 +3282,7 @@ QAudioFormat PythonQtShell_QAudioDecoderControl::audioFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioFormat"); + static PyObject* name = PyUnicode_FromString("audioFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -3315,7 +3315,7 @@ bool PythonQtShell_QAudioDecoderControl::bufferAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferAvailable"); + static PyObject* name = PyUnicode_FromString("bufferAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3348,7 +3348,7 @@ void PythonQtShell_QAudioDecoderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3370,7 +3370,7 @@ void PythonQtShell_QAudioDecoderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3392,7 +3392,7 @@ qint64 PythonQtShell_QAudioDecoderControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3425,7 +3425,7 @@ bool PythonQtShell_QAudioDecoderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3458,7 +3458,7 @@ bool PythonQtShell_QAudioDecoderControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3491,7 +3491,7 @@ qint64 PythonQtShell_QAudioDecoderControl::position() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("position"); + static PyObject* name = PyUnicode_FromString("position"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3524,7 +3524,7 @@ QAudioBuffer PythonQtShell_QAudioDecoderControl::read() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioBuffer"}; @@ -3557,7 +3557,7 @@ void PythonQtShell_QAudioDecoderControl::setAudioFormat(const QAudioFormat& for if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioFormat"); + static PyObject* name = PyUnicode_FromString("setAudioFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -3579,7 +3579,7 @@ void PythonQtShell_QAudioDecoderControl::setSourceDevice(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceDevice"); + static PyObject* name = PyUnicode_FromString("setSourceDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -3601,7 +3601,7 @@ void PythonQtShell_QAudioDecoderControl::setSourceFilename(const QString& fileN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceFilename"); + static PyObject* name = PyUnicode_FromString("setSourceFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3623,7 +3623,7 @@ QIODevice* PythonQtShell_QAudioDecoderControl::sourceDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceDevice"); + static PyObject* name = PyUnicode_FromString("sourceDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -3656,7 +3656,7 @@ QString PythonQtShell_QAudioDecoderControl::sourceFilename() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceFilename"); + static PyObject* name = PyUnicode_FromString("sourceFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3689,7 +3689,7 @@ void PythonQtShell_QAudioDecoderControl::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3711,7 +3711,7 @@ QAudioDecoder::State PythonQtShell_QAudioDecoderControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioDecoder::State"}; @@ -3744,7 +3744,7 @@ void PythonQtShell_QAudioDecoderControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3766,7 +3766,7 @@ void PythonQtShell_QAudioDecoderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4086,7 +4086,7 @@ QAudioEncoderSettings PythonQtShell_QAudioEncoderSettingsControl::audioSettings if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioSettings"); + static PyObject* name = PyUnicode_FromString("audioSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioEncoderSettings"}; @@ -4119,7 +4119,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4141,7 +4141,7 @@ QString PythonQtShell_QAudioEncoderSettingsControl::codecDescription(const QStr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("codecDescription"); + static PyObject* name = PyUnicode_FromString("codecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -4174,7 +4174,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4196,7 +4196,7 @@ bool PythonQtShell_QAudioEncoderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4229,7 +4229,7 @@ bool PythonQtShell_QAudioEncoderSettingsControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4262,7 +4262,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::setAudioSettings(const QAudioEn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioSettings"); + static PyObject* name = PyUnicode_FromString("setAudioSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioEncoderSettings&"}; @@ -4284,7 +4284,7 @@ QStringList PythonQtShell_QAudioEncoderSettingsControl::supportedAudioCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedAudioCodecs"); + static PyObject* name = PyUnicode_FromString("supportedAudioCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4317,7 +4317,7 @@ QList PythonQtShell_QAudioEncoderSettingsControl::supportedSampleRates(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleRates"); + static PyObject* name = PyUnicode_FromString("supportedSampleRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QAudioEncoderSettings&" , "bool*"}; @@ -4350,7 +4350,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4552,7 +4552,7 @@ void PythonQtShell_QAudioInput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4574,7 +4574,7 @@ void PythonQtShell_QAudioInput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4596,7 +4596,7 @@ bool PythonQtShell_QAudioInput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4629,7 +4629,7 @@ bool PythonQtShell_QAudioInput::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4662,7 +4662,7 @@ void PythonQtShell_QAudioInput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4806,7 +4806,7 @@ QString PythonQtShell_QAudioInputSelectorControl::activeInput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("activeInput"); + static PyObject* name = PyUnicode_FromString("activeInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4839,7 +4839,7 @@ QList PythonQtShell_QAudioInputSelectorControl::availableInputs() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableInputs"); + static PyObject* name = PyUnicode_FromString("availableInputs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4872,7 +4872,7 @@ void PythonQtShell_QAudioInputSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4894,7 +4894,7 @@ void PythonQtShell_QAudioInputSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4916,7 +4916,7 @@ QString PythonQtShell_QAudioInputSelectorControl::defaultInput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultInput"); + static PyObject* name = PyUnicode_FromString("defaultInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4949,7 +4949,7 @@ bool PythonQtShell_QAudioInputSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4982,7 +4982,7 @@ bool PythonQtShell_QAudioInputSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5015,7 +5015,7 @@ QString PythonQtShell_QAudioInputSelectorControl::inputDescription(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputDescription"); + static PyObject* name = PyUnicode_FromString("inputDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5048,7 +5048,7 @@ void PythonQtShell_QAudioInputSelectorControl::setActiveInput(const QString& na if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActiveInput"); + static PyObject* name = PyUnicode_FromString("setActiveInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5070,7 +5070,7 @@ void PythonQtShell_QAudioInputSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5135,7 +5135,7 @@ void PythonQtShell_QAudioOutput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5157,7 +5157,7 @@ void PythonQtShell_QAudioOutput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5179,7 +5179,7 @@ bool PythonQtShell_QAudioOutput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5212,7 +5212,7 @@ bool PythonQtShell_QAudioOutput::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5245,7 +5245,7 @@ void PythonQtShell_QAudioOutput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5399,7 +5399,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::activeOutput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("activeOutput"); + static PyObject* name = PyUnicode_FromString("activeOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5432,7 +5432,7 @@ QList PythonQtShell_QAudioOutputSelectorControl::availableOutputs() c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableOutputs"); + static PyObject* name = PyUnicode_FromString("availableOutputs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5465,7 +5465,7 @@ void PythonQtShell_QAudioOutputSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5487,7 +5487,7 @@ void PythonQtShell_QAudioOutputSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5509,7 +5509,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::defaultOutput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultOutput"); + static PyObject* name = PyUnicode_FromString("defaultOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5542,7 +5542,7 @@ bool PythonQtShell_QAudioOutputSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5575,7 +5575,7 @@ bool PythonQtShell_QAudioOutputSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5608,7 +5608,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::outputDescription(const QStr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("outputDescription"); + static PyObject* name = PyUnicode_FromString("outputDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5641,7 +5641,7 @@ void PythonQtShell_QAudioOutputSelectorControl::setActiveOutput(const QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActiveOutput"); + static PyObject* name = PyUnicode_FromString("setActiveOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5663,7 +5663,7 @@ void PythonQtShell_QAudioOutputSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5728,7 +5728,7 @@ void PythonQtShell_QAudioProbe::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5750,7 +5750,7 @@ void PythonQtShell_QAudioProbe::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5772,7 +5772,7 @@ bool PythonQtShell_QAudioProbe::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5805,7 +5805,7 @@ bool PythonQtShell_QAudioProbe::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5838,7 +5838,7 @@ void PythonQtShell_QAudioProbe::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5898,7 +5898,7 @@ void PythonQtShell_QAudioRecorder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5920,7 +5920,7 @@ void PythonQtShell_QAudioRecorder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5942,7 +5942,7 @@ bool PythonQtShell_QAudioRecorder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5975,7 +5975,7 @@ bool PythonQtShell_QAudioRecorder::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6008,7 +6008,7 @@ QMediaObject* PythonQtShell_QAudioRecorder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -6041,7 +6041,7 @@ bool PythonQtShell_QAudioRecorder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -6074,7 +6074,7 @@ void PythonQtShell_QAudioRecorder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6139,7 +6139,7 @@ QAudio::Role PythonQtShell_QAudioRoleControl::audioRole() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioRole"); + static PyObject* name = PyUnicode_FromString("audioRole"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Role"}; @@ -6172,7 +6172,7 @@ void PythonQtShell_QAudioRoleControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6194,7 +6194,7 @@ void PythonQtShell_QAudioRoleControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6216,7 +6216,7 @@ bool PythonQtShell_QAudioRoleControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6249,7 +6249,7 @@ bool PythonQtShell_QAudioRoleControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6282,7 +6282,7 @@ void PythonQtShell_QAudioRoleControl::setAudioRole(QAudio::Role role0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioRole"); + static PyObject* name = PyUnicode_FromString("setAudioRole"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAudio::Role"}; @@ -6304,7 +6304,7 @@ QList PythonQtShell_QAudioRoleControl::supportedAudioRoles() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedAudioRoles"); + static PyObject* name = PyUnicode_FromString("supportedAudioRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -6337,7 +6337,7 @@ void PythonQtShell_QAudioRoleControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6397,7 +6397,7 @@ QList PythonQtShell_QAudioSystemFactoryInterface::availableDevices if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableDevices"); + static PyObject* name = PyUnicode_FromString("availableDevices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAudio::Mode"}; @@ -6430,7 +6430,7 @@ QAbstractAudioDeviceInfo* PythonQtShell_QAudioSystemFactoryInterface::createDev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createDeviceInfo"); + static PyObject* name = PyUnicode_FromString("createDeviceInfo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioDeviceInfo*" , "const QByteArray&" , "QAudio::Mode"}; @@ -6463,7 +6463,7 @@ QAbstractAudioInput* PythonQtShell_QAudioSystemFactoryInterface::createInput(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createInput"); + static PyObject* name = PyUnicode_FromString("createInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioInput*" , "const QByteArray&"}; @@ -6496,7 +6496,7 @@ QAbstractAudioOutput* PythonQtShell_QAudioSystemFactoryInterface::createOutput( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createOutput"); + static PyObject* name = PyUnicode_FromString("createOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioOutput*" , "const QByteArray&"}; @@ -6559,7 +6559,7 @@ QList PythonQtShell_QAudioSystemPlugin::availableDevices(QAudio::M if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableDevices"); + static PyObject* name = PyUnicode_FromString("availableDevices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAudio::Mode"}; @@ -6592,7 +6592,7 @@ QAbstractAudioDeviceInfo* PythonQtShell_QAudioSystemPlugin::createDeviceInfo(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createDeviceInfo"); + static PyObject* name = PyUnicode_FromString("createDeviceInfo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioDeviceInfo*" , "const QByteArray&" , "QAudio::Mode"}; @@ -6625,7 +6625,7 @@ QAbstractAudioInput* PythonQtShell_QAudioSystemPlugin::createInput(const QByteA if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createInput"); + static PyObject* name = PyUnicode_FromString("createInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioInput*" , "const QByteArray&"}; @@ -6658,7 +6658,7 @@ QAbstractAudioOutput* PythonQtShell_QAudioSystemPlugin::createOutput(const QByt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createOutput"); + static PyObject* name = PyUnicode_FromString("createOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioOutput*" , "const QByteArray&"}; @@ -6734,7 +6734,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QCamera::availability() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -6767,7 +6767,7 @@ bool PythonQtShell_QCamera::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -6800,7 +6800,7 @@ void PythonQtShell_QCamera::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6822,7 +6822,7 @@ void PythonQtShell_QCamera::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6844,7 +6844,7 @@ bool PythonQtShell_QCamera::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6877,7 +6877,7 @@ bool PythonQtShell_QCamera::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6910,7 +6910,7 @@ bool PythonQtShell_QCamera::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6943,7 +6943,7 @@ QMediaService* PythonQtShell_QCamera::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -6976,7 +6976,7 @@ void PythonQtShell_QCamera::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6998,7 +6998,7 @@ void PythonQtShell_QCamera::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7175,7 +7175,7 @@ QVideoFrame::PixelFormat PythonQtShell_QCameraCaptureBufferFormatControl::buffe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferFormat"); + static PyObject* name = PyUnicode_FromString("bufferFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoFrame::PixelFormat"}; @@ -7208,7 +7208,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::childEvent(QChildEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7230,7 +7230,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::customEvent(QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7252,7 +7252,7 @@ bool PythonQtShell_QCameraCaptureBufferFormatControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7285,7 +7285,7 @@ bool PythonQtShell_QCameraCaptureBufferFormatControl::eventFilter(QObject* wat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7318,7 +7318,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::setBufferFormat(QVideoFram if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferFormat"); + static PyObject* name = PyUnicode_FromString("setBufferFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QVideoFrame::PixelFormat"}; @@ -7340,7 +7340,7 @@ QList PythonQtShell_QCameraCaptureBufferFormatContro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedBufferFormats"); + static PyObject* name = PyUnicode_FromString("supportedBufferFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7373,7 +7373,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::timerEvent(QTimerEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7433,7 +7433,7 @@ QCameraImageCapture::CaptureDestinations PythonQtShell_QCameraCaptureDestinatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("captureDestination"); + static PyObject* name = PyUnicode_FromString("captureDestination"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraImageCapture::CaptureDestinations"}; @@ -7466,7 +7466,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::childEvent(QChildEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7488,7 +7488,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::customEvent(QEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7510,7 +7510,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7543,7 +7543,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::eventFilter(QObject* watc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7576,7 +7576,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::isCaptureDestinationSuppor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCaptureDestinationSupported"); + static PyObject* name = PyUnicode_FromString("isCaptureDestinationSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageCapture::CaptureDestinations"}; @@ -7609,7 +7609,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::setCaptureDestination(QCame if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCaptureDestination"); + static PyObject* name = PyUnicode_FromString("setCaptureDestination"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageCapture::CaptureDestinations"}; @@ -7631,7 +7631,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::timerEvent(QTimerEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7691,7 +7691,7 @@ bool PythonQtShell_QCameraControl::canChangeProperty(QCameraControl::PropertyCh if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canChangeProperty"); + static PyObject* name = PyUnicode_FromString("canChangeProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraControl::PropertyChangeType" , "QCamera::Status"}; @@ -7724,7 +7724,7 @@ QCamera::CaptureModes PythonQtShell_QCameraControl::captureMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("captureMode"); + static PyObject* name = PyUnicode_FromString("captureMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::CaptureModes"}; @@ -7757,7 +7757,7 @@ void PythonQtShell_QCameraControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7779,7 +7779,7 @@ void PythonQtShell_QCameraControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7801,7 +7801,7 @@ bool PythonQtShell_QCameraControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7834,7 +7834,7 @@ bool PythonQtShell_QCameraControl::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7867,7 +7867,7 @@ bool PythonQtShell_QCameraControl::isCaptureModeSupported(QCamera::CaptureModes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCaptureModeSupported"); + static PyObject* name = PyUnicode_FromString("isCaptureModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCamera::CaptureModes"}; @@ -7900,7 +7900,7 @@ void PythonQtShell_QCameraControl::setCaptureMode(QCamera::CaptureModes arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCaptureMode"); + static PyObject* name = PyUnicode_FromString("setCaptureMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::CaptureModes"}; @@ -7922,7 +7922,7 @@ void PythonQtShell_QCameraControl::setState(QCamera::State state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setState"); + static PyObject* name = PyUnicode_FromString("setState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::State"}; @@ -7944,7 +7944,7 @@ QCamera::State PythonQtShell_QCameraControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::State"}; @@ -7977,7 +7977,7 @@ QCamera::Status PythonQtShell_QCameraControl::status() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("status"); + static PyObject* name = PyUnicode_FromString("status"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Status"}; @@ -8010,7 +8010,7 @@ void PythonQtShell_QCameraControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8192,7 +8192,7 @@ QVariant PythonQtShell_QCameraExposureControl::actualValue(QCameraExposureContr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actualValue"); + static PyObject* name = PyUnicode_FromString("actualValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraExposureControl::ExposureParameter"}; @@ -8225,7 +8225,7 @@ void PythonQtShell_QCameraExposureControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8247,7 +8247,7 @@ void PythonQtShell_QCameraExposureControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8269,7 +8269,7 @@ bool PythonQtShell_QCameraExposureControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8302,7 +8302,7 @@ bool PythonQtShell_QCameraExposureControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8335,7 +8335,7 @@ bool PythonQtShell_QCameraExposureControl::isParameterSupported(QCameraExposure if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterSupported"); + static PyObject* name = PyUnicode_FromString("isParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposureControl::ExposureParameter"}; @@ -8368,7 +8368,7 @@ QVariant PythonQtShell_QCameraExposureControl::requestedValue(QCameraExposureCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedValue"); + static PyObject* name = PyUnicode_FromString("requestedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraExposureControl::ExposureParameter"}; @@ -8401,7 +8401,7 @@ bool PythonQtShell_QCameraExposureControl::setValue(QCameraExposureControl::Exp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setValue"); + static PyObject* name = PyUnicode_FromString("setValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposureControl::ExposureParameter" , "const QVariant&"}; @@ -8434,7 +8434,7 @@ QList PythonQtShell_QCameraExposureControl::supportedParameterRange( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedParameterRange"); + static PyObject* name = PyUnicode_FromString("supportedParameterRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QCameraExposureControl::ExposureParameter" , "bool*"}; @@ -8467,7 +8467,7 @@ void PythonQtShell_QCameraExposureControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8537,7 +8537,7 @@ void PythonQtShell_QCameraFeedbackControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8559,7 +8559,7 @@ void PythonQtShell_QCameraFeedbackControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8581,7 +8581,7 @@ bool PythonQtShell_QCameraFeedbackControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8614,7 +8614,7 @@ bool PythonQtShell_QCameraFeedbackControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8647,7 +8647,7 @@ bool PythonQtShell_QCameraFeedbackControl::isEventFeedbackEnabled(QCameraFeedba if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEventFeedbackEnabled"); + static PyObject* name = PyUnicode_FromString("isEventFeedbackEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType"}; @@ -8680,7 +8680,7 @@ bool PythonQtShell_QCameraFeedbackControl::isEventFeedbackLocked(QCameraFeedbac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEventFeedbackLocked"); + static PyObject* name = PyUnicode_FromString("isEventFeedbackLocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType"}; @@ -8713,7 +8713,7 @@ void PythonQtShell_QCameraFeedbackControl::resetEventFeedback(QCameraFeedbackCon if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resetEventFeedback"); + static PyObject* name = PyUnicode_FromString("resetEventFeedback"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFeedbackControl::EventType"}; @@ -8735,7 +8735,7 @@ bool PythonQtShell_QCameraFeedbackControl::setEventFeedbackEnabled(QCameraFeedb if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEventFeedbackEnabled"); + static PyObject* name = PyUnicode_FromString("setEventFeedbackEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType" , "bool"}; @@ -8768,7 +8768,7 @@ bool PythonQtShell_QCameraFeedbackControl::setEventFeedbackSound(QCameraFeedbac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEventFeedbackSound"); + static PyObject* name = PyUnicode_FromString("setEventFeedbackSound"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType" , "const QString&"}; @@ -8801,7 +8801,7 @@ void PythonQtShell_QCameraFeedbackControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8871,7 +8871,7 @@ void PythonQtShell_QCameraFlashControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8893,7 +8893,7 @@ void PythonQtShell_QCameraFlashControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8915,7 +8915,7 @@ bool PythonQtShell_QCameraFlashControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8948,7 +8948,7 @@ bool PythonQtShell_QCameraFlashControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8981,7 +8981,7 @@ QCameraExposure::FlashModes PythonQtShell_QCameraFlashControl::flashMode() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flashMode"); + static PyObject* name = PyUnicode_FromString("flashMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraExposure::FlashModes"}; @@ -9014,7 +9014,7 @@ bool PythonQtShell_QCameraFlashControl::isFlashModeSupported(QCameraExposure::F if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFlashModeSupported"); + static PyObject* name = PyUnicode_FromString("isFlashModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposure::FlashModes"}; @@ -9047,7 +9047,7 @@ bool PythonQtShell_QCameraFlashControl::isFlashReady() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFlashReady"); + static PyObject* name = PyUnicode_FromString("isFlashReady"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9080,7 +9080,7 @@ void PythonQtShell_QCameraFlashControl::setFlashMode(QCameraExposure::FlashModes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFlashMode"); + static PyObject* name = PyUnicode_FromString("setFlashMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraExposure::FlashModes"}; @@ -9102,7 +9102,7 @@ void PythonQtShell_QCameraFlashControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp index 95d7f2bdc..a92e7bf65 100644 --- a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +++ b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp @@ -157,7 +157,7 @@ void PythonQtShell_QCameraFocusControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -179,7 +179,7 @@ void PythonQtShell_QCameraFocusControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -201,7 +201,7 @@ QPointF PythonQtShell_QCameraFocusControl::customFocusPoint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customFocusPoint"); + static PyObject* name = PyUnicode_FromString("customFocusPoint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPointF"}; @@ -234,7 +234,7 @@ bool PythonQtShell_QCameraFocusControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -267,7 +267,7 @@ bool PythonQtShell_QCameraFocusControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -300,7 +300,7 @@ QCameraFocus::FocusModes PythonQtShell_QCameraFocusControl::focusMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusMode"); + static PyObject* name = PyUnicode_FromString("focusMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraFocus::FocusModes"}; @@ -333,7 +333,7 @@ QCameraFocus::FocusPointMode PythonQtShell_QCameraFocusControl::focusPointMode( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusPointMode"); + static PyObject* name = PyUnicode_FromString("focusPointMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraFocus::FocusPointMode"}; @@ -366,7 +366,7 @@ QList PythonQtShell_QCameraFocusControl::focusZones() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusZones"); + static PyObject* name = PyUnicode_FromString("focusZones"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -399,7 +399,7 @@ bool PythonQtShell_QCameraFocusControl::isFocusModeSupported(QCameraFocus::Focu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFocusModeSupported"); + static PyObject* name = PyUnicode_FromString("isFocusModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFocus::FocusModes"}; @@ -432,7 +432,7 @@ bool PythonQtShell_QCameraFocusControl::isFocusPointModeSupported(QCameraFocus: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFocusPointModeSupported"); + static PyObject* name = PyUnicode_FromString("isFocusPointModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFocus::FocusPointMode"}; @@ -465,7 +465,7 @@ void PythonQtShell_QCameraFocusControl::setCustomFocusPoint(const QPointF& poin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCustomFocusPoint"); + static PyObject* name = PyUnicode_FromString("setCustomFocusPoint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&"}; @@ -487,7 +487,7 @@ void PythonQtShell_QCameraFocusControl::setFocusMode(QCameraFocus::FocusModes m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFocusMode"); + static PyObject* name = PyUnicode_FromString("setFocusMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFocus::FocusModes"}; @@ -509,7 +509,7 @@ void PythonQtShell_QCameraFocusControl::setFocusPointMode(QCameraFocus::FocusPoi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFocusPointMode"); + static PyObject* name = PyUnicode_FromString("setFocusPointMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFocus::FocusPointMode"}; @@ -531,7 +531,7 @@ void PythonQtShell_QCameraFocusControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -670,7 +670,7 @@ void PythonQtShell_QCameraImageCapture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -692,7 +692,7 @@ void PythonQtShell_QCameraImageCapture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -714,7 +714,7 @@ bool PythonQtShell_QCameraImageCapture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -747,7 +747,7 @@ bool PythonQtShell_QCameraImageCapture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -780,7 +780,7 @@ QMediaObject* PythonQtShell_QCameraImageCapture::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -813,7 +813,7 @@ bool PythonQtShell_QCameraImageCapture::setMediaObject(QMediaObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -846,7 +846,7 @@ void PythonQtShell_QCameraImageCapture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -971,7 +971,7 @@ void PythonQtShell_QCameraImageCaptureControl::cancelCapture() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelCapture"); + static PyObject* name = PyUnicode_FromString("cancelCapture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -993,7 +993,7 @@ int PythonQtShell_QCameraImageCaptureControl::capture(const QString& fileName0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("capture"); + static PyObject* name = PyUnicode_FromString("capture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -1026,7 +1026,7 @@ void PythonQtShell_QCameraImageCaptureControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1048,7 +1048,7 @@ void PythonQtShell_QCameraImageCaptureControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1070,7 +1070,7 @@ QCameraImageCapture::DriveMode PythonQtShell_QCameraImageCaptureControl::driveM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("driveMode"); + static PyObject* name = PyUnicode_FromString("driveMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraImageCapture::DriveMode"}; @@ -1103,7 +1103,7 @@ bool PythonQtShell_QCameraImageCaptureControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1136,7 +1136,7 @@ bool PythonQtShell_QCameraImageCaptureControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1169,7 +1169,7 @@ bool PythonQtShell_QCameraImageCaptureControl::isReadyForCapture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isReadyForCapture"); + static PyObject* name = PyUnicode_FromString("isReadyForCapture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1202,7 +1202,7 @@ void PythonQtShell_QCameraImageCaptureControl::setDriveMode(QCameraImageCapture: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDriveMode"); + static PyObject* name = PyUnicode_FromString("setDriveMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageCapture::DriveMode"}; @@ -1224,7 +1224,7 @@ void PythonQtShell_QCameraImageCaptureControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1391,7 +1391,7 @@ void PythonQtShell_QCameraImageProcessingControl::childEvent(QChildEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1413,7 +1413,7 @@ void PythonQtShell_QCameraImageProcessingControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1435,7 +1435,7 @@ bool PythonQtShell_QCameraImageProcessingControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1468,7 +1468,7 @@ bool PythonQtShell_QCameraImageProcessingControl::eventFilter(QObject* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1501,7 +1501,7 @@ bool PythonQtShell_QCameraImageProcessingControl::isParameterSupported(QCameraI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterSupported"); + static PyObject* name = PyUnicode_FromString("isParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageProcessingControl::ProcessingParameter"}; @@ -1534,7 +1534,7 @@ bool PythonQtShell_QCameraImageProcessingControl::isParameterValueSupported(QCa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterValueSupported"); + static PyObject* name = PyUnicode_FromString("isParameterValueSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageProcessingControl::ProcessingParameter" , "const QVariant&"}; @@ -1567,7 +1567,7 @@ QVariant PythonQtShell_QCameraImageProcessingControl::parameter(QCameraImagePro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parameter"); + static PyObject* name = PyUnicode_FromString("parameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraImageProcessingControl::ProcessingParameter"}; @@ -1600,7 +1600,7 @@ void PythonQtShell_QCameraImageProcessingControl::setParameter(QCameraImageProce if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setParameter"); + static PyObject* name = PyUnicode_FromString("setParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageProcessingControl::ProcessingParameter" , "const QVariant&"}; @@ -1622,7 +1622,7 @@ void PythonQtShell_QCameraImageProcessingControl::timerEvent(QTimerEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1758,7 +1758,7 @@ int PythonQtShell_QCameraInfoControl::cameraOrientation(const QString& deviceN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraOrientation"); + static PyObject* name = PyUnicode_FromString("cameraOrientation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -1791,7 +1791,7 @@ QCamera::Position PythonQtShell_QCameraInfoControl::cameraPosition(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraPosition"); + static PyObject* name = PyUnicode_FromString("cameraPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Position" , "const QString&"}; @@ -1824,7 +1824,7 @@ void PythonQtShell_QCameraInfoControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1846,7 +1846,7 @@ void PythonQtShell_QCameraInfoControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1868,7 +1868,7 @@ bool PythonQtShell_QCameraInfoControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1901,7 +1901,7 @@ bool PythonQtShell_QCameraInfoControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1934,7 +1934,7 @@ void PythonQtShell_QCameraInfoControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1989,7 +1989,7 @@ void PythonQtShell_QCameraLocksControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2011,7 +2011,7 @@ void PythonQtShell_QCameraLocksControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2033,7 +2033,7 @@ bool PythonQtShell_QCameraLocksControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2066,7 +2066,7 @@ bool PythonQtShell_QCameraLocksControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2099,7 +2099,7 @@ QCamera::LockStatus PythonQtShell_QCameraLocksControl::lockStatus(QCamera::Lock if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lockStatus"); + static PyObject* name = PyUnicode_FromString("lockStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::LockStatus" , "QCamera::LockType"}; @@ -2132,7 +2132,7 @@ void PythonQtShell_QCameraLocksControl::searchAndLock(QCamera::LockTypes locks0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchAndLock"); + static PyObject* name = PyUnicode_FromString("searchAndLock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::LockTypes"}; @@ -2154,7 +2154,7 @@ QCamera::LockTypes PythonQtShell_QCameraLocksControl::supportedLocks() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedLocks"); + static PyObject* name = PyUnicode_FromString("supportedLocks"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::LockTypes"}; @@ -2187,7 +2187,7 @@ void PythonQtShell_QCameraLocksControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2209,7 +2209,7 @@ void PythonQtShell_QCameraLocksControl::unlock(QCamera::LockTypes locks0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unlock"); + static PyObject* name = PyUnicode_FromString("unlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::LockTypes"}; @@ -2274,7 +2274,7 @@ void PythonQtShell_QCameraViewfinder::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2296,7 +2296,7 @@ void PythonQtShell_QCameraViewfinder::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2318,7 +2318,7 @@ void PythonQtShell_QCameraViewfinder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2340,7 +2340,7 @@ void PythonQtShell_QCameraViewfinder::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2362,7 +2362,7 @@ void PythonQtShell_QCameraViewfinder::contextMenuEvent(QContextMenuEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2384,7 +2384,7 @@ void PythonQtShell_QCameraViewfinder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2406,7 +2406,7 @@ int PythonQtShell_QCameraViewfinder::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2439,7 +2439,7 @@ void PythonQtShell_QCameraViewfinder::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2461,7 +2461,7 @@ void PythonQtShell_QCameraViewfinder::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2483,7 +2483,7 @@ void PythonQtShell_QCameraViewfinder::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2505,7 +2505,7 @@ void PythonQtShell_QCameraViewfinder::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2527,7 +2527,7 @@ void PythonQtShell_QCameraViewfinder::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2549,7 +2549,7 @@ bool PythonQtShell_QCameraViewfinder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2582,7 +2582,7 @@ bool PythonQtShell_QCameraViewfinder::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2615,7 +2615,7 @@ void PythonQtShell_QCameraViewfinder::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2637,7 +2637,7 @@ bool PythonQtShell_QCameraViewfinder::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2670,7 +2670,7 @@ void PythonQtShell_QCameraViewfinder::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2692,7 +2692,7 @@ bool PythonQtShell_QCameraViewfinder::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2725,7 +2725,7 @@ int PythonQtShell_QCameraViewfinder::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2758,7 +2758,7 @@ void PythonQtShell_QCameraViewfinder::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2780,7 +2780,7 @@ void PythonQtShell_QCameraViewfinder::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2802,7 +2802,7 @@ void PythonQtShell_QCameraViewfinder::inputMethodEvent(QInputMethodEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2824,7 +2824,7 @@ QVariant PythonQtShell_QCameraViewfinder::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2857,7 +2857,7 @@ void PythonQtShell_QCameraViewfinder::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2879,7 +2879,7 @@ void PythonQtShell_QCameraViewfinder::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2901,7 +2901,7 @@ void PythonQtShell_QCameraViewfinder::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2923,7 +2923,7 @@ QMediaObject* PythonQtShell_QCameraViewfinder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2956,7 +2956,7 @@ int PythonQtShell_QCameraViewfinder::metric(QPaintDevice::PaintDeviceMetric ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2989,7 +2989,7 @@ QSize PythonQtShell_QCameraViewfinder::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3022,7 +3022,7 @@ void PythonQtShell_QCameraViewfinder::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3044,7 +3044,7 @@ void PythonQtShell_QCameraViewfinder::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3066,7 +3066,7 @@ void PythonQtShell_QCameraViewfinder::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3088,7 +3088,7 @@ void PythonQtShell_QCameraViewfinder::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3110,7 +3110,7 @@ void PythonQtShell_QCameraViewfinder::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3132,7 +3132,7 @@ bool PythonQtShell_QCameraViewfinder::nativeEvent(const QByteArray& eventType0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3165,7 +3165,7 @@ QPaintEngine* PythonQtShell_QCameraViewfinder::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3198,7 +3198,7 @@ void PythonQtShell_QCameraViewfinder::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3220,7 +3220,7 @@ QPaintDevice* PythonQtShell_QCameraViewfinder::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3253,7 +3253,7 @@ void PythonQtShell_QCameraViewfinder::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3275,7 +3275,7 @@ bool PythonQtShell_QCameraViewfinder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -3308,7 +3308,7 @@ void PythonQtShell_QCameraViewfinder::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3330,7 +3330,7 @@ QPainter* PythonQtShell_QCameraViewfinder::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3363,7 +3363,7 @@ void PythonQtShell_QCameraViewfinder::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3385,7 +3385,7 @@ QSize PythonQtShell_QCameraViewfinder::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3418,7 +3418,7 @@ void PythonQtShell_QCameraViewfinder::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3440,7 +3440,7 @@ void PythonQtShell_QCameraViewfinder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3462,7 +3462,7 @@ void PythonQtShell_QCameraViewfinder::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3597,7 +3597,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::childEvent(QChildEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3619,7 +3619,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::customEvent(QEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3641,7 +3641,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3674,7 +3674,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::eventFilter(QObject* watc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3707,7 +3707,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::isViewfinderParameterSuppo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isViewfinderParameterSupported"); + static PyObject* name = PyUnicode_FromString("isViewfinderParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraViewfinderSettingsControl::ViewfinderParameter"}; @@ -3740,7 +3740,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::setViewfinderParameter(QCam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setViewfinderParameter"); + static PyObject* name = PyUnicode_FromString("setViewfinderParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraViewfinderSettingsControl::ViewfinderParameter" , "const QVariant&"}; @@ -3762,7 +3762,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::timerEvent(QTimerEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3784,7 +3784,7 @@ QVariant PythonQtShell_QCameraViewfinderSettingsControl::viewfinderParameter(QC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewfinderParameter"); + static PyObject* name = PyUnicode_FromString("viewfinderParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraViewfinderSettingsControl::ViewfinderParameter"}; @@ -3855,7 +3855,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::childEvent(QChildEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3877,7 +3877,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::customEvent(QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3899,7 +3899,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl2::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3932,7 +3932,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl2::eventFilter(QObject* wat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3965,7 +3965,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::setViewfinderSettings(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setViewfinderSettings"); + static PyObject* name = PyUnicode_FromString("setViewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QCameraViewfinderSettings&"}; @@ -3987,7 +3987,7 @@ QList PythonQtShell_QCameraViewfinderSettingsContro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedViewfinderSettings"); + static PyObject* name = PyUnicode_FromString("supportedViewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4020,7 +4020,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::timerEvent(QTimerEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4042,7 +4042,7 @@ QCameraViewfinderSettings PythonQtShell_QCameraViewfinderSettingsControl2::view if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewfinderSettings"); + static PyObject* name = PyUnicode_FromString("viewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraViewfinderSettings"}; @@ -4113,7 +4113,7 @@ void PythonQtShell_QCameraZoomControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4135,7 +4135,7 @@ qreal PythonQtShell_QCameraZoomControl::currentDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentDigitalZoom"); + static PyObject* name = PyUnicode_FromString("currentDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4168,7 +4168,7 @@ qreal PythonQtShell_QCameraZoomControl::currentOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentOpticalZoom"); + static PyObject* name = PyUnicode_FromString("currentOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4201,7 +4201,7 @@ void PythonQtShell_QCameraZoomControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4223,7 +4223,7 @@ bool PythonQtShell_QCameraZoomControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4256,7 +4256,7 @@ bool PythonQtShell_QCameraZoomControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4289,7 +4289,7 @@ qreal PythonQtShell_QCameraZoomControl::maximumDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumDigitalZoom"); + static PyObject* name = PyUnicode_FromString("maximumDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4322,7 +4322,7 @@ qreal PythonQtShell_QCameraZoomControl::maximumOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumOpticalZoom"); + static PyObject* name = PyUnicode_FromString("maximumOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4355,7 +4355,7 @@ qreal PythonQtShell_QCameraZoomControl::requestedDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedDigitalZoom"); + static PyObject* name = PyUnicode_FromString("requestedDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4388,7 +4388,7 @@ qreal PythonQtShell_QCameraZoomControl::requestedOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedOpticalZoom"); + static PyObject* name = PyUnicode_FromString("requestedOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4421,7 +4421,7 @@ void PythonQtShell_QCameraZoomControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4443,7 +4443,7 @@ void PythonQtShell_QCameraZoomControl::zoomTo(qreal optical0, qreal digital1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("zoomTo"); + static PyObject* name = PyUnicode_FromString("zoomTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal" , "qreal"}; @@ -4547,7 +4547,7 @@ void PythonQtShell_QGraphicsVideoItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4569,7 +4569,7 @@ QRectF PythonQtShell_QGraphicsVideoItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -4602,7 +4602,7 @@ void PythonQtShell_QGraphicsVideoItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4624,7 +4624,7 @@ bool PythonQtShell_QGraphicsVideoItem::collidesWithItem(const QGraphicsItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -4657,7 +4657,7 @@ bool PythonQtShell_QGraphicsVideoItem::collidesWithPath(const QPainterPath& pa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -4690,7 +4690,7 @@ bool PythonQtShell_QGraphicsVideoItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -4723,7 +4723,7 @@ void PythonQtShell_QGraphicsVideoItem::contextMenuEvent(QGraphicsSceneContextMen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -4745,7 +4745,7 @@ void PythonQtShell_QGraphicsVideoItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4767,7 +4767,7 @@ void PythonQtShell_QGraphicsVideoItem::dragEnterEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4789,7 +4789,7 @@ void PythonQtShell_QGraphicsVideoItem::dragLeaveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4811,7 +4811,7 @@ void PythonQtShell_QGraphicsVideoItem::dragMoveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4833,7 +4833,7 @@ void PythonQtShell_QGraphicsVideoItem::dropEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -4855,7 +4855,7 @@ bool PythonQtShell_QGraphicsVideoItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4888,7 +4888,7 @@ bool PythonQtShell_QGraphicsVideoItem::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4921,7 +4921,7 @@ QVariant PythonQtShell_QGraphicsVideoItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -4954,7 +4954,7 @@ void PythonQtShell_QGraphicsVideoItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4976,7 +4976,7 @@ void PythonQtShell_QGraphicsVideoItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4998,7 +4998,7 @@ void PythonQtShell_QGraphicsVideoItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5020,7 +5020,7 @@ void PythonQtShell_QGraphicsVideoItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5042,7 +5042,7 @@ void PythonQtShell_QGraphicsVideoItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5064,7 +5064,7 @@ void PythonQtShell_QGraphicsVideoItem::inputMethodEvent(QInputMethodEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5086,7 +5086,7 @@ QVariant PythonQtShell_QGraphicsVideoItem::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5119,7 +5119,7 @@ bool PythonQtShell_QGraphicsVideoItem::isObscuredBy(const QGraphicsItem* item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5152,7 +5152,7 @@ QVariant PythonQtShell_QGraphicsVideoItem::itemChange(QGraphicsItem::GraphicsIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -5188,7 +5188,7 @@ void PythonQtShell_QGraphicsVideoItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5210,7 +5210,7 @@ void PythonQtShell_QGraphicsVideoItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5232,7 +5232,7 @@ QMediaObject* PythonQtShell_QGraphicsVideoItem::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5265,7 +5265,7 @@ void PythonQtShell_QGraphicsVideoItem::mouseDoubleClickEvent(QGraphicsSceneMouse if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5287,7 +5287,7 @@ void PythonQtShell_QGraphicsVideoItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5309,7 +5309,7 @@ void PythonQtShell_QGraphicsVideoItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5331,7 +5331,7 @@ void PythonQtShell_QGraphicsVideoItem::mouseReleaseEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -5353,7 +5353,7 @@ QPainterPath PythonQtShell_QGraphicsVideoItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5386,7 +5386,7 @@ void PythonQtShell_QGraphicsVideoItem::paint(QPainter* painter0, const QStyleOp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -5408,7 +5408,7 @@ bool PythonQtShell_QGraphicsVideoItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5441,7 +5441,7 @@ bool PythonQtShell_QGraphicsVideoItem::sceneEventFilter(QGraphicsItem* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -5474,7 +5474,7 @@ void PythonQtShell_QGraphicsVideoItem::setExtension(QGraphicsItem::Extension ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -5496,7 +5496,7 @@ bool PythonQtShell_QGraphicsVideoItem::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5529,7 +5529,7 @@ QPainterPath PythonQtShell_QGraphicsVideoItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5562,7 +5562,7 @@ bool PythonQtShell_QGraphicsVideoItem::supportsExtension(QGraphicsItem::Extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -5595,7 +5595,7 @@ void PythonQtShell_QGraphicsVideoItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5617,7 +5617,7 @@ int PythonQtShell_QGraphicsVideoItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5650,7 +5650,7 @@ void PythonQtShell_QGraphicsVideoItem::wheelEvent(QGraphicsSceneWheelEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -5735,7 +5735,7 @@ void PythonQtShell_QImageEncoderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5757,7 +5757,7 @@ void PythonQtShell_QImageEncoderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5779,7 +5779,7 @@ bool PythonQtShell_QImageEncoderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5812,7 +5812,7 @@ bool PythonQtShell_QImageEncoderControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5845,7 +5845,7 @@ QString PythonQtShell_QImageEncoderControl::imageCodecDescription(const QString if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageCodecDescription"); + static PyObject* name = PyUnicode_FromString("imageCodecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5878,7 +5878,7 @@ QImageEncoderSettings PythonQtShell_QImageEncoderControl::imageSettings() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageSettings"); + static PyObject* name = PyUnicode_FromString("imageSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageEncoderSettings"}; @@ -5911,7 +5911,7 @@ void PythonQtShell_QImageEncoderControl::setImageSettings(const QImageEncoderSet if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setImageSettings"); + static PyObject* name = PyUnicode_FromString("setImageSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QImageEncoderSettings&"}; @@ -5933,7 +5933,7 @@ QStringList PythonQtShell_QImageEncoderControl::supportedImageCodecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedImageCodecs"); + static PyObject* name = PyUnicode_FromString("supportedImageCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5966,7 +5966,7 @@ QList PythonQtShell_QImageEncoderControl::supportedResolutions(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedResolutions"); + static PyObject* name = PyUnicode_FromString("supportedResolutions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QImageEncoderSettings&" , "bool*"}; @@ -5999,7 +5999,7 @@ void PythonQtShell_QImageEncoderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6154,7 +6154,7 @@ void PythonQtShell_QMediaAudioProbeControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6176,7 +6176,7 @@ void PythonQtShell_QMediaAudioProbeControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6198,7 +6198,7 @@ bool PythonQtShell_QMediaAudioProbeControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6231,7 +6231,7 @@ bool PythonQtShell_QMediaAudioProbeControl::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6264,7 +6264,7 @@ void PythonQtShell_QMediaAudioProbeControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6309,7 +6309,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaAvailabilityControl::availa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -6342,7 +6342,7 @@ void PythonQtShell_QMediaAvailabilityControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6364,7 +6364,7 @@ void PythonQtShell_QMediaAvailabilityControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6386,7 +6386,7 @@ bool PythonQtShell_QMediaAvailabilityControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6419,7 +6419,7 @@ bool PythonQtShell_QMediaAvailabilityControl::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6452,7 +6452,7 @@ void PythonQtShell_QMediaAvailabilityControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6502,7 +6502,7 @@ QMediaObject* PythonQtShell_QMediaBindableInterface::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -6535,7 +6535,7 @@ bool PythonQtShell_QMediaBindableInterface::setMediaObject(QMediaObject* objec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -6588,7 +6588,7 @@ void PythonQtShell_QMediaContainerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6610,7 +6610,7 @@ QString PythonQtShell_QMediaContainerControl::containerDescription(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("containerDescription"); + static PyObject* name = PyUnicode_FromString("containerDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -6643,7 +6643,7 @@ QString PythonQtShell_QMediaContainerControl::containerFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("containerFormat"); + static PyObject* name = PyUnicode_FromString("containerFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6676,7 +6676,7 @@ void PythonQtShell_QMediaContainerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6698,7 +6698,7 @@ bool PythonQtShell_QMediaContainerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6731,7 +6731,7 @@ bool PythonQtShell_QMediaContainerControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6764,7 +6764,7 @@ void PythonQtShell_QMediaContainerControl::setContainerFormat(const QString& fo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContainerFormat"); + static PyObject* name = PyUnicode_FromString("setContainerFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6786,7 +6786,7 @@ QStringList PythonQtShell_QMediaContainerControl::supportedContainers() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedContainers"); + static PyObject* name = PyUnicode_FromString("supportedContainers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6819,7 +6819,7 @@ void PythonQtShell_QMediaContainerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6964,7 +6964,7 @@ void PythonQtShell_QMediaControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6986,7 +6986,7 @@ void PythonQtShell_QMediaControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7008,7 +7008,7 @@ bool PythonQtShell_QMediaControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7041,7 +7041,7 @@ bool PythonQtShell_QMediaControl::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7074,7 +7074,7 @@ void PythonQtShell_QMediaControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7119,7 +7119,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7141,7 +7141,7 @@ qreal PythonQtShell_QMediaGaplessPlaybackControl::crossfadeTime() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("crossfadeTime"); + static PyObject* name = PyUnicode_FromString("crossfadeTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -7174,7 +7174,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7196,7 +7196,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7229,7 +7229,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7262,7 +7262,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::isCrossfadeSupported() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCrossfadeSupported"); + static PyObject* name = PyUnicode_FromString("isCrossfadeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7295,7 +7295,7 @@ QMediaContent PythonQtShell_QMediaGaplessPlaybackControl::nextMedia() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextMedia"); + static PyObject* name = PyUnicode_FromString("nextMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaContent"}; @@ -7328,7 +7328,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::setCrossfadeTime(qreal crossfa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCrossfadeTime"); + static PyObject* name = PyUnicode_FromString("setCrossfadeTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7350,7 +7350,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::setNextMedia(const QMediaConten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNextMedia"); + static PyObject* name = PyUnicode_FromString("setNextMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMediaContent&"}; @@ -7372,7 +7372,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7442,7 +7442,7 @@ void PythonQtShell_QMediaNetworkAccessControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7464,7 +7464,7 @@ QNetworkConfiguration PythonQtShell_QMediaNetworkAccessControl::currentConfigur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentConfiguration"); + static PyObject* name = PyUnicode_FromString("currentConfiguration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkConfiguration"}; @@ -7497,7 +7497,7 @@ void PythonQtShell_QMediaNetworkAccessControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7519,7 +7519,7 @@ bool PythonQtShell_QMediaNetworkAccessControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7552,7 +7552,7 @@ bool PythonQtShell_QMediaNetworkAccessControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7585,7 +7585,7 @@ void PythonQtShell_QMediaNetworkAccessControl::setConfigurations(const QList 0) { - static PyObject* name = PyString_FromString("setConfigurations"); + static PyObject* name = PyUnicode_FromString("setConfigurations"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -7607,7 +7607,7 @@ void PythonQtShell_QMediaNetworkAccessControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7662,7 +7662,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaObject::availability() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -7695,7 +7695,7 @@ bool PythonQtShell_QMediaObject::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -7728,7 +7728,7 @@ void PythonQtShell_QMediaObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7750,7 +7750,7 @@ void PythonQtShell_QMediaObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7772,7 +7772,7 @@ bool PythonQtShell_QMediaObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7805,7 +7805,7 @@ bool PythonQtShell_QMediaObject::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7838,7 +7838,7 @@ bool PythonQtShell_QMediaObject::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7871,7 +7871,7 @@ QMediaService* PythonQtShell_QMediaObject::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -7904,7 +7904,7 @@ void PythonQtShell_QMediaObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7926,7 +7926,7 @@ void PythonQtShell_QMediaObject::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -8031,7 +8031,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaPlayer::availability() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -8064,7 +8064,7 @@ bool PythonQtShell_QMediaPlayer::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -8097,7 +8097,7 @@ void PythonQtShell_QMediaPlayer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8119,7 +8119,7 @@ void PythonQtShell_QMediaPlayer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8141,7 +8141,7 @@ bool PythonQtShell_QMediaPlayer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8174,7 +8174,7 @@ bool PythonQtShell_QMediaPlayer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8207,7 +8207,7 @@ bool PythonQtShell_QMediaPlayer::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8240,7 +8240,7 @@ QMediaService* PythonQtShell_QMediaPlayer::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -8273,7 +8273,7 @@ void PythonQtShell_QMediaPlayer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8295,7 +8295,7 @@ void PythonQtShell_QMediaPlayer::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -8490,7 +8490,7 @@ QMediaTimeRange PythonQtShell_QMediaPlayerControl::availablePlaybackRanges() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availablePlaybackRanges"); + static PyObject* name = PyUnicode_FromString("availablePlaybackRanges"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaTimeRange"}; @@ -8523,7 +8523,7 @@ int PythonQtShell_QMediaPlayerControl::bufferStatus() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferStatus"); + static PyObject* name = PyUnicode_FromString("bufferStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8556,7 +8556,7 @@ void PythonQtShell_QMediaPlayerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8578,7 +8578,7 @@ void PythonQtShell_QMediaPlayerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8600,7 +8600,7 @@ qint64 PythonQtShell_QMediaPlayerControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8633,7 +8633,7 @@ bool PythonQtShell_QMediaPlayerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8666,7 +8666,7 @@ bool PythonQtShell_QMediaPlayerControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8699,7 +8699,7 @@ bool PythonQtShell_QMediaPlayerControl::isAudioAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAudioAvailable"); + static PyObject* name = PyUnicode_FromString("isAudioAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8732,7 +8732,7 @@ bool PythonQtShell_QMediaPlayerControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8765,7 +8765,7 @@ bool PythonQtShell_QMediaPlayerControl::isSeekable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSeekable"); + static PyObject* name = PyUnicode_FromString("isSeekable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8798,7 +8798,7 @@ bool PythonQtShell_QMediaPlayerControl::isVideoAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isVideoAvailable"); + static PyObject* name = PyUnicode_FromString("isVideoAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8831,7 +8831,7 @@ QMediaContent PythonQtShell_QMediaPlayerControl::media() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("media"); + static PyObject* name = PyUnicode_FromString("media"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaContent"}; @@ -8864,7 +8864,7 @@ QMediaPlayer::MediaStatus PythonQtShell_QMediaPlayerControl::mediaStatus() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaStatus"); + static PyObject* name = PyUnicode_FromString("mediaStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaPlayer::MediaStatus"}; @@ -8897,7 +8897,7 @@ const QIODevice* PythonQtShell_QMediaPlayerControl::mediaStream() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaStream"); + static PyObject* name = PyUnicode_FromString("mediaStream"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QIODevice*"}; @@ -8930,7 +8930,7 @@ void PythonQtShell_QMediaPlayerControl::pause() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pause"); + static PyObject* name = PyUnicode_FromString("pause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8952,7 +8952,7 @@ void PythonQtShell_QMediaPlayerControl::play() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("play"); + static PyObject* name = PyUnicode_FromString("play"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8974,7 +8974,7 @@ qreal PythonQtShell_QMediaPlayerControl::playbackRate() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("playbackRate"); + static PyObject* name = PyUnicode_FromString("playbackRate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -9007,7 +9007,7 @@ qint64 PythonQtShell_QMediaPlayerControl::position() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("position"); + static PyObject* name = PyUnicode_FromString("position"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -9040,7 +9040,7 @@ void PythonQtShell_QMediaPlayerControl::setMedia(const QMediaContent& media0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMedia"); + static PyObject* name = PyUnicode_FromString("setMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMediaContent&" , "QIODevice*"}; @@ -9062,7 +9062,7 @@ void PythonQtShell_QMediaPlayerControl::setMuted(bool mute0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9084,7 +9084,7 @@ void PythonQtShell_QMediaPlayerControl::setPlaybackRate(qreal rate0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPlaybackRate"); + static PyObject* name = PyUnicode_FromString("setPlaybackRate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -9106,7 +9106,7 @@ void PythonQtShell_QMediaPlayerControl::setPosition(qint64 position0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPosition"); + static PyObject* name = PyUnicode_FromString("setPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -9128,7 +9128,7 @@ void PythonQtShell_QMediaPlayerControl::setVolume(int volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9150,7 +9150,7 @@ QMediaPlayer::State PythonQtShell_QMediaPlayerControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaPlayer::State"}; @@ -9183,7 +9183,7 @@ void PythonQtShell_QMediaPlayerControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9205,7 +9205,7 @@ void PythonQtShell_QMediaPlayerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9227,7 +9227,7 @@ int PythonQtShell_QMediaPlayerControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; diff --git a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp index 704f8fed6..2b8a2ae28 100644 --- a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp +++ b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp @@ -40,7 +40,7 @@ void PythonQtShell_QMediaPlaylist::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -62,7 +62,7 @@ void PythonQtShell_QMediaPlaylist::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -84,7 +84,7 @@ bool PythonQtShell_QMediaPlaylist::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -117,7 +117,7 @@ bool PythonQtShell_QMediaPlaylist::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -150,7 +150,7 @@ QMediaObject* PythonQtShell_QMediaPlaylist::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -183,7 +183,7 @@ bool PythonQtShell_QMediaPlaylist::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -216,7 +216,7 @@ void PythonQtShell_QMediaPlaylist::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -386,7 +386,7 @@ void PythonQtShell_QMediaRecorder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -408,7 +408,7 @@ void PythonQtShell_QMediaRecorder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -430,7 +430,7 @@ bool PythonQtShell_QMediaRecorder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -463,7 +463,7 @@ bool PythonQtShell_QMediaRecorder::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -496,7 +496,7 @@ QMediaObject* PythonQtShell_QMediaRecorder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -529,7 +529,7 @@ bool PythonQtShell_QMediaRecorder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -562,7 +562,7 @@ void PythonQtShell_QMediaRecorder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -772,7 +772,7 @@ void PythonQtShell_QMediaRecorderControl::applySettings() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applySettings"); + static PyObject* name = PyUnicode_FromString("applySettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -794,7 +794,7 @@ void PythonQtShell_QMediaRecorderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -816,7 +816,7 @@ void PythonQtShell_QMediaRecorderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -838,7 +838,7 @@ qint64 PythonQtShell_QMediaRecorderControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -871,7 +871,7 @@ bool PythonQtShell_QMediaRecorderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -904,7 +904,7 @@ bool PythonQtShell_QMediaRecorderControl::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -937,7 +937,7 @@ bool PythonQtShell_QMediaRecorderControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -970,7 +970,7 @@ QUrl PythonQtShell_QMediaRecorderControl::outputLocation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("outputLocation"); + static PyObject* name = PyUnicode_FromString("outputLocation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl"}; @@ -1003,7 +1003,7 @@ void PythonQtShell_QMediaRecorderControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1025,7 +1025,7 @@ bool PythonQtShell_QMediaRecorderControl::setOutputLocation(const QUrl& locati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOutputLocation"); + static PyObject* name = PyUnicode_FromString("setOutputLocation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -1058,7 +1058,7 @@ void PythonQtShell_QMediaRecorderControl::setState(QMediaRecorder::State state0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setState"); + static PyObject* name = PyUnicode_FromString("setState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaRecorder::State"}; @@ -1080,7 +1080,7 @@ void PythonQtShell_QMediaRecorderControl::setVolume(qreal volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1102,7 +1102,7 @@ QMediaRecorder::State PythonQtShell_QMediaRecorderControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaRecorder::State"}; @@ -1135,7 +1135,7 @@ QMediaRecorder::Status PythonQtShell_QMediaRecorderControl::status() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("status"); + static PyObject* name = PyUnicode_FromString("status"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaRecorder::Status"}; @@ -1168,7 +1168,7 @@ void PythonQtShell_QMediaRecorderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1190,7 +1190,7 @@ qreal PythonQtShell_QMediaRecorderControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -1434,7 +1434,7 @@ void PythonQtShell_QMediaService::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1456,7 +1456,7 @@ void PythonQtShell_QMediaService::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1478,7 +1478,7 @@ bool PythonQtShell_QMediaService::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1511,7 +1511,7 @@ bool PythonQtShell_QMediaService::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1544,7 +1544,7 @@ void PythonQtShell_QMediaService::releaseControl(QMediaControl* control0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseControl"); + static PyObject* name = PyUnicode_FromString("releaseControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaControl*"}; @@ -1566,7 +1566,7 @@ QMediaControl* PythonQtShell_QMediaService::requestControl(const char* name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestControl"); + static PyObject* name = PyUnicode_FromString("requestControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaControl*" , "const char*"}; @@ -1599,7 +1599,7 @@ void PythonQtShell_QMediaService::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1654,7 +1654,7 @@ int PythonQtShell_QMediaServiceCameraInfoInterface::cameraOrientation(const QBy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraOrientation"); + static PyObject* name = PyUnicode_FromString("cameraOrientation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QByteArray&"}; @@ -1687,7 +1687,7 @@ QCamera::Position PythonQtShell_QMediaServiceCameraInfoInterface::cameraPositio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraPosition"); + static PyObject* name = PyUnicode_FromString("cameraPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Position" , "const QByteArray&"}; @@ -1740,7 +1740,7 @@ QByteArray PythonQtShell_QMediaServiceDefaultDeviceInterface::defaultDevice(con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultDevice"); + static PyObject* name = PyUnicode_FromString("defaultDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QByteArray&"}; @@ -1788,7 +1788,7 @@ QMediaService* PythonQtShell_QMediaServiceProviderFactoryInterface::create(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*" , "const QString&"}; @@ -1821,7 +1821,7 @@ void PythonQtShell_QMediaServiceProviderFactoryInterface::release(QMediaService* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaService*"}; @@ -1930,7 +1930,7 @@ QMediaService* PythonQtShell_QMediaServiceProviderPlugin::create(const QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*" , "const QString&"}; @@ -1963,7 +1963,7 @@ void PythonQtShell_QMediaServiceProviderPlugin::release(QMediaService* service0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaService*"}; @@ -2018,7 +2018,7 @@ QString PythonQtShell_QMediaServiceSupportedDevicesInterface::deviceDescription if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceDescription"); + static PyObject* name = PyUnicode_FromString("deviceDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "const QByteArray&"}; @@ -2051,7 +2051,7 @@ QList PythonQtShell_QMediaServiceSupportedDevicesInterface::device if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devices"); + static PyObject* name = PyUnicode_FromString("devices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QByteArray&"}; @@ -2104,7 +2104,7 @@ QMultimedia::SupportEstimate PythonQtShell_QMediaServiceSupportedFormatsInterfa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasSupport"); + static PyObject* name = PyUnicode_FromString("hasSupport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::SupportEstimate" , "const QString&" , "const QStringList&"}; @@ -2137,7 +2137,7 @@ QStringList PythonQtShell_QMediaServiceSupportedFormatsInterface::supportedMime if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedMimeTypes"); + static PyObject* name = PyUnicode_FromString("supportedMimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2190,7 +2190,7 @@ void PythonQtShell_QMediaStreamsControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2212,7 +2212,7 @@ void PythonQtShell_QMediaStreamsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2234,7 +2234,7 @@ bool PythonQtShell_QMediaStreamsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2267,7 +2267,7 @@ bool PythonQtShell_QMediaStreamsControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2300,7 +2300,7 @@ bool PythonQtShell_QMediaStreamsControl::isActive(int streamNumber0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isActive"); + static PyObject* name = PyUnicode_FromString("isActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2333,7 +2333,7 @@ QVariant PythonQtShell_QMediaStreamsControl::metaData(int streamNumber0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QString&"}; @@ -2366,7 +2366,7 @@ void PythonQtShell_QMediaStreamsControl::setActive(int streamNumber0, bool sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "bool"}; @@ -2388,7 +2388,7 @@ int PythonQtShell_QMediaStreamsControl::streamCount() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("streamCount"); + static PyObject* name = PyUnicode_FromString("streamCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2421,7 +2421,7 @@ QMediaStreamsControl::StreamType PythonQtShell_QMediaStreamsControl::streamType if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("streamType"); + static PyObject* name = PyUnicode_FromString("streamType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaStreamsControl::StreamType" , "int"}; @@ -2454,7 +2454,7 @@ void PythonQtShell_QMediaStreamsControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2723,7 +2723,7 @@ void PythonQtShell_QMediaVideoProbeControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2745,7 +2745,7 @@ void PythonQtShell_QMediaVideoProbeControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2767,7 +2767,7 @@ bool PythonQtShell_QMediaVideoProbeControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2800,7 +2800,7 @@ bool PythonQtShell_QMediaVideoProbeControl::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2833,7 +2833,7 @@ void PythonQtShell_QMediaVideoProbeControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2878,7 +2878,7 @@ QStringList PythonQtShell_QMetaDataReaderControl::availableMetaData() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableMetaData"); + static PyObject* name = PyUnicode_FromString("availableMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2911,7 +2911,7 @@ void PythonQtShell_QMetaDataReaderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2933,7 +2933,7 @@ void PythonQtShell_QMetaDataReaderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2955,7 +2955,7 @@ bool PythonQtShell_QMetaDataReaderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2988,7 +2988,7 @@ bool PythonQtShell_QMetaDataReaderControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3021,7 +3021,7 @@ bool PythonQtShell_QMetaDataReaderControl::isMetaDataAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMetaDataAvailable"); + static PyObject* name = PyUnicode_FromString("isMetaDataAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3054,7 +3054,7 @@ QVariant PythonQtShell_QMetaDataReaderControl::metaData(const QString& key0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&"}; @@ -3087,7 +3087,7 @@ void PythonQtShell_QMetaDataReaderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3147,7 +3147,7 @@ QStringList PythonQtShell_QMetaDataWriterControl::availableMetaData() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableMetaData"); + static PyObject* name = PyUnicode_FromString("availableMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3180,7 +3180,7 @@ void PythonQtShell_QMetaDataWriterControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3202,7 +3202,7 @@ void PythonQtShell_QMetaDataWriterControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3224,7 +3224,7 @@ bool PythonQtShell_QMetaDataWriterControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3257,7 +3257,7 @@ bool PythonQtShell_QMetaDataWriterControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3290,7 +3290,7 @@ bool PythonQtShell_QMetaDataWriterControl::isMetaDataAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMetaDataAvailable"); + static PyObject* name = PyUnicode_FromString("isMetaDataAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3323,7 +3323,7 @@ bool PythonQtShell_QMetaDataWriterControl::isWritable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isWritable"); + static PyObject* name = PyUnicode_FromString("isWritable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3356,7 +3356,7 @@ QVariant PythonQtShell_QMetaDataWriterControl::metaData(const QString& key0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&"}; @@ -3389,7 +3389,7 @@ void PythonQtShell_QMetaDataWriterControl::setMetaData(const QString& key0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMetaData"); + static PyObject* name = PyUnicode_FromString("setMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&"}; @@ -3411,7 +3411,7 @@ void PythonQtShell_QMetaDataWriterControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3483,7 +3483,7 @@ void PythonQtShell_QRadioData::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3505,7 +3505,7 @@ void PythonQtShell_QRadioData::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3527,7 +3527,7 @@ bool PythonQtShell_QRadioData::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3560,7 +3560,7 @@ bool PythonQtShell_QRadioData::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3593,7 +3593,7 @@ QMediaObject* PythonQtShell_QRadioData::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -3626,7 +3626,7 @@ bool PythonQtShell_QRadioData::setMediaObject(QMediaObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -3659,7 +3659,7 @@ void PythonQtShell_QRadioData::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3749,7 +3749,7 @@ void PythonQtShell_QRadioDataControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3771,7 +3771,7 @@ void PythonQtShell_QRadioDataControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3793,7 +3793,7 @@ QRadioData::Error PythonQtShell_QRadioDataControl::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioData::Error"}; @@ -3826,7 +3826,7 @@ QString PythonQtShell_QRadioDataControl::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3859,7 +3859,7 @@ bool PythonQtShell_QRadioDataControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3892,7 +3892,7 @@ bool PythonQtShell_QRadioDataControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3925,7 +3925,7 @@ bool PythonQtShell_QRadioDataControl::isAlternativeFrequenciesEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAlternativeFrequenciesEnabled"); + static PyObject* name = PyUnicode_FromString("isAlternativeFrequenciesEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3958,7 +3958,7 @@ QRadioData::ProgramType PythonQtShell_QRadioDataControl::programType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("programType"); + static PyObject* name = PyUnicode_FromString("programType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioData::ProgramType"}; @@ -3991,7 +3991,7 @@ QString PythonQtShell_QRadioDataControl::programTypeName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("programTypeName"); + static PyObject* name = PyUnicode_FromString("programTypeName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4024,7 +4024,7 @@ QString PythonQtShell_QRadioDataControl::radioText() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("radioText"); + static PyObject* name = PyUnicode_FromString("radioText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4057,7 +4057,7 @@ void PythonQtShell_QRadioDataControl::setAlternativeFrequenciesEnabled(bool ena if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAlternativeFrequenciesEnabled"); + static PyObject* name = PyUnicode_FromString("setAlternativeFrequenciesEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4079,7 +4079,7 @@ QString PythonQtShell_QRadioDataControl::stationId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stationId"); + static PyObject* name = PyUnicode_FromString("stationId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4112,7 +4112,7 @@ QString PythonQtShell_QRadioDataControl::stationName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stationName"); + static PyObject* name = PyUnicode_FromString("stationName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4145,7 +4145,7 @@ void PythonQtShell_QRadioDataControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4235,7 +4235,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QRadioTuner::availability() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -4268,7 +4268,7 @@ bool PythonQtShell_QRadioTuner::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -4301,7 +4301,7 @@ void PythonQtShell_QRadioTuner::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4323,7 +4323,7 @@ void PythonQtShell_QRadioTuner::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4345,7 +4345,7 @@ bool PythonQtShell_QRadioTuner::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4378,7 +4378,7 @@ bool PythonQtShell_QRadioTuner::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4411,7 +4411,7 @@ bool PythonQtShell_QRadioTuner::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4444,7 +4444,7 @@ QMediaService* PythonQtShell_QRadioTuner::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -4477,7 +4477,7 @@ void PythonQtShell_QRadioTuner::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4499,7 +4499,7 @@ void PythonQtShell_QRadioTuner::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4629,7 +4629,7 @@ QRadioTuner::Band PythonQtShell_QRadioTunerControl::band() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("band"); + static PyObject* name = PyUnicode_FromString("band"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::Band"}; @@ -4662,7 +4662,7 @@ void PythonQtShell_QRadioTunerControl::cancelSearch() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelSearch"); + static PyObject* name = PyUnicode_FromString("cancelSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4684,7 +4684,7 @@ void PythonQtShell_QRadioTunerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4706,7 +4706,7 @@ void PythonQtShell_QRadioTunerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4728,7 +4728,7 @@ QRadioTuner::Error PythonQtShell_QRadioTunerControl::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::Error"}; @@ -4761,7 +4761,7 @@ QString PythonQtShell_QRadioTunerControl::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4794,7 +4794,7 @@ bool PythonQtShell_QRadioTunerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4827,7 +4827,7 @@ bool PythonQtShell_QRadioTunerControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4860,7 +4860,7 @@ int PythonQtShell_QRadioTunerControl::frequency() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequency"); + static PyObject* name = PyUnicode_FromString("frequency"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4893,7 +4893,7 @@ QPair PythonQtShell_QRadioTunerControl::frequencyRange(QRadioTuner: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequencyRange"); + static PyObject* name = PyUnicode_FromString("frequencyRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPair" , "QRadioTuner::Band"}; @@ -4926,7 +4926,7 @@ int PythonQtShell_QRadioTunerControl::frequencyStep(QRadioTuner::Band b0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequencyStep"); + static PyObject* name = PyUnicode_FromString("frequencyStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QRadioTuner::Band"}; @@ -4959,7 +4959,7 @@ bool PythonQtShell_QRadioTunerControl::isAntennaConnected() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAntennaConnected"); + static PyObject* name = PyUnicode_FromString("isAntennaConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4992,7 +4992,7 @@ bool PythonQtShell_QRadioTunerControl::isBandSupported(QRadioTuner::Band b0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isBandSupported"); + static PyObject* name = PyUnicode_FromString("isBandSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QRadioTuner::Band"}; @@ -5025,7 +5025,7 @@ bool PythonQtShell_QRadioTunerControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5058,7 +5058,7 @@ bool PythonQtShell_QRadioTunerControl::isSearching() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSearching"); + static PyObject* name = PyUnicode_FromString("isSearching"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5091,7 +5091,7 @@ bool PythonQtShell_QRadioTunerControl::isStereo() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isStereo"); + static PyObject* name = PyUnicode_FromString("isStereo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5124,7 +5124,7 @@ void PythonQtShell_QRadioTunerControl::searchAllStations(QRadioTuner::SearchMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchAllStations"); + static PyObject* name = PyUnicode_FromString("searchAllStations"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::SearchMode"}; @@ -5146,7 +5146,7 @@ void PythonQtShell_QRadioTunerControl::searchBackward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchBackward"); + static PyObject* name = PyUnicode_FromString("searchBackward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5168,7 +5168,7 @@ void PythonQtShell_QRadioTunerControl::searchForward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchForward"); + static PyObject* name = PyUnicode_FromString("searchForward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5190,7 +5190,7 @@ void PythonQtShell_QRadioTunerControl::setBand(QRadioTuner::Band b0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBand"); + static PyObject* name = PyUnicode_FromString("setBand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::Band"}; @@ -5212,7 +5212,7 @@ void PythonQtShell_QRadioTunerControl::setFrequency(int frequency0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFrequency"); + static PyObject* name = PyUnicode_FromString("setFrequency"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5234,7 +5234,7 @@ void PythonQtShell_QRadioTunerControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5256,7 +5256,7 @@ void PythonQtShell_QRadioTunerControl::setStereoMode(QRadioTuner::StereoMode mo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setStereoMode"); + static PyObject* name = PyUnicode_FromString("setStereoMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::StereoMode"}; @@ -5278,7 +5278,7 @@ void PythonQtShell_QRadioTunerControl::setVolume(int volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5300,7 +5300,7 @@ int PythonQtShell_QRadioTunerControl::signalStrength() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("signalStrength"); + static PyObject* name = PyUnicode_FromString("signalStrength"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5333,7 +5333,7 @@ void PythonQtShell_QRadioTunerControl::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5355,7 +5355,7 @@ QRadioTuner::State PythonQtShell_QRadioTunerControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::State"}; @@ -5388,7 +5388,7 @@ QRadioTuner::StereoMode PythonQtShell_QRadioTunerControl::stereoMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stereoMode"); + static PyObject* name = PyUnicode_FromString("stereoMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::StereoMode"}; @@ -5421,7 +5421,7 @@ void PythonQtShell_QRadioTunerControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5443,7 +5443,7 @@ void PythonQtShell_QRadioTunerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5465,7 +5465,7 @@ int PythonQtShell_QRadioTunerControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5651,7 +5651,7 @@ void PythonQtShell_QSound::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5673,7 +5673,7 @@ void PythonQtShell_QSound::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5695,7 +5695,7 @@ bool PythonQtShell_QSound::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5728,7 +5728,7 @@ bool PythonQtShell_QSound::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5761,7 +5761,7 @@ void PythonQtShell_QSound::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5836,7 +5836,7 @@ void PythonQtShell_QSoundEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5858,7 +5858,7 @@ void PythonQtShell_QSoundEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5880,7 +5880,7 @@ bool PythonQtShell_QSoundEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5913,7 +5913,7 @@ bool PythonQtShell_QSoundEffect::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5946,7 +5946,7 @@ void PythonQtShell_QSoundEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6070,7 +6070,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6092,7 +6092,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6114,7 +6114,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::defaultDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultDevice"); + static PyObject* name = PyUnicode_FromString("defaultDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6147,7 +6147,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::deviceCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceCount"); + static PyObject* name = PyUnicode_FromString("deviceCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6180,7 +6180,7 @@ QString PythonQtShell_QVideoDeviceSelectorControl::deviceDescription(int index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceDescription"); + static PyObject* name = PyUnicode_FromString("deviceDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6213,7 +6213,7 @@ QString PythonQtShell_QVideoDeviceSelectorControl::deviceName(int index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceName"); + static PyObject* name = PyUnicode_FromString("deviceName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6246,7 +6246,7 @@ bool PythonQtShell_QVideoDeviceSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6279,7 +6279,7 @@ bool PythonQtShell_QVideoDeviceSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6312,7 +6312,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::selectedDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedDevice"); + static PyObject* name = PyUnicode_FromString("selectedDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6345,7 +6345,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::setSelectedDevice(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectedDevice"); + static PyObject* name = PyUnicode_FromString("setSelectedDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6367,7 +6367,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6552,7 +6552,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6574,7 +6574,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6596,7 +6596,7 @@ bool PythonQtShell_QVideoEncoderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6629,7 +6629,7 @@ bool PythonQtShell_QVideoEncoderSettingsControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6662,7 +6662,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::setVideoSettings(const QVideoEn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVideoSettings"); + static PyObject* name = PyUnicode_FromString("setVideoSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVideoEncoderSettings&"}; @@ -6684,7 +6684,7 @@ QList PythonQtShell_QVideoEncoderSettingsControl::supportedFrameRates(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedFrameRates"); + static PyObject* name = PyUnicode_FromString("supportedFrameRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QVideoEncoderSettings&" , "bool*"}; @@ -6717,7 +6717,7 @@ QList PythonQtShell_QVideoEncoderSettingsControl::supportedResolutions( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedResolutions"); + static PyObject* name = PyUnicode_FromString("supportedResolutions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QVideoEncoderSettings&" , "bool*"}; @@ -6750,7 +6750,7 @@ QStringList PythonQtShell_QVideoEncoderSettingsControl::supportedVideoCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedVideoCodecs"); + static PyObject* name = PyUnicode_FromString("supportedVideoCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6783,7 +6783,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6805,7 +6805,7 @@ QString PythonQtShell_QVideoEncoderSettingsControl::videoCodecDescription(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoCodecDescription"); + static PyObject* name = PyUnicode_FromString("videoCodecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -6838,7 +6838,7 @@ QVideoEncoderSettings PythonQtShell_QVideoEncoderSettingsControl::videoSettings if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoSettings"); + static PyObject* name = PyUnicode_FromString("videoSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoEncoderSettings"}; @@ -7138,7 +7138,7 @@ void PythonQtShell_QVideoProbe::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7160,7 +7160,7 @@ void PythonQtShell_QVideoProbe::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7182,7 +7182,7 @@ bool PythonQtShell_QVideoProbe::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7215,7 +7215,7 @@ bool PythonQtShell_QVideoProbe::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7248,7 +7248,7 @@ void PythonQtShell_QVideoProbe::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp index c143a9e25..46f2e5844 100644 --- a/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp +++ b/generated_cpp_515/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp @@ -51,7 +51,7 @@ void PythonQtShell_QVideoRendererControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -73,7 +73,7 @@ void PythonQtShell_QVideoRendererControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -95,7 +95,7 @@ bool PythonQtShell_QVideoRendererControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -128,7 +128,7 @@ bool PythonQtShell_QVideoRendererControl::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -161,7 +161,7 @@ void PythonQtShell_QVideoRendererControl::setSurface(QAbstractVideoSurface* sur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSurface"); + static PyObject* name = PyUnicode_FromString("setSurface"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractVideoSurface*"}; @@ -183,7 +183,7 @@ QAbstractVideoSurface* PythonQtShell_QVideoRendererControl::surface() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surface"); + static PyObject* name = PyUnicode_FromString("surface"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoSurface*"}; @@ -216,7 +216,7 @@ void PythonQtShell_QVideoRendererControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -432,7 +432,7 @@ void PythonQtShell_QVideoWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -454,7 +454,7 @@ void PythonQtShell_QVideoWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -476,7 +476,7 @@ void PythonQtShell_QVideoWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -498,7 +498,7 @@ void PythonQtShell_QVideoWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -520,7 +520,7 @@ void PythonQtShell_QVideoWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -542,7 +542,7 @@ void PythonQtShell_QVideoWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -564,7 +564,7 @@ int PythonQtShell_QVideoWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -597,7 +597,7 @@ void PythonQtShell_QVideoWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -619,7 +619,7 @@ void PythonQtShell_QVideoWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -641,7 +641,7 @@ void PythonQtShell_QVideoWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -663,7 +663,7 @@ void PythonQtShell_QVideoWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -685,7 +685,7 @@ void PythonQtShell_QVideoWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -707,7 +707,7 @@ bool PythonQtShell_QVideoWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -740,7 +740,7 @@ bool PythonQtShell_QVideoWidget::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -773,7 +773,7 @@ void PythonQtShell_QVideoWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -795,7 +795,7 @@ bool PythonQtShell_QVideoWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -828,7 +828,7 @@ void PythonQtShell_QVideoWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -850,7 +850,7 @@ bool PythonQtShell_QVideoWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -883,7 +883,7 @@ int PythonQtShell_QVideoWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -916,7 +916,7 @@ void PythonQtShell_QVideoWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -938,7 +938,7 @@ void PythonQtShell_QVideoWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -960,7 +960,7 @@ void PythonQtShell_QVideoWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -982,7 +982,7 @@ QVariant PythonQtShell_QVideoWidget::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1015,7 +1015,7 @@ void PythonQtShell_QVideoWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1037,7 +1037,7 @@ void PythonQtShell_QVideoWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1059,7 +1059,7 @@ void PythonQtShell_QVideoWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1081,7 +1081,7 @@ QMediaObject* PythonQtShell_QVideoWidget::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -1114,7 +1114,7 @@ int PythonQtShell_QVideoWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1147,7 +1147,7 @@ QSize PythonQtShell_QVideoWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1180,7 +1180,7 @@ void PythonQtShell_QVideoWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1202,7 +1202,7 @@ void PythonQtShell_QVideoWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1224,7 +1224,7 @@ void PythonQtShell_QVideoWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1246,7 +1246,7 @@ void PythonQtShell_QVideoWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1268,7 +1268,7 @@ void PythonQtShell_QVideoWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1290,7 +1290,7 @@ bool PythonQtShell_QVideoWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1323,7 +1323,7 @@ QPaintEngine* PythonQtShell_QVideoWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1356,7 +1356,7 @@ void PythonQtShell_QVideoWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1378,7 +1378,7 @@ QPaintDevice* PythonQtShell_QVideoWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1411,7 +1411,7 @@ void PythonQtShell_QVideoWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1433,7 +1433,7 @@ bool PythonQtShell_QVideoWidget::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -1466,7 +1466,7 @@ void PythonQtShell_QVideoWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1488,7 +1488,7 @@ QPainter* PythonQtShell_QVideoWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1521,7 +1521,7 @@ void PythonQtShell_QVideoWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1543,7 +1543,7 @@ QSize PythonQtShell_QVideoWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1576,7 +1576,7 @@ void PythonQtShell_QVideoWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1598,7 +1598,7 @@ void PythonQtShell_QVideoWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1620,7 +1620,7 @@ void PythonQtShell_QVideoWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1700,7 +1700,7 @@ Qt::AspectRatioMode PythonQtShell_QVideoWidgetControl::aspectRatioMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aspectRatioMode"); + static PyObject* name = PyUnicode_FromString("aspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::AspectRatioMode"}; @@ -1733,7 +1733,7 @@ int PythonQtShell_QVideoWidgetControl::brightness() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("brightness"); + static PyObject* name = PyUnicode_FromString("brightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1766,7 +1766,7 @@ void PythonQtShell_QVideoWidgetControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1788,7 +1788,7 @@ int PythonQtShell_QVideoWidgetControl::contrast() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contrast"); + static PyObject* name = PyUnicode_FromString("contrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1821,7 +1821,7 @@ void PythonQtShell_QVideoWidgetControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1843,7 +1843,7 @@ bool PythonQtShell_QVideoWidgetControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1876,7 +1876,7 @@ bool PythonQtShell_QVideoWidgetControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1909,7 +1909,7 @@ int PythonQtShell_QVideoWidgetControl::hue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hue"); + static PyObject* name = PyUnicode_FromString("hue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1942,7 +1942,7 @@ bool PythonQtShell_QVideoWidgetControl::isFullScreen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFullScreen"); + static PyObject* name = PyUnicode_FromString("isFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1975,7 +1975,7 @@ int PythonQtShell_QVideoWidgetControl::saturation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("saturation"); + static PyObject* name = PyUnicode_FromString("saturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2008,7 +2008,7 @@ void PythonQtShell_QVideoWidgetControl::setAspectRatioMode(Qt::AspectRatioMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAspectRatioMode"); + static PyObject* name = PyUnicode_FromString("setAspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::AspectRatioMode"}; @@ -2030,7 +2030,7 @@ void PythonQtShell_QVideoWidgetControl::setBrightness(int brightness0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBrightness"); + static PyObject* name = PyUnicode_FromString("setBrightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2052,7 +2052,7 @@ void PythonQtShell_QVideoWidgetControl::setContrast(int contrast0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContrast"); + static PyObject* name = PyUnicode_FromString("setContrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2074,7 +2074,7 @@ void PythonQtShell_QVideoWidgetControl::setFullScreen(bool fullScreen0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFullScreen"); + static PyObject* name = PyUnicode_FromString("setFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2096,7 +2096,7 @@ void PythonQtShell_QVideoWidgetControl::setHue(int hue0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHue"); + static PyObject* name = PyUnicode_FromString("setHue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2118,7 +2118,7 @@ void PythonQtShell_QVideoWidgetControl::setSaturation(int saturation0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSaturation"); + static PyObject* name = PyUnicode_FromString("setSaturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2140,7 +2140,7 @@ void PythonQtShell_QVideoWidgetControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2162,7 +2162,7 @@ QWidget* PythonQtShell_QVideoWidgetControl::videoWidget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoWidget"); + static PyObject* name = PyUnicode_FromString("videoWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -2283,7 +2283,7 @@ Qt::AspectRatioMode PythonQtShell_QVideoWindowControl::aspectRatioMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aspectRatioMode"); + static PyObject* name = PyUnicode_FromString("aspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::AspectRatioMode"}; @@ -2316,7 +2316,7 @@ int PythonQtShell_QVideoWindowControl::brightness() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("brightness"); + static PyObject* name = PyUnicode_FromString("brightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2349,7 +2349,7 @@ void PythonQtShell_QVideoWindowControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2371,7 +2371,7 @@ int PythonQtShell_QVideoWindowControl::contrast() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contrast"); + static PyObject* name = PyUnicode_FromString("contrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2404,7 +2404,7 @@ void PythonQtShell_QVideoWindowControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2426,7 +2426,7 @@ QRect PythonQtShell_QVideoWindowControl::displayRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("displayRect"); + static PyObject* name = PyUnicode_FromString("displayRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2459,7 +2459,7 @@ bool PythonQtShell_QVideoWindowControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2492,7 +2492,7 @@ bool PythonQtShell_QVideoWindowControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2525,7 +2525,7 @@ int PythonQtShell_QVideoWindowControl::hue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hue"); + static PyObject* name = PyUnicode_FromString("hue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2558,7 +2558,7 @@ bool PythonQtShell_QVideoWindowControl::isFullScreen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFullScreen"); + static PyObject* name = PyUnicode_FromString("isFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2591,7 +2591,7 @@ QSize PythonQtShell_QVideoWindowControl::nativeSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeSize"); + static PyObject* name = PyUnicode_FromString("nativeSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2624,7 +2624,7 @@ void PythonQtShell_QVideoWindowControl::repaint() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("repaint"); + static PyObject* name = PyUnicode_FromString("repaint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2646,7 +2646,7 @@ int PythonQtShell_QVideoWindowControl::saturation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("saturation"); + static PyObject* name = PyUnicode_FromString("saturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2679,7 +2679,7 @@ void PythonQtShell_QVideoWindowControl::setAspectRatioMode(Qt::AspectRatioMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAspectRatioMode"); + static PyObject* name = PyUnicode_FromString("setAspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::AspectRatioMode"}; @@ -2701,7 +2701,7 @@ void PythonQtShell_QVideoWindowControl::setBrightness(int brightness0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBrightness"); + static PyObject* name = PyUnicode_FromString("setBrightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2723,7 +2723,7 @@ void PythonQtShell_QVideoWindowControl::setContrast(int contrast0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContrast"); + static PyObject* name = PyUnicode_FromString("setContrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2745,7 +2745,7 @@ void PythonQtShell_QVideoWindowControl::setDisplayRect(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDisplayRect"); + static PyObject* name = PyUnicode_FromString("setDisplayRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2767,7 +2767,7 @@ void PythonQtShell_QVideoWindowControl::setFullScreen(bool fullScreen0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFullScreen"); + static PyObject* name = PyUnicode_FromString("setFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2789,7 +2789,7 @@ void PythonQtShell_QVideoWindowControl::setHue(int hue0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHue"); + static PyObject* name = PyUnicode_FromString("setHue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2811,7 +2811,7 @@ void PythonQtShell_QVideoWindowControl::setSaturation(int saturation0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSaturation"); + static PyObject* name = PyUnicode_FromString("setSaturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2833,7 +2833,7 @@ void PythonQtShell_QVideoWindowControl::setWinId(WId id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setWinId"); + static PyObject* name = PyUnicode_FromString("setWinId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "WId"}; @@ -2855,7 +2855,7 @@ void PythonQtShell_QVideoWindowControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2877,7 +2877,7 @@ WId PythonQtShell_QVideoWindowControl::winId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("winId"); + static PyObject* name = PyUnicode_FromString("winId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"WId"}; diff --git a/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network0.cpp b/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network0.cpp index d76ebc1ad..9b2967bf5 100644 --- a/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +++ b/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network0.cpp @@ -51,7 +51,7 @@ qint64 PythonQtShell_QAbstractNetworkCache::cacheSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -84,7 +84,7 @@ void PythonQtShell_QAbstractNetworkCache::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -106,7 +106,7 @@ void PythonQtShell_QAbstractNetworkCache::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -128,7 +128,7 @@ void PythonQtShell_QAbstractNetworkCache::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -150,7 +150,7 @@ QIODevice* PythonQtShell_QAbstractNetworkCache::data(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -183,7 +183,7 @@ bool PythonQtShell_QAbstractNetworkCache::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -216,7 +216,7 @@ bool PythonQtShell_QAbstractNetworkCache::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -249,7 +249,7 @@ void PythonQtShell_QAbstractNetworkCache::insert(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -271,7 +271,7 @@ QNetworkCacheMetaData PythonQtShell_QAbstractNetworkCache::metaData(const QUrl& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -304,7 +304,7 @@ QIODevice* PythonQtShell_QAbstractNetworkCache::prepare(const QNetworkCacheMeta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -337,7 +337,7 @@ bool PythonQtShell_QAbstractNetworkCache::remove(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -370,7 +370,7 @@ void PythonQtShell_QAbstractNetworkCache::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -392,7 +392,7 @@ void PythonQtShell_QAbstractNetworkCache::updateMetaData(const QNetworkCacheMeta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -472,7 +472,7 @@ bool PythonQtShell_QAbstractSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -505,7 +505,7 @@ qint64 PythonQtShell_QAbstractSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -538,7 +538,7 @@ qint64 PythonQtShell_QAbstractSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -571,7 +571,7 @@ bool PythonQtShell_QAbstractSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -604,7 +604,7 @@ void PythonQtShell_QAbstractSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -626,7 +626,7 @@ void PythonQtShell_QAbstractSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -648,7 +648,7 @@ void PythonQtShell_QAbstractSocket::connectToHost(const QHostAddress& address0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -670,7 +670,7 @@ void PythonQtShell_QAbstractSocket::connectToHost(const QString& hostName0, uns if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -692,7 +692,7 @@ void PythonQtShell_QAbstractSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -714,7 +714,7 @@ void PythonQtShell_QAbstractSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -736,7 +736,7 @@ bool PythonQtShell_QAbstractSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -769,7 +769,7 @@ bool PythonQtShell_QAbstractSocket::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -802,7 +802,7 @@ bool PythonQtShell_QAbstractSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -835,7 +835,7 @@ bool PythonQtShell_QAbstractSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -868,7 +868,7 @@ qint64 PythonQtShell_QAbstractSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -901,7 +901,7 @@ qint64 PythonQtShell_QAbstractSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -934,7 +934,7 @@ qint64 PythonQtShell_QAbstractSocket::readLineData(char* data0, qint64 maxlen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -967,7 +967,7 @@ bool PythonQtShell_QAbstractSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1000,7 +1000,7 @@ void PythonQtShell_QAbstractSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1022,7 +1022,7 @@ bool PythonQtShell_QAbstractSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1055,7 +1055,7 @@ void PythonQtShell_QAbstractSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -1077,7 +1077,7 @@ bool PythonQtShell_QAbstractSocket::setSocketDescriptor(qintptr socketDescript if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -1110,7 +1110,7 @@ void PythonQtShell_QAbstractSocket::setSocketOption(QAbstractSocket::SocketOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -1132,7 +1132,7 @@ qint64 PythonQtShell_QAbstractSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1165,7 +1165,7 @@ qintptr PythonQtShell_QAbstractSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -1198,7 +1198,7 @@ QVariant PythonQtShell_QAbstractSocket::socketOption(QAbstractSocket::SocketOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1231,7 +1231,7 @@ void PythonQtShell_QAbstractSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1253,7 +1253,7 @@ bool PythonQtShell_QAbstractSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1286,7 +1286,7 @@ bool PythonQtShell_QAbstractSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1319,7 +1319,7 @@ bool PythonQtShell_QAbstractSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1352,7 +1352,7 @@ bool PythonQtShell_QAbstractSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1385,7 +1385,7 @@ qint64 PythonQtShell_QAbstractSocket::writeData(const char* data0, qint64 len if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1771,7 +1771,7 @@ void PythonQtShell_QDnsLookup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1793,7 +1793,7 @@ void PythonQtShell_QDnsLookup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1815,7 +1815,7 @@ bool PythonQtShell_QDnsLookup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1848,7 +1848,7 @@ bool PythonQtShell_QDnsLookup::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1881,7 +1881,7 @@ void PythonQtShell_QDnsLookup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2139,7 +2139,7 @@ void PythonQtShell_QDtls::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2161,7 +2161,7 @@ void PythonQtShell_QDtls::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2183,7 +2183,7 @@ bool PythonQtShell_QDtls::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2216,7 +2216,7 @@ bool PythonQtShell_QDtls::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2249,7 +2249,7 @@ void PythonQtShell_QDtls::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2429,7 +2429,7 @@ void PythonQtShell_QDtlsClientVerifier::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2451,7 +2451,7 @@ void PythonQtShell_QDtlsClientVerifier::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2473,7 +2473,7 @@ bool PythonQtShell_QDtlsClientVerifier::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2506,7 +2506,7 @@ bool PythonQtShell_QDtlsClientVerifier::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2539,7 +2539,7 @@ void PythonQtShell_QDtlsClientVerifier::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3024,7 +3024,7 @@ void PythonQtShell_QHttpMultiPart::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3046,7 +3046,7 @@ void PythonQtShell_QHttpMultiPart::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3068,7 +3068,7 @@ bool PythonQtShell_QHttpMultiPart::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3101,7 +3101,7 @@ bool PythonQtShell_QHttpMultiPart::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3134,7 +3134,7 @@ void PythonQtShell_QHttpMultiPart::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3263,7 +3263,7 @@ void PythonQtShell_QLocalServer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3285,7 +3285,7 @@ void PythonQtShell_QLocalServer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3307,7 +3307,7 @@ bool PythonQtShell_QLocalServer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3340,7 +3340,7 @@ bool PythonQtShell_QLocalServer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3373,7 +3373,7 @@ bool PythonQtShell_QLocalServer::hasPendingConnections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3406,7 +3406,7 @@ void PythonQtShell_QLocalServer::incomingConnection(quintptr socketDescriptor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "quintptr"}; @@ -3428,7 +3428,7 @@ QLocalSocket* PythonQtShell_QLocalServer::nextPendingConnection() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLocalSocket*"}; @@ -3461,7 +3461,7 @@ void PythonQtShell_QLocalServer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3596,7 +3596,7 @@ bool PythonQtShell_QLocalSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3629,7 +3629,7 @@ qint64 PythonQtShell_QLocalSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3662,7 +3662,7 @@ qint64 PythonQtShell_QLocalSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3695,7 +3695,7 @@ bool PythonQtShell_QLocalSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3728,7 +3728,7 @@ void PythonQtShell_QLocalSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3750,7 +3750,7 @@ void PythonQtShell_QLocalSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3772,7 +3772,7 @@ void PythonQtShell_QLocalSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3794,7 +3794,7 @@ bool PythonQtShell_QLocalSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3827,7 +3827,7 @@ bool PythonQtShell_QLocalSocket::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3860,7 +3860,7 @@ bool PythonQtShell_QLocalSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3893,7 +3893,7 @@ bool PythonQtShell_QLocalSocket::open(QIODevice::OpenMode openMode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3926,7 +3926,7 @@ qint64 PythonQtShell_QLocalSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3959,7 +3959,7 @@ qint64 PythonQtShell_QLocalSocket::readData(char* arg__1, qint64 arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3992,7 +3992,7 @@ qint64 PythonQtShell_QLocalSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4025,7 +4025,7 @@ bool PythonQtShell_QLocalSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4058,7 +4058,7 @@ bool PythonQtShell_QLocalSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4091,7 +4091,7 @@ qint64 PythonQtShell_QLocalSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4124,7 +4124,7 @@ void PythonQtShell_QLocalSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4146,7 +4146,7 @@ bool PythonQtShell_QLocalSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4179,7 +4179,7 @@ bool PythonQtShell_QLocalSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4212,7 +4212,7 @@ qint64 PythonQtShell_QLocalSocket::writeData(const char* arg__1, qint64 arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -4353,7 +4353,7 @@ void PythonQtShell_QNetworkAccessManager::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4375,7 +4375,7 @@ QNetworkReply* PythonQtShell_QNetworkAccessManager::createRequest(QNetworkAcces if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createRequest"); + static PyObject* name = PyUnicode_FromString("createRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkReply*" , "QNetworkAccessManager::Operation" , "const QNetworkRequest&" , "QIODevice*"}; @@ -4408,7 +4408,7 @@ void PythonQtShell_QNetworkAccessManager::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4430,7 +4430,7 @@ bool PythonQtShell_QNetworkAccessManager::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4463,7 +4463,7 @@ bool PythonQtShell_QNetworkAccessManager::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4496,7 +4496,7 @@ void PythonQtShell_QNetworkAccessManager::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5066,7 +5066,7 @@ void PythonQtShell_QNetworkConfigurationManager::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5088,7 +5088,7 @@ void PythonQtShell_QNetworkConfigurationManager::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5110,7 +5110,7 @@ bool PythonQtShell_QNetworkConfigurationManager::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5143,7 +5143,7 @@ bool PythonQtShell_QNetworkConfigurationManager::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5176,7 +5176,7 @@ void PythonQtShell_QNetworkConfigurationManager::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5373,7 +5373,7 @@ void PythonQtShell_QNetworkCookieJar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5395,7 +5395,7 @@ QList PythonQtShell_QNetworkCookieJar::cookiesForUrl(const QUr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cookiesForUrl"); + static PyObject* name = PyUnicode_FromString("cookiesForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QUrl&"}; @@ -5428,7 +5428,7 @@ void PythonQtShell_QNetworkCookieJar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5450,7 +5450,7 @@ bool PythonQtShell_QNetworkCookieJar::deleteCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteCookie"); + static PyObject* name = PyUnicode_FromString("deleteCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -5483,7 +5483,7 @@ bool PythonQtShell_QNetworkCookieJar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5516,7 +5516,7 @@ bool PythonQtShell_QNetworkCookieJar::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5549,7 +5549,7 @@ bool PythonQtShell_QNetworkCookieJar::insertCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertCookie"); + static PyObject* name = PyUnicode_FromString("insertCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -5582,7 +5582,7 @@ bool PythonQtShell_QNetworkCookieJar::setCookiesFromUrl(const QList 0) { - static PyObject* name = PyString_FromString("setCookiesFromUrl"); + static PyObject* name = PyUnicode_FromString("setCookiesFromUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QList&" , "const QUrl&"}; @@ -5615,7 +5615,7 @@ void PythonQtShell_QNetworkCookieJar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5637,7 +5637,7 @@ bool PythonQtShell_QNetworkCookieJar::updateCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCookie"); + static PyObject* name = PyUnicode_FromString("updateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -5670,7 +5670,7 @@ bool PythonQtShell_QNetworkCookieJar::validateCookie(const QNetworkCookie& coo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validateCookie"); + static PyObject* name = PyUnicode_FromString("validateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&" , "const QUrl&"}; @@ -5870,7 +5870,7 @@ qint64 PythonQtShell_QNetworkDiskCache::cacheSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5903,7 +5903,7 @@ void PythonQtShell_QNetworkDiskCache::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5925,7 +5925,7 @@ void PythonQtShell_QNetworkDiskCache::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5947,7 +5947,7 @@ void PythonQtShell_QNetworkDiskCache::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5969,7 +5969,7 @@ QIODevice* PythonQtShell_QNetworkDiskCache::data(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -6002,7 +6002,7 @@ bool PythonQtShell_QNetworkDiskCache::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6035,7 +6035,7 @@ bool PythonQtShell_QNetworkDiskCache::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6068,7 +6068,7 @@ qint64 PythonQtShell_QNetworkDiskCache::expire() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expire"); + static PyObject* name = PyUnicode_FromString("expire"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6101,7 +6101,7 @@ void PythonQtShell_QNetworkDiskCache::insert(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -6123,7 +6123,7 @@ QNetworkCacheMetaData PythonQtShell_QNetworkDiskCache::metaData(const QUrl& ur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -6156,7 +6156,7 @@ QIODevice* PythonQtShell_QNetworkDiskCache::prepare(const QNetworkCacheMetaData if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -6189,7 +6189,7 @@ bool PythonQtShell_QNetworkDiskCache::remove(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -6222,7 +6222,7 @@ void PythonQtShell_QNetworkDiskCache::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6244,7 +6244,7 @@ void PythonQtShell_QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; diff --git a/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network1.cpp b/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network1.cpp index 32a477d40..55fa6aa2f 100644 --- a/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +++ b/generated_cpp_515/com_trolltech_qt_network/com_trolltech_qt_network1.cpp @@ -291,7 +291,7 @@ QList PythonQtShell_QNetworkProxyFactory::queryProxy(const QNet if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryProxy"); + static PyObject* name = PyUnicode_FromString("queryProxy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QNetworkProxyQuery&"}; @@ -490,7 +490,7 @@ void PythonQtShell_QNetworkReply::abort() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -512,7 +512,7 @@ bool PythonQtShell_QNetworkReply::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -545,7 +545,7 @@ qint64 PythonQtShell_QNetworkReply::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -578,7 +578,7 @@ qint64 PythonQtShell_QNetworkReply::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -611,7 +611,7 @@ bool PythonQtShell_QNetworkReply::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -644,7 +644,7 @@ void PythonQtShell_QNetworkReply::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -666,7 +666,7 @@ void PythonQtShell_QNetworkReply::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -688,7 +688,7 @@ void PythonQtShell_QNetworkReply::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -710,7 +710,7 @@ bool PythonQtShell_QNetworkReply::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -743,7 +743,7 @@ bool PythonQtShell_QNetworkReply::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -776,7 +776,7 @@ void PythonQtShell_QNetworkReply::ignoreSslErrors() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignoreSslErrors"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrors"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -798,7 +798,7 @@ void PythonQtShell_QNetworkReply::ignoreSslErrorsImplementation(const QList 0) { - static PyObject* name = PyString_FromString("ignoreSslErrorsImplementation"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrorsImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -820,7 +820,7 @@ bool PythonQtShell_QNetworkReply::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -853,7 +853,7 @@ bool PythonQtShell_QNetworkReply::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -886,7 +886,7 @@ qint64 PythonQtShell_QNetworkReply::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -919,7 +919,7 @@ qint64 PythonQtShell_QNetworkReply::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -952,7 +952,7 @@ qint64 PythonQtShell_QNetworkReply::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -985,7 +985,7 @@ bool PythonQtShell_QNetworkReply::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1018,7 +1018,7 @@ bool PythonQtShell_QNetworkReply::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1051,7 +1051,7 @@ void PythonQtShell_QNetworkReply::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -1073,7 +1073,7 @@ void PythonQtShell_QNetworkReply::setSslConfigurationImplementation(const QSslCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("setSslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSslConfiguration&"}; @@ -1095,7 +1095,7 @@ qint64 PythonQtShell_QNetworkReply::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1128,7 +1128,7 @@ void PythonQtShell_QNetworkReply::sslConfigurationImplementation(QSslConfigurati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("sslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSslConfiguration&"}; @@ -1150,7 +1150,7 @@ void PythonQtShell_QNetworkReply::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1172,7 +1172,7 @@ bool PythonQtShell_QNetworkReply::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1205,7 +1205,7 @@ bool PythonQtShell_QNetworkReply::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1238,7 +1238,7 @@ qint64 PythonQtShell_QNetworkReply::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1583,7 +1583,7 @@ void PythonQtShell_QNetworkSession::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1605,7 +1605,7 @@ void PythonQtShell_QNetworkSession::connectNotify(const QMetaMethod& signal0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -1627,7 +1627,7 @@ void PythonQtShell_QNetworkSession::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1649,7 +1649,7 @@ void PythonQtShell_QNetworkSession::disconnectNotify(const QMetaMethod& signal0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -1671,7 +1671,7 @@ bool PythonQtShell_QNetworkSession::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1704,7 +1704,7 @@ bool PythonQtShell_QNetworkSession::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1737,7 +1737,7 @@ void PythonQtShell_QNetworkSession::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2889,7 +2889,7 @@ bool PythonQtShell_QSslSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2922,7 +2922,7 @@ qint64 PythonQtShell_QSslSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2955,7 +2955,7 @@ qint64 PythonQtShell_QSslSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2988,7 +2988,7 @@ bool PythonQtShell_QSslSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3021,7 +3021,7 @@ void PythonQtShell_QSslSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3043,7 +3043,7 @@ void PythonQtShell_QSslSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3065,7 +3065,7 @@ void PythonQtShell_QSslSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -3087,7 +3087,7 @@ void PythonQtShell_QSslSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3109,7 +3109,7 @@ void PythonQtShell_QSslSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3131,7 +3131,7 @@ bool PythonQtShell_QSslSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3164,7 +3164,7 @@ bool PythonQtShell_QSslSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3197,7 +3197,7 @@ bool PythonQtShell_QSslSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3230,7 +3230,7 @@ bool PythonQtShell_QSslSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3263,7 +3263,7 @@ qint64 PythonQtShell_QSslSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3296,7 +3296,7 @@ qint64 PythonQtShell_QSslSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3329,7 +3329,7 @@ qint64 PythonQtShell_QSslSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3362,7 +3362,7 @@ bool PythonQtShell_QSslSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3395,7 +3395,7 @@ void PythonQtShell_QSslSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3417,7 +3417,7 @@ bool PythonQtShell_QSslSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3450,7 +3450,7 @@ void PythonQtShell_QSslSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -3472,7 +3472,7 @@ bool PythonQtShell_QSslSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -3505,7 +3505,7 @@ void PythonQtShell_QSslSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -3527,7 +3527,7 @@ qint64 PythonQtShell_QSslSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3560,7 +3560,7 @@ qintptr PythonQtShell_QSslSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -3593,7 +3593,7 @@ QVariant PythonQtShell_QSslSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -3626,7 +3626,7 @@ void PythonQtShell_QSslSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3648,7 +3648,7 @@ bool PythonQtShell_QSslSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3681,7 +3681,7 @@ bool PythonQtShell_QSslSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3714,7 +3714,7 @@ bool PythonQtShell_QSslSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3747,7 +3747,7 @@ bool PythonQtShell_QSslSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3780,7 +3780,7 @@ qint64 PythonQtShell_QSslSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -4122,7 +4122,7 @@ void PythonQtShell_QTcpServer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4144,7 +4144,7 @@ void PythonQtShell_QTcpServer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4166,7 +4166,7 @@ bool PythonQtShell_QTcpServer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4199,7 +4199,7 @@ bool PythonQtShell_QTcpServer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4232,7 +4232,7 @@ bool PythonQtShell_QTcpServer::hasPendingConnections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4265,7 +4265,7 @@ void PythonQtShell_QTcpServer::incomingConnection(qintptr handle0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qintptr"}; @@ -4287,7 +4287,7 @@ QTcpSocket* PythonQtShell_QTcpServer::nextPendingConnection() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTcpSocket*"}; @@ -4320,7 +4320,7 @@ void PythonQtShell_QTcpServer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4465,7 +4465,7 @@ bool PythonQtShell_QTcpSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4498,7 +4498,7 @@ qint64 PythonQtShell_QTcpSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4531,7 +4531,7 @@ qint64 PythonQtShell_QTcpSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4564,7 +4564,7 @@ bool PythonQtShell_QTcpSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4597,7 +4597,7 @@ void PythonQtShell_QTcpSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4619,7 +4619,7 @@ void PythonQtShell_QTcpSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4641,7 +4641,7 @@ void PythonQtShell_QTcpSocket::connectToHost(const QHostAddress& address0, unsi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -4663,7 +4663,7 @@ void PythonQtShell_QTcpSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -4685,7 +4685,7 @@ void PythonQtShell_QTcpSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4707,7 +4707,7 @@ void PythonQtShell_QTcpSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4729,7 +4729,7 @@ bool PythonQtShell_QTcpSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4762,7 +4762,7 @@ bool PythonQtShell_QTcpSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4795,7 +4795,7 @@ bool PythonQtShell_QTcpSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4828,7 +4828,7 @@ bool PythonQtShell_QTcpSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4861,7 +4861,7 @@ qint64 PythonQtShell_QTcpSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4894,7 +4894,7 @@ qint64 PythonQtShell_QTcpSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4927,7 +4927,7 @@ qint64 PythonQtShell_QTcpSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4960,7 +4960,7 @@ bool PythonQtShell_QTcpSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4993,7 +4993,7 @@ void PythonQtShell_QTcpSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5015,7 +5015,7 @@ bool PythonQtShell_QTcpSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5048,7 +5048,7 @@ void PythonQtShell_QTcpSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -5070,7 +5070,7 @@ bool PythonQtShell_QTcpSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -5103,7 +5103,7 @@ void PythonQtShell_QTcpSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -5125,7 +5125,7 @@ qint64 PythonQtShell_QTcpSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5158,7 +5158,7 @@ qintptr PythonQtShell_QTcpSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -5191,7 +5191,7 @@ QVariant PythonQtShell_QTcpSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -5224,7 +5224,7 @@ void PythonQtShell_QTcpSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5246,7 +5246,7 @@ bool PythonQtShell_QTcpSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5279,7 +5279,7 @@ bool PythonQtShell_QTcpSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5312,7 +5312,7 @@ bool PythonQtShell_QTcpSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5345,7 +5345,7 @@ bool PythonQtShell_QTcpSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5378,7 +5378,7 @@ qint64 PythonQtShell_QTcpSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5434,7 +5434,7 @@ bool PythonQtShell_QUdpSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5467,7 +5467,7 @@ qint64 PythonQtShell_QUdpSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5500,7 +5500,7 @@ qint64 PythonQtShell_QUdpSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5533,7 +5533,7 @@ bool PythonQtShell_QUdpSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5566,7 +5566,7 @@ void PythonQtShell_QUdpSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5588,7 +5588,7 @@ void PythonQtShell_QUdpSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5610,7 +5610,7 @@ void PythonQtShell_QUdpSocket::connectToHost(const QHostAddress& address0, unsi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -5632,7 +5632,7 @@ void PythonQtShell_QUdpSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -5654,7 +5654,7 @@ void PythonQtShell_QUdpSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5676,7 +5676,7 @@ void PythonQtShell_QUdpSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5698,7 +5698,7 @@ bool PythonQtShell_QUdpSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5731,7 +5731,7 @@ bool PythonQtShell_QUdpSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5764,7 +5764,7 @@ bool PythonQtShell_QUdpSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5797,7 +5797,7 @@ bool PythonQtShell_QUdpSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5830,7 +5830,7 @@ qint64 PythonQtShell_QUdpSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5863,7 +5863,7 @@ qint64 PythonQtShell_QUdpSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5896,7 +5896,7 @@ qint64 PythonQtShell_QUdpSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5929,7 +5929,7 @@ bool PythonQtShell_QUdpSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5962,7 +5962,7 @@ void PythonQtShell_QUdpSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5984,7 +5984,7 @@ bool PythonQtShell_QUdpSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QUdpSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -6039,7 +6039,7 @@ bool PythonQtShell_QUdpSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QUdpSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -6094,7 +6094,7 @@ qint64 PythonQtShell_QUdpSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6127,7 +6127,7 @@ qintptr PythonQtShell_QUdpSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -6160,7 +6160,7 @@ QVariant PythonQtShell_QUdpSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -6193,7 +6193,7 @@ void PythonQtShell_QUdpSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6215,7 +6215,7 @@ bool PythonQtShell_QUdpSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6248,7 +6248,7 @@ bool PythonQtShell_QUdpSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6281,7 +6281,7 @@ bool PythonQtShell_QUdpSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6314,7 +6314,7 @@ bool PythonQtShell_QUdpSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6347,7 +6347,7 @@ qint64 PythonQtShell_QUdpSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_515/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp b/generated_cpp_515/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp index 79e2ae388..1abe64b30 100644 --- a/generated_cpp_515/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +++ b/generated_cpp_515/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp @@ -233,7 +233,7 @@ bool PythonQtShell_QGLContext::chooseContext(const QGLContext* shareContext0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("chooseContext"); + static PyObject* name = PyUnicode_FromString("chooseContext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -266,7 +266,7 @@ bool PythonQtShell_QGLContext::create(const QGLContext* shareContext0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -299,7 +299,7 @@ void PythonQtShell_QGLContext::doneCurrent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doneCurrent"); + static PyObject* name = PyUnicode_FromString("doneCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -321,7 +321,7 @@ void PythonQtShell_QGLContext::makeCurrent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("makeCurrent"); + static PyObject* name = PyUnicode_FromString("makeCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -343,7 +343,7 @@ void PythonQtShell_QGLContext::swapBuffers() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("swapBuffers"); + static PyObject* name = PyUnicode_FromString("swapBuffers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -870,7 +870,7 @@ int PythonQtShell_QGLFramebufferObject::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -903,7 +903,7 @@ void PythonQtShell_QGLFramebufferObject::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -925,7 +925,7 @@ int PythonQtShell_QGLFramebufferObject::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -958,7 +958,7 @@ QPaintEngine* PythonQtShell_QGLFramebufferObject::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -991,7 +991,7 @@ QPaintDevice* PythonQtShell_QGLFramebufferObject::redirected(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1024,7 +1024,7 @@ QPainter* PythonQtShell_QGLFramebufferObject::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1742,7 +1742,7 @@ int PythonQtShell_QGLPixelBuffer::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1775,7 +1775,7 @@ void PythonQtShell_QGLPixelBuffer::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1797,7 +1797,7 @@ int PythonQtShell_QGLPixelBuffer::metric(QPaintDevice::PaintDeviceMetric metri if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1830,7 +1830,7 @@ QPaintEngine* PythonQtShell_QGLPixelBuffer::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1863,7 +1863,7 @@ QPaintDevice* PythonQtShell_QGLPixelBuffer::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1896,7 +1896,7 @@ QPainter* PythonQtShell_QGLPixelBuffer::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2038,7 +2038,7 @@ void PythonQtShell_QGLShader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2060,7 +2060,7 @@ void PythonQtShell_QGLShader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2082,7 +2082,7 @@ bool PythonQtShell_QGLShader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2115,7 +2115,7 @@ bool PythonQtShell_QGLShader::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2148,7 +2148,7 @@ void PythonQtShell_QGLShader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2247,7 +2247,7 @@ void PythonQtShell_QGLShaderProgram::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2269,7 +2269,7 @@ void PythonQtShell_QGLShaderProgram::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2291,7 +2291,7 @@ bool PythonQtShell_QGLShaderProgram::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2324,7 +2324,7 @@ bool PythonQtShell_QGLShaderProgram::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2357,7 +2357,7 @@ bool PythonQtShell_QGLShaderProgram::link() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2390,7 +2390,7 @@ void PythonQtShell_QGLShaderProgram::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2994,7 +2994,7 @@ void PythonQtShell_QGLWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3016,7 +3016,7 @@ void PythonQtShell_QGLWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3038,7 +3038,7 @@ void PythonQtShell_QGLWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3060,7 +3060,7 @@ void PythonQtShell_QGLWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3082,7 +3082,7 @@ void PythonQtShell_QGLWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3104,7 +3104,7 @@ void PythonQtShell_QGLWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3126,7 +3126,7 @@ int PythonQtShell_QGLWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3159,7 +3159,7 @@ void PythonQtShell_QGLWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3181,7 +3181,7 @@ void PythonQtShell_QGLWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3203,7 +3203,7 @@ void PythonQtShell_QGLWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3225,7 +3225,7 @@ void PythonQtShell_QGLWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3247,7 +3247,7 @@ void PythonQtShell_QGLWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3269,7 +3269,7 @@ bool PythonQtShell_QGLWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3302,7 +3302,7 @@ bool PythonQtShell_QGLWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3335,7 +3335,7 @@ void PythonQtShell_QGLWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3357,7 +3357,7 @@ bool PythonQtShell_QGLWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3390,7 +3390,7 @@ void PythonQtShell_QGLWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3412,7 +3412,7 @@ void PythonQtShell_QGLWidget::glDraw() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("glDraw"); + static PyObject* name = PyUnicode_FromString("glDraw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3434,7 +3434,7 @@ void PythonQtShell_QGLWidget::glInit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("glInit"); + static PyObject* name = PyUnicode_FromString("glInit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3456,7 +3456,7 @@ bool PythonQtShell_QGLWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3489,7 +3489,7 @@ int PythonQtShell_QGLWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3522,7 +3522,7 @@ void PythonQtShell_QGLWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3544,7 +3544,7 @@ void PythonQtShell_QGLWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3566,7 +3566,7 @@ void PythonQtShell_QGLWidget::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3588,7 +3588,7 @@ void PythonQtShell_QGLWidget::initializeOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeOverlayGL"); + static PyObject* name = PyUnicode_FromString("initializeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3610,7 +3610,7 @@ void PythonQtShell_QGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3632,7 +3632,7 @@ QVariant PythonQtShell_QGLWidget::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3665,7 +3665,7 @@ void PythonQtShell_QGLWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3687,7 +3687,7 @@ void PythonQtShell_QGLWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3709,7 +3709,7 @@ void PythonQtShell_QGLWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3731,7 +3731,7 @@ int PythonQtShell_QGLWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3764,7 +3764,7 @@ QSize PythonQtShell_QGLWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3797,7 +3797,7 @@ void PythonQtShell_QGLWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3819,7 +3819,7 @@ void PythonQtShell_QGLWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3841,7 +3841,7 @@ void PythonQtShell_QGLWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3863,7 +3863,7 @@ void PythonQtShell_QGLWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3885,7 +3885,7 @@ void PythonQtShell_QGLWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3907,7 +3907,7 @@ bool PythonQtShell_QGLWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3940,7 +3940,7 @@ QPaintEngine* PythonQtShell_QGLWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3973,7 +3973,7 @@ void PythonQtShell_QGLWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3995,7 +3995,7 @@ void PythonQtShell_QGLWidget::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4017,7 +4017,7 @@ void PythonQtShell_QGLWidget::paintOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintOverlayGL"); + static PyObject* name = PyUnicode_FromString("paintOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4039,7 +4039,7 @@ QPaintDevice* PythonQtShell_QGLWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4072,7 +4072,7 @@ void PythonQtShell_QGLWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4094,7 +4094,7 @@ void PythonQtShell_QGLWidget::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4116,7 +4116,7 @@ void PythonQtShell_QGLWidget::resizeOverlayGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeOverlayGL"); + static PyObject* name = PyUnicode_FromString("resizeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4138,7 +4138,7 @@ void PythonQtShell_QGLWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4160,7 +4160,7 @@ QPainter* PythonQtShell_QGLWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4193,7 +4193,7 @@ void PythonQtShell_QGLWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4215,7 +4215,7 @@ QSize PythonQtShell_QGLWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4248,7 +4248,7 @@ void PythonQtShell_QGLWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4270,7 +4270,7 @@ void PythonQtShell_QGLWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4292,7 +4292,7 @@ void PythonQtShell_QGLWidget::updateGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGL"); + static PyObject* name = PyUnicode_FromString("updateGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4314,7 +4314,7 @@ void PythonQtShell_QGLWidget::updateOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateOverlayGL"); + static PyObject* name = PyUnicode_FromString("updateOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4336,7 +4336,7 @@ void PythonQtShell_QGLWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp b/generated_cpp_515/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp index 8c3c243c8..29ba06548 100644 --- a/generated_cpp_515/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp +++ b/generated_cpp_515/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp @@ -37,7 +37,7 @@ void PythonQtShell_QJSEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -59,7 +59,7 @@ void PythonQtShell_QJSEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -81,7 +81,7 @@ bool PythonQtShell_QJSEngine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -114,7 +114,7 @@ bool PythonQtShell_QJSEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -147,7 +147,7 @@ void PythonQtShell_QJSEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -511,7 +511,7 @@ QUrl PythonQtShell_QQmlAbstractUrlInterceptor::intercept(const QUrl& path0, QQ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("intercept"); + static PyObject* name = PyUnicode_FromString("intercept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "QQmlAbstractUrlInterceptor::DataType"}; @@ -559,7 +559,7 @@ void PythonQtShell_QQmlApplicationEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -581,7 +581,7 @@ void PythonQtShell_QQmlApplicationEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -603,7 +603,7 @@ bool PythonQtShell_QQmlApplicationEngine::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -636,7 +636,7 @@ bool PythonQtShell_QQmlApplicationEngine::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -669,7 +669,7 @@ void PythonQtShell_QQmlApplicationEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -732,7 +732,7 @@ QObject* PythonQtShell_QQmlComponent::beginCreate(QQmlContext* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginCreate"); + static PyObject* name = PyUnicode_FromString("beginCreate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "QQmlContext*"}; @@ -765,7 +765,7 @@ void PythonQtShell_QQmlComponent::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -787,7 +787,7 @@ void PythonQtShell_QQmlComponent::completeCreate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("completeCreate"); + static PyObject* name = PyUnicode_FromString("completeCreate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -809,7 +809,7 @@ QObject* PythonQtShell_QQmlComponent::create(QQmlContext* context0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "QQmlContext*"}; @@ -842,7 +842,7 @@ void PythonQtShell_QQmlComponent::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -864,7 +864,7 @@ bool PythonQtShell_QQmlComponent::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -897,7 +897,7 @@ bool PythonQtShell_QQmlComponent::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -930,7 +930,7 @@ void PythonQtShell_QQmlComponent::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1080,7 +1080,7 @@ void PythonQtShell_QQmlContext::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1102,7 +1102,7 @@ void PythonQtShell_QQmlContext::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1124,7 +1124,7 @@ bool PythonQtShell_QQmlContext::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1157,7 +1157,7 @@ bool PythonQtShell_QQmlContext::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1190,7 +1190,7 @@ void PythonQtShell_QQmlContext::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1345,7 +1345,7 @@ void PythonQtShell_QQmlEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1367,7 +1367,7 @@ void PythonQtShell_QQmlEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1389,7 +1389,7 @@ bool PythonQtShell_QQmlEngine::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1422,7 +1422,7 @@ bool PythonQtShell_QQmlEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1455,7 +1455,7 @@ void PythonQtShell_QQmlEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1736,7 +1736,7 @@ void PythonQtShell_QQmlExpression::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1758,7 +1758,7 @@ void PythonQtShell_QQmlExpression::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1780,7 +1780,7 @@ bool PythonQtShell_QQmlExpression::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1813,7 +1813,7 @@ bool PythonQtShell_QQmlExpression::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1846,7 +1846,7 @@ void PythonQtShell_QQmlExpression::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1974,7 +1974,7 @@ void PythonQtShell_QQmlExtensionInterface::initializeEngine(QQmlEngine* engine0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeEngine"); + static PyObject* name = PyUnicode_FromString("initializeEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlEngine*" , "const char*"}; @@ -1996,7 +1996,7 @@ void PythonQtShell_QQmlExtensionInterface::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; @@ -2033,7 +2033,7 @@ void PythonQtShell_QQmlExtensionPlugin::initializeEngine(QQmlEngine* engine0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeEngine"); + static PyObject* name = PyUnicode_FromString("initializeEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlEngine*" , "const char*"}; @@ -2055,7 +2055,7 @@ void PythonQtShell_QQmlExtensionPlugin::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; @@ -2249,7 +2249,7 @@ void PythonQtShell_QQmlFileSelector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2271,7 +2271,7 @@ void PythonQtShell_QQmlFileSelector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2293,7 +2293,7 @@ bool PythonQtShell_QQmlFileSelector::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2326,7 +2326,7 @@ bool PythonQtShell_QQmlFileSelector::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2359,7 +2359,7 @@ void PythonQtShell_QQmlFileSelector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2429,7 +2429,7 @@ void PythonQtShell_QQmlIncubationController::incubatingObjectCountChanged(int a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incubatingObjectCountChanged"); + static PyObject* name = PyUnicode_FromString("incubatingObjectCountChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2486,7 +2486,7 @@ void PythonQtShell_QQmlIncubator::setInitialState(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setInitialState"); + static PyObject* name = PyUnicode_FromString("setInitialState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -2508,7 +2508,7 @@ void PythonQtShell_QQmlIncubator::statusChanged(QQmlIncubator::Status arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("statusChanged"); + static PyObject* name = PyUnicode_FromString("statusChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlIncubator::Status"}; @@ -2805,7 +2805,7 @@ QNetworkAccessManager* PythonQtShell_QQmlNetworkAccessManagerFactory::create(QO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkAccessManager*" , "QObject*"}; @@ -2853,7 +2853,7 @@ void PythonQtShell_QQmlParserStatus::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2875,7 +2875,7 @@ void PythonQtShell_QQmlParserStatus::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3101,7 +3101,7 @@ void PythonQtShell_QQmlPropertyMap::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3123,7 +3123,7 @@ void PythonQtShell_QQmlPropertyMap::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3145,7 +3145,7 @@ bool PythonQtShell_QQmlPropertyMap::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3178,7 +3178,7 @@ bool PythonQtShell_QQmlPropertyMap::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3211,7 +3211,7 @@ void PythonQtShell_QQmlPropertyMap::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3233,7 +3233,7 @@ QVariant PythonQtShell_QQmlPropertyMap::updateValue(const QString& key0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateValue"); + static PyObject* name = PyUnicode_FromString("updateValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -3339,7 +3339,7 @@ void PythonQtShell_QQmlPropertyValueSource::setTarget(const QQmlProperty& arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTarget"); + static PyObject* name = PyUnicode_FromString("setTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QQmlProperty&"}; @@ -3431,7 +3431,7 @@ void PythonQtShell_QQmlTypesExtensionInterface::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; diff --git a/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp b/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp index 04abb9b66..16ffe705a 100644 --- a/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp +++ b/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp @@ -79,7 +79,7 @@ QRectF PythonQtShell_QQuickFramebufferObject::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -112,7 +112,7 @@ bool PythonQtShell_QQuickFramebufferObject::childMouseEventFilter(QQuickItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -145,7 +145,7 @@ void PythonQtShell_QQuickFramebufferObject::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -167,7 +167,7 @@ QRectF PythonQtShell_QQuickFramebufferObject::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -200,7 +200,7 @@ void PythonQtShell_QQuickFramebufferObject::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -222,7 +222,7 @@ bool PythonQtShell_QQuickFramebufferObject::contains(const QPointF& point0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -255,7 +255,7 @@ QQuickFramebufferObject::Renderer* PythonQtShell_QQuickFramebufferObject::creat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createRenderer"); + static PyObject* name = PyUnicode_FromString("createRenderer"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QQuickFramebufferObject::Renderer*"}; @@ -288,7 +288,7 @@ void PythonQtShell_QQuickFramebufferObject::dragEnterEvent(QDragEnterEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -310,7 +310,7 @@ void PythonQtShell_QQuickFramebufferObject::dragLeaveEvent(QDragLeaveEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -332,7 +332,7 @@ void PythonQtShell_QQuickFramebufferObject::dragMoveEvent(QDragMoveEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -354,7 +354,7 @@ void PythonQtShell_QQuickFramebufferObject::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -376,7 +376,7 @@ bool PythonQtShell_QQuickFramebufferObject::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -409,7 +409,7 @@ void PythonQtShell_QQuickFramebufferObject::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -431,7 +431,7 @@ void PythonQtShell_QQuickFramebufferObject::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -453,7 +453,7 @@ void PythonQtShell_QQuickFramebufferObject::geometryChanged(const QRectF& newGe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -475,7 +475,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverEnterEvent(QHoverEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -497,7 +497,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverLeaveEvent(QHoverEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -519,7 +519,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -541,7 +541,7 @@ void PythonQtShell_QQuickFramebufferObject::inputMethodEvent(QInputMethodEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -563,7 +563,7 @@ QVariant PythonQtShell_QQuickFramebufferObject::inputMethodQuery(Qt::InputMetho if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -596,7 +596,7 @@ bool PythonQtShell_QQuickFramebufferObject::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -629,7 +629,7 @@ void PythonQtShell_QQuickFramebufferObject::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -651,7 +651,7 @@ void PythonQtShell_QQuickFramebufferObject::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -673,7 +673,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseDoubleClickEvent(QMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -695,7 +695,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -717,7 +717,7 @@ void PythonQtShell_QQuickFramebufferObject::mousePressEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -739,7 +739,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseReleaseEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -761,7 +761,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -783,7 +783,7 @@ void PythonQtShell_QQuickFramebufferObject::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -805,7 +805,7 @@ QSGTextureProvider* PythonQtShell_QQuickFramebufferObject::textureProvider() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -838,7 +838,7 @@ void PythonQtShell_QQuickFramebufferObject::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -860,7 +860,7 @@ void PythonQtShell_QQuickFramebufferObject::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -882,7 +882,7 @@ QSGNode* PythonQtShell_QQuickFramebufferObject::updatePaintNode(QSGNode* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -915,7 +915,7 @@ void PythonQtShell_QQuickFramebufferObject::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -937,7 +937,7 @@ void PythonQtShell_QQuickFramebufferObject::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -959,7 +959,7 @@ void PythonQtShell_QQuickFramebufferObject::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1029,7 +1029,7 @@ QOpenGLFramebufferObject* PythonQtShell_QQuickFramebufferObject__Renderer::crea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createFramebufferObject"); + static PyObject* name = PyUnicode_FromString("createFramebufferObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QOpenGLFramebufferObject*" , "const QSize&"}; @@ -1062,7 +1062,7 @@ void PythonQtShell_QQuickFramebufferObject__Renderer::render() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("render"); + static PyObject* name = PyUnicode_FromString("render"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1084,7 +1084,7 @@ void PythonQtShell_QQuickFramebufferObject__Renderer::synchronize(QQuickFramebuf if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("synchronize"); + static PyObject* name = PyUnicode_FromString("synchronize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQuickFramebufferObject*"}; @@ -1158,7 +1158,7 @@ QRectF PythonQtShell_QQuickItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1191,7 +1191,7 @@ bool PythonQtShell_QQuickItem::childMouseEventFilter(QQuickItem* arg__1, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -1224,7 +1224,7 @@ void PythonQtShell_QQuickItem::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1246,7 +1246,7 @@ QRectF PythonQtShell_QQuickItem::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1279,7 +1279,7 @@ void PythonQtShell_QQuickItem::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1301,7 +1301,7 @@ bool PythonQtShell_QQuickItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1334,7 +1334,7 @@ void PythonQtShell_QQuickItem::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1356,7 +1356,7 @@ void PythonQtShell_QQuickItem::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1378,7 +1378,7 @@ void PythonQtShell_QQuickItem::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1400,7 +1400,7 @@ void PythonQtShell_QQuickItem::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1422,7 +1422,7 @@ bool PythonQtShell_QQuickItem::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1455,7 +1455,7 @@ void PythonQtShell_QQuickItem::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1477,7 +1477,7 @@ void PythonQtShell_QQuickItem::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1499,7 +1499,7 @@ void PythonQtShell_QQuickItem::geometryChanged(const QRectF& newGeometry0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -1521,7 +1521,7 @@ void PythonQtShell_QQuickItem::hoverEnterEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1543,7 +1543,7 @@ void PythonQtShell_QQuickItem::hoverLeaveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1565,7 +1565,7 @@ void PythonQtShell_QQuickItem::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1587,7 +1587,7 @@ void PythonQtShell_QQuickItem::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1609,7 +1609,7 @@ QVariant PythonQtShell_QQuickItem::inputMethodQuery(Qt::InputMethodQuery query if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1642,7 +1642,7 @@ bool PythonQtShell_QQuickItem::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1675,7 +1675,7 @@ void PythonQtShell_QQuickItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1697,7 +1697,7 @@ void PythonQtShell_QQuickItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1719,7 +1719,7 @@ void PythonQtShell_QQuickItem::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1741,7 +1741,7 @@ void PythonQtShell_QQuickItem::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1763,7 +1763,7 @@ void PythonQtShell_QQuickItem::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1785,7 +1785,7 @@ void PythonQtShell_QQuickItem::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1807,7 +1807,7 @@ void PythonQtShell_QQuickItem::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1829,7 +1829,7 @@ void PythonQtShell_QQuickItem::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1851,7 +1851,7 @@ QSGTextureProvider* PythonQtShell_QQuickItem::textureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -1884,7 +1884,7 @@ void PythonQtShell_QQuickItem::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -1906,7 +1906,7 @@ void PythonQtShell_QQuickItem::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1928,7 +1928,7 @@ QSGNode* PythonQtShell_QQuickItem::updatePaintNode(QSGNode* arg__1, QQuickItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -1961,7 +1961,7 @@ void PythonQtShell_QQuickItem::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1983,7 +1983,7 @@ void PythonQtShell_QQuickItem::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2005,7 +2005,7 @@ void PythonQtShell_QQuickItem::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2786,7 +2786,7 @@ QRectF PythonQtShell_QQuickPaintedItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2819,7 +2819,7 @@ bool PythonQtShell_QQuickPaintedItem::childMouseEventFilter(QQuickItem* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -2852,7 +2852,7 @@ void PythonQtShell_QQuickPaintedItem::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2874,7 +2874,7 @@ QRectF PythonQtShell_QQuickPaintedItem::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2907,7 +2907,7 @@ void PythonQtShell_QQuickPaintedItem::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2929,7 +2929,7 @@ bool PythonQtShell_QQuickPaintedItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -2962,7 +2962,7 @@ void PythonQtShell_QQuickPaintedItem::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2984,7 +2984,7 @@ void PythonQtShell_QQuickPaintedItem::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3006,7 +3006,7 @@ void PythonQtShell_QQuickPaintedItem::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3028,7 +3028,7 @@ void PythonQtShell_QQuickPaintedItem::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3050,7 +3050,7 @@ bool PythonQtShell_QQuickPaintedItem::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3083,7 +3083,7 @@ void PythonQtShell_QQuickPaintedItem::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3105,7 +3105,7 @@ void PythonQtShell_QQuickPaintedItem::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3127,7 +3127,7 @@ void PythonQtShell_QQuickPaintedItem::geometryChanged(const QRectF& newGeometry if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -3149,7 +3149,7 @@ void PythonQtShell_QQuickPaintedItem::hoverEnterEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3171,7 +3171,7 @@ void PythonQtShell_QQuickPaintedItem::hoverLeaveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3193,7 +3193,7 @@ void PythonQtShell_QQuickPaintedItem::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3215,7 +3215,7 @@ void PythonQtShell_QQuickPaintedItem::inputMethodEvent(QInputMethodEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3237,7 +3237,7 @@ QVariant PythonQtShell_QQuickPaintedItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3270,7 +3270,7 @@ bool PythonQtShell_QQuickPaintedItem::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3303,7 +3303,7 @@ void PythonQtShell_QQuickPaintedItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3325,7 +3325,7 @@ void PythonQtShell_QQuickPaintedItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3347,7 +3347,7 @@ void PythonQtShell_QQuickPaintedItem::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3369,7 +3369,7 @@ void PythonQtShell_QQuickPaintedItem::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3391,7 +3391,7 @@ void PythonQtShell_QQuickPaintedItem::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3413,7 +3413,7 @@ void PythonQtShell_QQuickPaintedItem::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3435,7 +3435,7 @@ void PythonQtShell_QQuickPaintedItem::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3457,7 +3457,7 @@ void PythonQtShell_QQuickPaintedItem::paint(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3479,7 +3479,7 @@ void PythonQtShell_QQuickPaintedItem::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3501,7 +3501,7 @@ QSGTextureProvider* PythonQtShell_QQuickPaintedItem::textureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -3534,7 +3534,7 @@ void PythonQtShell_QQuickPaintedItem::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -3556,7 +3556,7 @@ void PythonQtShell_QQuickPaintedItem::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3578,7 +3578,7 @@ QSGNode* PythonQtShell_QQuickPaintedItem::updatePaintNode(QSGNode* arg__1, QQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -3611,7 +3611,7 @@ void PythonQtShell_QQuickPaintedItem::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3633,7 +3633,7 @@ void PythonQtShell_QQuickPaintedItem::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3655,7 +3655,7 @@ void PythonQtShell_QQuickPaintedItem::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3805,7 +3805,7 @@ void PythonQtShell_QQuickRenderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3827,7 +3827,7 @@ void PythonQtShell_QQuickRenderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3849,7 +3849,7 @@ bool PythonQtShell_QQuickRenderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3882,7 +3882,7 @@ bool PythonQtShell_QQuickRenderControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3915,7 +3915,7 @@ QWindow* PythonQtShell_QQuickRenderControl::renderWindow(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("renderWindow"); + static PyObject* name = PyUnicode_FromString("renderWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWindow*" , "QPoint*"}; @@ -3948,7 +3948,7 @@ void PythonQtShell_QQuickRenderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4038,7 +4038,7 @@ void PythonQtShell_QQuickTextDocument::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4060,7 +4060,7 @@ void PythonQtShell_QQuickTextDocument::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4082,7 +4082,7 @@ bool PythonQtShell_QQuickTextDocument::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4115,7 +4115,7 @@ bool PythonQtShell_QQuickTextDocument::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4148,7 +4148,7 @@ void PythonQtShell_QQuickTextDocument::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4198,7 +4198,7 @@ void PythonQtShell_QQuickTransform::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -4220,7 +4220,7 @@ void PythonQtShell_QQuickTransform::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4242,7 +4242,7 @@ void PythonQtShell_QQuickTransform::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4264,7 +4264,7 @@ bool PythonQtShell_QQuickTransform::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4297,7 +4297,7 @@ bool PythonQtShell_QQuickTransform::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4330,7 +4330,7 @@ void PythonQtShell_QQuickTransform::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4390,7 +4390,7 @@ void PythonQtShell_QQuickView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4412,7 +4412,7 @@ void PythonQtShell_QQuickView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4434,7 +4434,7 @@ bool PythonQtShell_QQuickView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4467,7 +4467,7 @@ bool PythonQtShell_QQuickView::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4500,7 +4500,7 @@ void PythonQtShell_QQuickView::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -4522,7 +4522,7 @@ void PythonQtShell_QQuickView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4544,7 +4544,7 @@ QObject* PythonQtShell_QQuickView::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -4577,7 +4577,7 @@ void PythonQtShell_QQuickView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4599,7 +4599,7 @@ QSurfaceFormat PythonQtShell_QQuickView::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -4632,7 +4632,7 @@ void PythonQtShell_QQuickView::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4654,7 +4654,7 @@ void PythonQtShell_QQuickView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4676,7 +4676,7 @@ void PythonQtShell_QQuickView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4698,7 +4698,7 @@ void PythonQtShell_QQuickView::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4720,7 +4720,7 @@ void PythonQtShell_QQuickView::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4742,7 +4742,7 @@ void PythonQtShell_QQuickView::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4764,7 +4764,7 @@ void PythonQtShell_QQuickView::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4786,7 +4786,7 @@ void PythonQtShell_QQuickView::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4808,7 +4808,7 @@ bool PythonQtShell_QQuickView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4841,7 +4841,7 @@ void PythonQtShell_QQuickView::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4863,7 +4863,7 @@ void PythonQtShell_QQuickView::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4885,7 +4885,7 @@ QSize PythonQtShell_QQuickView::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4918,7 +4918,7 @@ QSurface::SurfaceType PythonQtShell_QQuickView::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -4951,7 +4951,7 @@ void PythonQtShell_QQuickView::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4973,7 +4973,7 @@ void PythonQtShell_QQuickView::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4995,7 +4995,7 @@ void PythonQtShell_QQuickView::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -5017,7 +5017,7 @@ void PythonQtShell_QQuickView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5124,7 +5124,7 @@ void PythonQtShell_QQuickWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5146,7 +5146,7 @@ void PythonQtShell_QQuickWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5168,7 +5168,7 @@ void PythonQtShell_QQuickWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5190,7 +5190,7 @@ void PythonQtShell_QQuickWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5212,7 +5212,7 @@ void PythonQtShell_QQuickWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5234,7 +5234,7 @@ void PythonQtShell_QQuickWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5256,7 +5256,7 @@ int PythonQtShell_QQuickWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5289,7 +5289,7 @@ void PythonQtShell_QQuickWidget::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5311,7 +5311,7 @@ void PythonQtShell_QQuickWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5333,7 +5333,7 @@ void PythonQtShell_QQuickWidget::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5355,7 +5355,7 @@ void PythonQtShell_QQuickWidget::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5377,7 +5377,7 @@ void PythonQtShell_QQuickWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5399,7 +5399,7 @@ bool PythonQtShell_QQuickWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5432,7 +5432,7 @@ bool PythonQtShell_QQuickWidget::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5465,7 +5465,7 @@ void PythonQtShell_QQuickWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5487,7 +5487,7 @@ bool PythonQtShell_QQuickWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5520,7 +5520,7 @@ void PythonQtShell_QQuickWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5542,7 +5542,7 @@ bool PythonQtShell_QQuickWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5575,7 +5575,7 @@ int PythonQtShell_QQuickWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5608,7 +5608,7 @@ void PythonQtShell_QQuickWidget::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5630,7 +5630,7 @@ void PythonQtShell_QQuickWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5652,7 +5652,7 @@ void PythonQtShell_QQuickWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5674,7 +5674,7 @@ QVariant PythonQtShell_QQuickWidget::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5707,7 +5707,7 @@ void PythonQtShell_QQuickWidget::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5729,7 +5729,7 @@ void PythonQtShell_QQuickWidget::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5751,7 +5751,7 @@ void PythonQtShell_QQuickWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5773,7 +5773,7 @@ int PythonQtShell_QQuickWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5806,7 +5806,7 @@ QSize PythonQtShell_QQuickWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5839,7 +5839,7 @@ void PythonQtShell_QQuickWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5861,7 +5861,7 @@ void PythonQtShell_QQuickWidget::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5883,7 +5883,7 @@ void PythonQtShell_QQuickWidget::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5905,7 +5905,7 @@ void PythonQtShell_QQuickWidget::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5927,7 +5927,7 @@ void PythonQtShell_QQuickWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5949,7 +5949,7 @@ bool PythonQtShell_QQuickWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5982,7 +5982,7 @@ QPaintEngine* PythonQtShell_QQuickWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6015,7 +6015,7 @@ void PythonQtShell_QQuickWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6037,7 +6037,7 @@ QPaintDevice* PythonQtShell_QQuickWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6070,7 +6070,7 @@ void PythonQtShell_QQuickWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6092,7 +6092,7 @@ void PythonQtShell_QQuickWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6114,7 +6114,7 @@ QPainter* PythonQtShell_QQuickWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6147,7 +6147,7 @@ void PythonQtShell_QQuickWidget::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6169,7 +6169,7 @@ QSize PythonQtShell_QQuickWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6202,7 +6202,7 @@ void PythonQtShell_QQuickWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6224,7 +6224,7 @@ void PythonQtShell_QQuickWidget::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6246,7 +6246,7 @@ void PythonQtShell_QQuickWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6374,7 +6374,7 @@ void PythonQtShell_QQuickWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6396,7 +6396,7 @@ void PythonQtShell_QQuickWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6418,7 +6418,7 @@ bool PythonQtShell_QQuickWindow::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6451,7 +6451,7 @@ bool PythonQtShell_QQuickWindow::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6484,7 +6484,7 @@ void PythonQtShell_QQuickWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -6506,7 +6506,7 @@ void PythonQtShell_QQuickWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6528,7 +6528,7 @@ QObject* PythonQtShell_QQuickWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -6561,7 +6561,7 @@ void PythonQtShell_QQuickWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6583,7 +6583,7 @@ QSurfaceFormat PythonQtShell_QQuickWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -6616,7 +6616,7 @@ void PythonQtShell_QQuickWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6638,7 +6638,7 @@ void PythonQtShell_QQuickWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6660,7 +6660,7 @@ void PythonQtShell_QQuickWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6682,7 +6682,7 @@ void PythonQtShell_QQuickWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6704,7 +6704,7 @@ void PythonQtShell_QQuickWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6726,7 +6726,7 @@ void PythonQtShell_QQuickWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6748,7 +6748,7 @@ void PythonQtShell_QQuickWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6770,7 +6770,7 @@ void PythonQtShell_QQuickWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6792,7 +6792,7 @@ bool PythonQtShell_QQuickWindow::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6825,7 +6825,7 @@ void PythonQtShell_QQuickWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6847,7 +6847,7 @@ void PythonQtShell_QQuickWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6869,7 +6869,7 @@ QSize PythonQtShell_QQuickWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6902,7 +6902,7 @@ QSurface::SurfaceType PythonQtShell_QQuickWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -6935,7 +6935,7 @@ void PythonQtShell_QQuickWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6957,7 +6957,7 @@ void PythonQtShell_QQuickWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6979,7 +6979,7 @@ void PythonQtShell_QQuickWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -7001,7 +7001,7 @@ void PythonQtShell_QQuickWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7252,7 +7252,7 @@ void PythonQtShell_QSGAbstractRenderer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7274,7 +7274,7 @@ void PythonQtShell_QSGAbstractRenderer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7296,7 +7296,7 @@ bool PythonQtShell_QSGAbstractRenderer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7329,7 +7329,7 @@ bool PythonQtShell_QSGAbstractRenderer::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7362,7 +7362,7 @@ void PythonQtShell_QSGAbstractRenderer::nodeChanged(QSGNode* node0, QSGNode::Di if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodeChanged"); + static PyObject* name = PyUnicode_FromString("nodeChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*" , "QSGNode::DirtyState"}; @@ -7384,7 +7384,7 @@ void PythonQtShell_QSGAbstractRenderer::renderScene(uint fboId0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("renderScene"); + static PyObject* name = PyUnicode_FromString("renderScene"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "uint"}; @@ -7406,7 +7406,7 @@ void PythonQtShell_QSGAbstractRenderer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7536,7 +7536,7 @@ bool PythonQtShell_QSGBasicGeometryNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7569,7 +7569,7 @@ void PythonQtShell_QSGBasicGeometryNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7636,7 +7636,7 @@ bool PythonQtShell_QSGClipNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7669,7 +7669,7 @@ void PythonQtShell_QSGClipNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7721,7 +7721,7 @@ void PythonQtShell_QSGDynamicTexture::bind() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7743,7 +7743,7 @@ void PythonQtShell_QSGDynamicTexture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7765,7 +7765,7 @@ void PythonQtShell_QSGDynamicTexture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7787,7 +7787,7 @@ bool PythonQtShell_QSGDynamicTexture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7820,7 +7820,7 @@ bool PythonQtShell_QSGDynamicTexture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7853,7 +7853,7 @@ bool PythonQtShell_QSGDynamicTexture::hasAlphaChannel() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasAlphaChannel"); + static PyObject* name = PyUnicode_FromString("hasAlphaChannel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7886,7 +7886,7 @@ bool PythonQtShell_QSGDynamicTexture::hasMipmaps() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasMipmaps"); + static PyObject* name = PyUnicode_FromString("hasMipmaps"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7919,7 +7919,7 @@ bool PythonQtShell_QSGDynamicTexture::isAtlasTexture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAtlasTexture"); + static PyObject* name = PyUnicode_FromString("isAtlasTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7952,7 +7952,7 @@ QRectF PythonQtShell_QSGDynamicTexture::normalizedTextureSubRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("normalizedTextureSubRect"); + static PyObject* name = PyUnicode_FromString("normalizedTextureSubRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -7985,7 +7985,7 @@ QSGTexture* PythonQtShell_QSGDynamicTexture::removedFromAtlas() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removedFromAtlas"); + static PyObject* name = PyUnicode_FromString("removedFromAtlas"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -8018,7 +8018,7 @@ int PythonQtShell_QSGDynamicTexture::textureId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureId"); + static PyObject* name = PyUnicode_FromString("textureId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8051,7 +8051,7 @@ QSize PythonQtShell_QSGDynamicTexture::textureSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureSize"); + static PyObject* name = PyUnicode_FromString("textureSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8084,7 +8084,7 @@ void PythonQtShell_QSGDynamicTexture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8106,7 +8106,7 @@ bool PythonQtShell_QSGDynamicTexture::updateTexture() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateTexture"); + static PyObject* name = PyUnicode_FromString("updateTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8167,7 +8167,7 @@ void PythonQtShell_QSGEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8189,7 +8189,7 @@ void PythonQtShell_QSGEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8211,7 +8211,7 @@ bool PythonQtShell_QSGEngine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8244,7 +8244,7 @@ bool PythonQtShell_QSGEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8277,7 +8277,7 @@ void PythonQtShell_QSGEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8352,7 +8352,7 @@ QSGMaterialType* PythonQtShell_QSGFlatColorMaterial::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGMaterialType*"}; @@ -8610,7 +8610,7 @@ bool PythonQtShell_QSGGeometryNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8643,7 +8643,7 @@ void PythonQtShell_QSGGeometryNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8859,7 +8859,7 @@ bool PythonQtShell_QSGNinePatchNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8892,7 +8892,7 @@ void PythonQtShell_QSGNinePatchNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8914,7 +8914,7 @@ void PythonQtShell_QSGNinePatchNode::setBounds(const QRectF& bounds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBounds"); + static PyObject* name = PyUnicode_FromString("setBounds"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -8936,7 +8936,7 @@ void PythonQtShell_QSGNinePatchNode::setDevicePixelRatio(qreal ratio0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDevicePixelRatio"); + static PyObject* name = PyUnicode_FromString("setDevicePixelRatio"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8958,7 +8958,7 @@ void PythonQtShell_QSGNinePatchNode::setPadding(qreal left0, qreal top1, qreal if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPadding"); + static PyObject* name = PyUnicode_FromString("setPadding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal" , "qreal" , "qreal" , "qreal"}; @@ -8980,7 +8980,7 @@ void PythonQtShell_QSGNinePatchNode::setTexture(QSGTexture* texture0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTexture"); + static PyObject* name = PyUnicode_FromString("setTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTexture*"}; @@ -9002,7 +9002,7 @@ void PythonQtShell_QSGNinePatchNode::update() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("update"); + static PyObject* name = PyUnicode_FromString("update"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; diff --git a/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp b/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp index 6b88bd0d1..aef37912e 100644 --- a/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp +++ b/generated_cpp_515/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp @@ -29,7 +29,7 @@ bool PythonQtShell_QSGNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -62,7 +62,7 @@ void PythonQtShell_QSGNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -210,7 +210,7 @@ void PythonQtShell_QSGNodeVisitor::enterClipNode(QSGClipNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterClipNode"); + static PyObject* name = PyUnicode_FromString("enterClipNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGClipNode*"}; @@ -232,7 +232,7 @@ void PythonQtShell_QSGNodeVisitor::enterGeometryNode(QSGGeometryNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterGeometryNode"); + static PyObject* name = PyUnicode_FromString("enterGeometryNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGGeometryNode*"}; @@ -254,7 +254,7 @@ void PythonQtShell_QSGNodeVisitor::enterOpacityNode(QSGOpacityNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterOpacityNode"); + static PyObject* name = PyUnicode_FromString("enterOpacityNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGOpacityNode*"}; @@ -276,7 +276,7 @@ void PythonQtShell_QSGNodeVisitor::enterTransformNode(QSGTransformNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterTransformNode"); + static PyObject* name = PyUnicode_FromString("enterTransformNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTransformNode*"}; @@ -298,7 +298,7 @@ void PythonQtShell_QSGNodeVisitor::leaveClipNode(QSGClipNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveClipNode"); + static PyObject* name = PyUnicode_FromString("leaveClipNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGClipNode*"}; @@ -320,7 +320,7 @@ void PythonQtShell_QSGNodeVisitor::leaveGeometryNode(QSGGeometryNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveGeometryNode"); + static PyObject* name = PyUnicode_FromString("leaveGeometryNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGGeometryNode*"}; @@ -342,7 +342,7 @@ void PythonQtShell_QSGNodeVisitor::leaveOpacityNode(QSGOpacityNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveOpacityNode"); + static PyObject* name = PyUnicode_FromString("leaveOpacityNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGOpacityNode*"}; @@ -364,7 +364,7 @@ void PythonQtShell_QSGNodeVisitor::leaveTransformNode(QSGTransformNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveTransformNode"); + static PyObject* name = PyUnicode_FromString("leaveTransformNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTransformNode*"}; @@ -386,7 +386,7 @@ void PythonQtShell_QSGNodeVisitor::visitChildren(QSGNode* n0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visitChildren"); + static PyObject* name = PyUnicode_FromString("visitChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*"}; @@ -408,7 +408,7 @@ void PythonQtShell_QSGNodeVisitor::visitNode(QSGNode* n0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visitNode"); + static PyObject* name = PyUnicode_FromString("visitNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*"}; @@ -490,7 +490,7 @@ bool PythonQtShell_QSGOpacityNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -523,7 +523,7 @@ void PythonQtShell_QSGOpacityNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -582,7 +582,7 @@ QColor PythonQtShell_QSGRectangleNode::color() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("color"); + static PyObject* name = PyUnicode_FromString("color"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QColor"}; @@ -615,7 +615,7 @@ bool PythonQtShell_QSGRectangleNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -648,7 +648,7 @@ void PythonQtShell_QSGRectangleNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -670,7 +670,7 @@ QRectF PythonQtShell_QSGRectangleNode::rect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rect"); + static PyObject* name = PyUnicode_FromString("rect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -703,7 +703,7 @@ void PythonQtShell_QSGRectangleNode::setColor(const QColor& color0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setColor"); + static PyObject* name = PyUnicode_FromString("setColor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QColor&"}; @@ -725,7 +725,7 @@ void PythonQtShell_QSGRectangleNode::setRect(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRect"); + static PyObject* name = PyUnicode_FromString("setRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -782,7 +782,7 @@ bool PythonQtShell_QSGRenderNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -815,7 +815,7 @@ void PythonQtShell_QSGRenderNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -837,7 +837,7 @@ QRectF PythonQtShell_QSGRenderNode::rect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rect"); + static PyObject* name = PyUnicode_FromString("rect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -870,7 +870,7 @@ void PythonQtShell_QSGRenderNode::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -892,7 +892,7 @@ void PythonQtShell_QSGRenderNode::render(const QSGRenderNode::RenderState* stat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("render"); + static PyObject* name = PyUnicode_FromString("render"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSGRenderNode::RenderState*"}; @@ -954,7 +954,7 @@ const QRegion* PythonQtShell_QSGRenderNode__RenderState::clipRegion() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRegion"); + static PyObject* name = PyUnicode_FromString("clipRegion"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QRegion*"}; @@ -987,7 +987,7 @@ void* PythonQtShell_QSGRenderNode__RenderState::get(const char* state0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("get"); + static PyObject* name = PyUnicode_FromString("get"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const char*"}; @@ -1020,7 +1020,7 @@ const QMatrix4x4* PythonQtShell_QSGRenderNode__RenderState::projectionMatrix() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("projectionMatrix"); + static PyObject* name = PyUnicode_FromString("projectionMatrix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QMatrix4x4*"}; @@ -1053,7 +1053,7 @@ bool PythonQtShell_QSGRenderNode__RenderState::scissorEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scissorEnabled"); + static PyObject* name = PyUnicode_FromString("scissorEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1086,7 +1086,7 @@ QRect PythonQtShell_QSGRenderNode__RenderState::scissorRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scissorRect"); + static PyObject* name = PyUnicode_FromString("scissorRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -1119,7 +1119,7 @@ bool PythonQtShell_QSGRenderNode__RenderState::stencilEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stencilEnabled"); + static PyObject* name = PyUnicode_FromString("stencilEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1152,7 +1152,7 @@ int PythonQtShell_QSGRenderNode__RenderState::stencilValue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stencilValue"); + static PyObject* name = PyUnicode_FromString("stencilValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1230,7 +1230,7 @@ bool PythonQtShell_QSGRootNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1263,7 +1263,7 @@ void PythonQtShell_QSGRootNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1302,7 +1302,7 @@ void PythonQtShell_QSGTexture::bind() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1324,7 +1324,7 @@ void PythonQtShell_QSGTexture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1346,7 +1346,7 @@ void PythonQtShell_QSGTexture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1368,7 +1368,7 @@ bool PythonQtShell_QSGTexture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1401,7 +1401,7 @@ bool PythonQtShell_QSGTexture::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1434,7 +1434,7 @@ bool PythonQtShell_QSGTexture::hasAlphaChannel() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasAlphaChannel"); + static PyObject* name = PyUnicode_FromString("hasAlphaChannel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1467,7 +1467,7 @@ bool PythonQtShell_QSGTexture::hasMipmaps() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasMipmaps"); + static PyObject* name = PyUnicode_FromString("hasMipmaps"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1500,7 +1500,7 @@ bool PythonQtShell_QSGTexture::isAtlasTexture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAtlasTexture"); + static PyObject* name = PyUnicode_FromString("isAtlasTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1533,7 +1533,7 @@ QRectF PythonQtShell_QSGTexture::normalizedTextureSubRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("normalizedTextureSubRect"); + static PyObject* name = PyUnicode_FromString("normalizedTextureSubRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1566,7 +1566,7 @@ QSGTexture* PythonQtShell_QSGTexture::removedFromAtlas() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removedFromAtlas"); + static PyObject* name = PyUnicode_FromString("removedFromAtlas"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -1599,7 +1599,7 @@ int PythonQtShell_QSGTexture::textureId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureId"); + static PyObject* name = PyUnicode_FromString("textureId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1632,7 +1632,7 @@ QSize PythonQtShell_QSGTexture::textureSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureSize"); + static PyObject* name = PyUnicode_FromString("textureSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1665,7 +1665,7 @@ void PythonQtShell_QSGTexture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1815,7 +1815,7 @@ QSGMaterialType* PythonQtShell_QSGTextureMaterial::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGMaterialType*"}; @@ -1863,7 +1863,7 @@ void PythonQtShell_QSGTextureProvider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1885,7 +1885,7 @@ void PythonQtShell_QSGTextureProvider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1907,7 +1907,7 @@ bool PythonQtShell_QSGTextureProvider::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1940,7 +1940,7 @@ bool PythonQtShell_QSGTextureProvider::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1973,7 +1973,7 @@ QSGTexture* PythonQtShell_QSGTextureProvider::texture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("texture"); + static PyObject* name = PyUnicode_FromString("texture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -2006,7 +2006,7 @@ void PythonQtShell_QSGTextureProvider::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2056,7 +2056,7 @@ bool PythonQtShell_QSGTransformNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2089,7 +2089,7 @@ void PythonQtShell_QSGTransformNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; diff --git a/generated_cpp_515/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp b/generated_cpp_515/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp index 1399b4d6d..038809e75 100644 --- a/generated_cpp_515/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +++ b/generated_cpp_515/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp @@ -285,7 +285,7 @@ bool PythonQtShell_QSqlDriver::beginTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginTransaction"); + static PyObject* name = PyUnicode_FromString("beginTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -318,7 +318,7 @@ bool PythonQtShell_QSqlDriver::cancelQuery() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelQuery"); + static PyObject* name = PyUnicode_FromString("cancelQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -351,7 +351,7 @@ void PythonQtShell_QSqlDriver::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -373,7 +373,7 @@ void PythonQtShell_QSqlDriver::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -395,7 +395,7 @@ bool PythonQtShell_QSqlDriver::commitTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitTransaction"); + static PyObject* name = PyUnicode_FromString("commitTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -428,7 +428,7 @@ QSqlResult* PythonQtShell_QSqlDriver::createResult() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createResult"); + static PyObject* name = PyUnicode_FromString("createResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlResult*"}; @@ -461,7 +461,7 @@ void PythonQtShell_QSqlDriver::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -483,7 +483,7 @@ QString PythonQtShell_QSqlDriver::escapeIdentifier(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("escapeIdentifier"); + static PyObject* name = PyUnicode_FromString("escapeIdentifier"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -516,7 +516,7 @@ bool PythonQtShell_QSqlDriver::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -549,7 +549,7 @@ bool PythonQtShell_QSqlDriver::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -582,7 +582,7 @@ QString PythonQtShell_QSqlDriver::formatValue(const QSqlField& field0, bool t if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("formatValue"); + static PyObject* name = PyUnicode_FromString("formatValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QSqlField&" , "bool"}; @@ -615,7 +615,7 @@ QVariant PythonQtShell_QSqlDriver::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -648,7 +648,7 @@ bool PythonQtShell_QSqlDriver::hasFeature(QSqlDriver::DriverFeature f0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QSqlDriver::DriverFeature"}; @@ -681,7 +681,7 @@ bool PythonQtShell_QSqlDriver::isIdentifierEscaped(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIdentifierEscaped"); + static PyObject* name = PyUnicode_FromString("isIdentifierEscaped"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -714,7 +714,7 @@ bool PythonQtShell_QSqlDriver::isOpen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isOpen"); + static PyObject* name = PyUnicode_FromString("isOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -747,7 +747,7 @@ bool PythonQtShell_QSqlDriver::open(const QString& db0, const QString& user1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "int" , "const QString&"}; @@ -780,7 +780,7 @@ QSqlIndex PythonQtShell_QSqlDriver::primaryIndex(const QString& tableName0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("primaryIndex"); + static PyObject* name = PyUnicode_FromString("primaryIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlIndex" , "const QString&"}; @@ -813,7 +813,7 @@ QSqlRecord PythonQtShell_QSqlDriver::record(const QString& tableName0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord" , "const QString&"}; @@ -846,7 +846,7 @@ bool PythonQtShell_QSqlDriver::rollbackTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rollbackTransaction"); + static PyObject* name = PyUnicode_FromString("rollbackTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -879,7 +879,7 @@ void PythonQtShell_QSqlDriver::setLastError(const QSqlError& e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -901,7 +901,7 @@ void PythonQtShell_QSqlDriver::setOpen(bool o0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOpen"); + static PyObject* name = PyUnicode_FromString("setOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -923,7 +923,7 @@ void PythonQtShell_QSqlDriver::setOpenError(bool e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOpenError"); + static PyObject* name = PyUnicode_FromString("setOpenError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -945,7 +945,7 @@ QString PythonQtShell_QSqlDriver::sqlStatement(QSqlDriver::StatementType type0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sqlStatement"); + static PyObject* name = PyUnicode_FromString("sqlStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QSqlDriver::StatementType" , "const QString&" , "const QSqlRecord&" , "bool"}; @@ -978,7 +978,7 @@ QString PythonQtShell_QSqlDriver::stripDelimiters(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stripDelimiters"); + static PyObject* name = PyUnicode_FromString("stripDelimiters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -1011,7 +1011,7 @@ bool PythonQtShell_QSqlDriver::subscribeToNotification(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subscribeToNotification"); + static PyObject* name = PyUnicode_FromString("subscribeToNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1044,7 +1044,7 @@ QStringList PythonQtShell_QSqlDriver::subscribedToNotifications() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subscribedToNotifications"); + static PyObject* name = PyUnicode_FromString("subscribedToNotifications"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1077,7 +1077,7 @@ QStringList PythonQtShell_QSqlDriver::tables(QSql::TableType tableType0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tables"); + static PyObject* name = PyUnicode_FromString("tables"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QSql::TableType"}; @@ -1110,7 +1110,7 @@ void PythonQtShell_QSqlDriver::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1132,7 +1132,7 @@ bool PythonQtShell_QSqlDriver::unsubscribeFromNotification(const QString& name if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unsubscribeFromNotification"); + static PyObject* name = PyUnicode_FromString("unsubscribeFromNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1328,7 +1328,7 @@ QSqlDriver* PythonQtShell_QSqlDriverCreatorBase::createObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlDriver*"}; @@ -1901,7 +1901,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::buddy(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1934,7 +1934,7 @@ bool PythonQtShell_QSqlQueryModel::canDropMimeData(const QMimeData* data0, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1967,7 +1967,7 @@ bool PythonQtShell_QSqlQueryModel::canFetchMore(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2000,7 +2000,7 @@ void PythonQtShell_QSqlQueryModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2022,7 +2022,7 @@ void PythonQtShell_QSqlQueryModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2044,7 +2044,7 @@ int PythonQtShell_QSqlQueryModel::columnCount(const QModelIndex& parent0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2077,7 +2077,7 @@ void PythonQtShell_QSqlQueryModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2099,7 +2099,7 @@ QVariant PythonQtShell_QSqlQueryModel::data(const QModelIndex& item0, int rol if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2132,7 +2132,7 @@ bool PythonQtShell_QSqlQueryModel::dropMimeData(const QMimeData* data0, Qt::Dr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2165,7 +2165,7 @@ bool PythonQtShell_QSqlQueryModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2198,7 +2198,7 @@ bool PythonQtShell_QSqlQueryModel::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2231,7 +2231,7 @@ void PythonQtShell_QSqlQueryModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2253,7 +2253,7 @@ Qt::ItemFlags PythonQtShell_QSqlQueryModel::flags(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2286,7 +2286,7 @@ QVariant PythonQtShell_QSqlQueryModel::headerData(int section0, Qt::Orientatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2319,7 +2319,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::index(int row0, int column1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2352,7 +2352,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::indexInQuery(const QModelIndex& item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2385,7 +2385,7 @@ bool PythonQtShell_QSqlQueryModel::insertColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2418,7 +2418,7 @@ bool PythonQtShell_QSqlQueryModel::insertRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2451,7 +2451,7 @@ QMap PythonQtShell_QSqlQueryModel::itemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2484,7 +2484,7 @@ QList PythonQtShell_QSqlQueryModel::match(const QModelIndex& sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2517,7 +2517,7 @@ QMimeData* PythonQtShell_QSqlQueryModel::mimeData(const QList& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2550,7 +2550,7 @@ QStringList PythonQtShell_QSqlQueryModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2583,7 +2583,7 @@ bool PythonQtShell_QSqlQueryModel::moveColumns(const QModelIndex& sourceParent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2616,7 +2616,7 @@ bool PythonQtShell_QSqlQueryModel::moveRows(const QModelIndex& sourceParent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2649,7 +2649,7 @@ void PythonQtShell_QSqlQueryModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2671,7 +2671,7 @@ bool PythonQtShell_QSqlQueryModel::removeColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2704,7 +2704,7 @@ bool PythonQtShell_QSqlQueryModel::removeRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2737,7 +2737,7 @@ void PythonQtShell_QSqlQueryModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2759,7 +2759,7 @@ QHash PythonQtShell_QSqlQueryModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2792,7 +2792,7 @@ int PythonQtShell_QSqlQueryModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2825,7 +2825,7 @@ bool PythonQtShell_QSqlQueryModel::setData(const QModelIndex& index0, const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2858,7 +2858,7 @@ bool PythonQtShell_QSqlQueryModel::setHeaderData(int section0, Qt::Orientation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2891,7 +2891,7 @@ bool PythonQtShell_QSqlQueryModel::setItemData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2924,7 +2924,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::sibling(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2957,7 +2957,7 @@ void PythonQtShell_QSqlQueryModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2979,7 +2979,7 @@ QSize PythonQtShell_QSqlQueryModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -3012,7 +3012,7 @@ bool PythonQtShell_QSqlQueryModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3045,7 +3045,7 @@ Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3078,7 +3078,7 @@ Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3111,7 +3111,7 @@ void PythonQtShell_QSqlQueryModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3448,7 +3448,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::buddy(const QModelIndex& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3481,7 +3481,7 @@ bool PythonQtShell_QSqlRelationalTableModel::canDropMimeData(const QMimeData* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3514,7 +3514,7 @@ bool PythonQtShell_QSqlRelationalTableModel::canFetchMore(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3547,7 +3547,7 @@ void PythonQtShell_QSqlRelationalTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3569,7 +3569,7 @@ void PythonQtShell_QSqlRelationalTableModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3591,7 +3591,7 @@ int PythonQtShell_QSqlRelationalTableModel::columnCount(const QModelIndex& par if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3624,7 +3624,7 @@ void PythonQtShell_QSqlRelationalTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3646,7 +3646,7 @@ QVariant PythonQtShell_QSqlRelationalTableModel::data(const QModelIndex& item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3679,7 +3679,7 @@ bool PythonQtShell_QSqlRelationalTableModel::deleteRowFromTable(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3712,7 +3712,7 @@ bool PythonQtShell_QSqlRelationalTableModel::dropMimeData(const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3745,7 +3745,7 @@ bool PythonQtShell_QSqlRelationalTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3778,7 +3778,7 @@ bool PythonQtShell_QSqlRelationalTableModel::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3811,7 +3811,7 @@ void PythonQtShell_QSqlRelationalTableModel::fetchMore(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3833,7 +3833,7 @@ Qt::ItemFlags PythonQtShell_QSqlRelationalTableModel::flags(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3866,7 +3866,7 @@ QVariant PythonQtShell_QSqlRelationalTableModel::headerData(int section0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3899,7 +3899,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::index(int row0, int colum if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3932,7 +3932,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::indexInQuery(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3965,7 +3965,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertColumns(int column0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3998,7 +3998,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertRowIntoTable(const QSqlRecor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -4031,7 +4031,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertRows(int row0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4064,7 +4064,7 @@ QMap PythonQtShell_QSqlRelationalTableModel::itemData(const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -4097,7 +4097,7 @@ QList PythonQtShell_QSqlRelationalTableModel::match(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -4130,7 +4130,7 @@ QMimeData* PythonQtShell_QSqlRelationalTableModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -4163,7 +4163,7 @@ QStringList PythonQtShell_QSqlRelationalTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4196,7 +4196,7 @@ bool PythonQtShell_QSqlRelationalTableModel::moveColumns(const QModelIndex& so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4229,7 +4229,7 @@ bool PythonQtShell_QSqlRelationalTableModel::moveRows(const QModelIndex& sourc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4262,7 +4262,7 @@ QString PythonQtShell_QSqlRelationalTableModel::orderByClause() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4295,7 +4295,7 @@ void PythonQtShell_QSqlRelationalTableModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4317,7 +4317,7 @@ QSqlTableModel* PythonQtShell_QSqlRelationalTableModel::relationModel(int colu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("relationModel"); + static PyObject* name = PyUnicode_FromString("relationModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlTableModel*" , "int"}; @@ -4350,7 +4350,7 @@ bool PythonQtShell_QSqlRelationalTableModel::removeColumns(int column0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4383,7 +4383,7 @@ bool PythonQtShell_QSqlRelationalTableModel::removeRows(int row0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4416,7 +4416,7 @@ void PythonQtShell_QSqlRelationalTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4438,7 +4438,7 @@ void PythonQtShell_QSqlRelationalTableModel::revertRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4460,7 +4460,7 @@ QHash PythonQtShell_QSqlRelationalTableModel::roleNames() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4493,7 +4493,7 @@ int PythonQtShell_QSqlRelationalTableModel::rowCount(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4526,7 +4526,7 @@ bool PythonQtShell_QSqlRelationalTableModel::select() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4559,7 +4559,7 @@ bool PythonQtShell_QSqlRelationalTableModel::selectRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4592,7 +4592,7 @@ QString PythonQtShell_QSqlRelationalTableModel::selectStatement() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4625,7 +4625,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setData(const QModelIndex& item0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4658,7 +4658,7 @@ void PythonQtShell_QSqlRelationalTableModel::setEditStrategy(QSqlTableModel::Edi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -4680,7 +4680,7 @@ void PythonQtShell_QSqlRelationalTableModel::setFilter(const QString& filter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4702,7 +4702,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setHeaderData(int section0, Qt::O if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4735,7 +4735,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setItemData(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4768,7 +4768,7 @@ void PythonQtShell_QSqlRelationalTableModel::setRelation(int column0, const QSq if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRelation"); + static PyObject* name = PyUnicode_FromString("setRelation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QSqlRelation&"}; @@ -4790,7 +4790,7 @@ void PythonQtShell_QSqlRelationalTableModel::setSort(int column0, Qt::SortOrder if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4812,7 +4812,7 @@ void PythonQtShell_QSqlRelationalTableModel::setTable(const QString& tableName0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4834,7 +4834,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::sibling(int row0, int col if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4867,7 +4867,7 @@ void PythonQtShell_QSqlRelationalTableModel::sort(int column0, Qt::SortOrder o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4889,7 +4889,7 @@ QSize PythonQtShell_QSqlRelationalTableModel::span(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4922,7 +4922,7 @@ bool PythonQtShell_QSqlRelationalTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4955,7 +4955,7 @@ Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDragActions() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4988,7 +4988,7 @@ Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDropActions() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -5021,7 +5021,7 @@ void PythonQtShell_QSqlRelationalTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5043,7 +5043,7 @@ bool PythonQtShell_QSqlRelationalTableModel::updateRowInTable(int row0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; @@ -5119,7 +5119,7 @@ void PythonQtShell_QSqlResult::bindValue(const QString& placeholder0, const QVa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&" , "QSql::ParamType"}; @@ -5141,7 +5141,7 @@ void PythonQtShell_QSqlResult::bindValue(int pos0, const QVariant& val1, QSql: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&" , "QSql::ParamType"}; @@ -5163,7 +5163,7 @@ QVariant PythonQtShell_QSqlResult::data(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -5196,7 +5196,7 @@ void PythonQtShell_QSqlResult::detachFromResultSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("detachFromResultSet"); + static PyObject* name = PyUnicode_FromString("detachFromResultSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5218,7 +5218,7 @@ bool PythonQtShell_QSqlResult::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5251,7 +5251,7 @@ bool PythonQtShell_QSqlResult::execBatch(bool arrayBind0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("execBatch"); + static PyObject* name = PyUnicode_FromString("execBatch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5284,7 +5284,7 @@ bool PythonQtShell_QSqlResult::fetch(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetch"); + static PyObject* name = PyUnicode_FromString("fetch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5317,7 +5317,7 @@ bool PythonQtShell_QSqlResult::fetchFirst() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchFirst"); + static PyObject* name = PyUnicode_FromString("fetchFirst"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5350,7 +5350,7 @@ bool PythonQtShell_QSqlResult::fetchLast() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchLast"); + static PyObject* name = PyUnicode_FromString("fetchLast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5383,7 +5383,7 @@ bool PythonQtShell_QSqlResult::fetchNext() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchNext"); + static PyObject* name = PyUnicode_FromString("fetchNext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5416,7 +5416,7 @@ bool PythonQtShell_QSqlResult::fetchPrevious() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchPrevious"); + static PyObject* name = PyUnicode_FromString("fetchPrevious"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5449,7 +5449,7 @@ QVariant PythonQtShell_QSqlResult::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5482,7 +5482,7 @@ bool PythonQtShell_QSqlResult::isNull(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isNull"); + static PyObject* name = PyUnicode_FromString("isNull"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5515,7 +5515,7 @@ QVariant PythonQtShell_QSqlResult::lastInsertId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lastInsertId"); + static PyObject* name = PyUnicode_FromString("lastInsertId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5548,7 +5548,7 @@ bool PythonQtShell_QSqlResult::nextResult() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextResult"); + static PyObject* name = PyUnicode_FromString("nextResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5581,7 +5581,7 @@ int PythonQtShell_QSqlResult::numRowsAffected() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("numRowsAffected"); + static PyObject* name = PyUnicode_FromString("numRowsAffected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5614,7 +5614,7 @@ bool PythonQtShell_QSqlResult::prepare(const QString& query0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5647,7 +5647,7 @@ QSqlRecord PythonQtShell_QSqlResult::record() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord"}; @@ -5680,7 +5680,7 @@ bool PythonQtShell_QSqlResult::reset(const QString& sqlquery0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5713,7 +5713,7 @@ bool PythonQtShell_QSqlResult::savePrepare(const QString& sqlquery0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("savePrepare"); + static PyObject* name = PyUnicode_FromString("savePrepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5746,7 +5746,7 @@ void PythonQtShell_QSqlResult::setActive(bool a0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5768,7 +5768,7 @@ void PythonQtShell_QSqlResult::setAt(int at0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAt"); + static PyObject* name = PyUnicode_FromString("setAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5790,7 +5790,7 @@ void PythonQtShell_QSqlResult::setForwardOnly(bool forward0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setForwardOnly"); + static PyObject* name = PyUnicode_FromString("setForwardOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5812,7 +5812,7 @@ void PythonQtShell_QSqlResult::setLastError(const QSqlError& e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -5834,7 +5834,7 @@ void PythonQtShell_QSqlResult::setNumericalPrecisionPolicy(QSql::NumericalPrecis if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNumericalPrecisionPolicy"); + static PyObject* name = PyUnicode_FromString("setNumericalPrecisionPolicy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSql::NumericalPrecisionPolicy"}; @@ -5856,7 +5856,7 @@ void PythonQtShell_QSqlResult::setQuery(const QString& query0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setQuery"); + static PyObject* name = PyUnicode_FromString("setQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5878,7 +5878,7 @@ void PythonQtShell_QSqlResult::setSelect(bool s0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelect"); + static PyObject* name = PyUnicode_FromString("setSelect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5900,7 +5900,7 @@ int PythonQtShell_QSqlResult::size() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6193,7 +6193,7 @@ QModelIndex PythonQtShell_QSqlTableModel::buddy(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6226,7 +6226,7 @@ bool PythonQtShell_QSqlTableModel::canDropMimeData(const QMimeData* data0, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6259,7 +6259,7 @@ bool PythonQtShell_QSqlTableModel::canFetchMore(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6292,7 +6292,7 @@ void PythonQtShell_QSqlTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6314,7 +6314,7 @@ void PythonQtShell_QSqlTableModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6336,7 +6336,7 @@ int PythonQtShell_QSqlTableModel::columnCount(const QModelIndex& parent0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6369,7 +6369,7 @@ void PythonQtShell_QSqlTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6391,7 +6391,7 @@ QVariant PythonQtShell_QSqlTableModel::data(const QModelIndex& idx0, int role if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -6424,7 +6424,7 @@ bool PythonQtShell_QSqlTableModel::deleteRowFromTable(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6457,7 +6457,7 @@ bool PythonQtShell_QSqlTableModel::dropMimeData(const QMimeData* data0, Qt::Dr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6490,7 +6490,7 @@ bool PythonQtShell_QSqlTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6523,7 +6523,7 @@ bool PythonQtShell_QSqlTableModel::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6556,7 +6556,7 @@ void PythonQtShell_QSqlTableModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6578,7 +6578,7 @@ Qt::ItemFlags PythonQtShell_QSqlTableModel::flags(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6611,7 +6611,7 @@ QVariant PythonQtShell_QSqlTableModel::headerData(int section0, Qt::Orientatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6644,7 +6644,7 @@ QModelIndex PythonQtShell_QSqlTableModel::index(int row0, int column1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6677,7 +6677,7 @@ QModelIndex PythonQtShell_QSqlTableModel::indexInQuery(const QModelIndex& item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6710,7 +6710,7 @@ bool PythonQtShell_QSqlTableModel::insertColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6743,7 +6743,7 @@ bool PythonQtShell_QSqlTableModel::insertRowIntoTable(const QSqlRecord& values if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -6776,7 +6776,7 @@ bool PythonQtShell_QSqlTableModel::insertRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6809,7 +6809,7 @@ QMap PythonQtShell_QSqlTableModel::itemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6842,7 +6842,7 @@ QList PythonQtShell_QSqlTableModel::match(const QModelIndex& sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6875,7 +6875,7 @@ QMimeData* PythonQtShell_QSqlTableModel::mimeData(const QList& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6908,7 +6908,7 @@ QStringList PythonQtShell_QSqlTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6941,7 +6941,7 @@ bool PythonQtShell_QSqlTableModel::moveColumns(const QModelIndex& sourceParent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6974,7 +6974,7 @@ bool PythonQtShell_QSqlTableModel::moveRows(const QModelIndex& sourceParent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7007,7 +7007,7 @@ QString PythonQtShell_QSqlTableModel::orderByClause() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7040,7 +7040,7 @@ void PythonQtShell_QSqlTableModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7062,7 +7062,7 @@ bool PythonQtShell_QSqlTableModel::removeColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7095,7 +7095,7 @@ bool PythonQtShell_QSqlTableModel::removeRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7128,7 +7128,7 @@ void PythonQtShell_QSqlTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7150,7 +7150,7 @@ void PythonQtShell_QSqlTableModel::revertRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7172,7 +7172,7 @@ QHash PythonQtShell_QSqlTableModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7205,7 +7205,7 @@ int PythonQtShell_QSqlTableModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7238,7 +7238,7 @@ bool PythonQtShell_QSqlTableModel::select() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7271,7 +7271,7 @@ bool PythonQtShell_QSqlTableModel::selectRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7304,7 +7304,7 @@ QString PythonQtShell_QSqlTableModel::selectStatement() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7337,7 +7337,7 @@ bool PythonQtShell_QSqlTableModel::setData(const QModelIndex& index0, const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7370,7 +7370,7 @@ void PythonQtShell_QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -7392,7 +7392,7 @@ void PythonQtShell_QSqlTableModel::setFilter(const QString& filter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7414,7 +7414,7 @@ bool PythonQtShell_QSqlTableModel::setHeaderData(int section0, Qt::Orientation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7447,7 +7447,7 @@ bool PythonQtShell_QSqlTableModel::setItemData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -7480,7 +7480,7 @@ void PythonQtShell_QSqlTableModel::setSort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7502,7 +7502,7 @@ void PythonQtShell_QSqlTableModel::setTable(const QString& tableName0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7524,7 +7524,7 @@ QModelIndex PythonQtShell_QSqlTableModel::sibling(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7557,7 +7557,7 @@ void PythonQtShell_QSqlTableModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7579,7 +7579,7 @@ QSize PythonQtShell_QSqlTableModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7612,7 +7612,7 @@ bool PythonQtShell_QSqlTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7645,7 +7645,7 @@ Qt::DropActions PythonQtShell_QSqlTableModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7678,7 +7678,7 @@ Qt::DropActions PythonQtShell_QSqlTableModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7711,7 +7711,7 @@ void PythonQtShell_QSqlTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7733,7 +7733,7 @@ bool PythonQtShell_QSqlTableModel::updateRowInTable(int row0, const QSqlRecord if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; diff --git a/generated_cpp_515/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp b/generated_cpp_515/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp index adb0bf30e..cf0ccd281 100644 --- a/generated_cpp_515/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +++ b/generated_cpp_515/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp @@ -67,7 +67,7 @@ void PythonQtShell_QGraphicsSvgItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -89,7 +89,7 @@ QRectF PythonQtShell_QGraphicsSvgItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -122,7 +122,7 @@ void PythonQtShell_QGraphicsSvgItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -144,7 +144,7 @@ bool PythonQtShell_QGraphicsSvgItem::collidesWithItem(const QGraphicsItem* oth if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -177,7 +177,7 @@ bool PythonQtShell_QGraphicsSvgItem::collidesWithPath(const QPainterPath& path if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -210,7 +210,7 @@ bool PythonQtShell_QGraphicsSvgItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -243,7 +243,7 @@ void PythonQtShell_QGraphicsSvgItem::contextMenuEvent(QGraphicsSceneContextMenuE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -265,7 +265,7 @@ void PythonQtShell_QGraphicsSvgItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -287,7 +287,7 @@ void PythonQtShell_QGraphicsSvgItem::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -309,7 +309,7 @@ void PythonQtShell_QGraphicsSvgItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -331,7 +331,7 @@ void PythonQtShell_QGraphicsSvgItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -353,7 +353,7 @@ void PythonQtShell_QGraphicsSvgItem::dropEvent(QGraphicsSceneDragDropEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -375,7 +375,7 @@ bool PythonQtShell_QGraphicsSvgItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -408,7 +408,7 @@ bool PythonQtShell_QGraphicsSvgItem::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -441,7 +441,7 @@ QVariant PythonQtShell_QGraphicsSvgItem::extension(const QVariant& variant0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -474,7 +474,7 @@ void PythonQtShell_QGraphicsSvgItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -496,7 +496,7 @@ void PythonQtShell_QGraphicsSvgItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -518,7 +518,7 @@ void PythonQtShell_QGraphicsSvgItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -540,7 +540,7 @@ void PythonQtShell_QGraphicsSvgItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -562,7 +562,7 @@ void PythonQtShell_QGraphicsSvgItem::hoverMoveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -584,7 +584,7 @@ void PythonQtShell_QGraphicsSvgItem::inputMethodEvent(QInputMethodEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -606,7 +606,7 @@ QVariant PythonQtShell_QGraphicsSvgItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -639,7 +639,7 @@ bool PythonQtShell_QGraphicsSvgItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -672,7 +672,7 @@ QVariant PythonQtShell_QGraphicsSvgItem::itemChange(QGraphicsItem::GraphicsItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -708,7 +708,7 @@ void PythonQtShell_QGraphicsSvgItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -730,7 +730,7 @@ void PythonQtShell_QGraphicsSvgItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -752,7 +752,7 @@ void PythonQtShell_QGraphicsSvgItem::mouseDoubleClickEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -774,7 +774,7 @@ void PythonQtShell_QGraphicsSvgItem::mouseMoveEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -796,7 +796,7 @@ void PythonQtShell_QGraphicsSvgItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -818,7 +818,7 @@ void PythonQtShell_QGraphicsSvgItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -840,7 +840,7 @@ QPainterPath PythonQtShell_QGraphicsSvgItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -873,7 +873,7 @@ void PythonQtShell_QGraphicsSvgItem::paint(QPainter* painter0, const QStyleOpti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -895,7 +895,7 @@ bool PythonQtShell_QGraphicsSvgItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -928,7 +928,7 @@ bool PythonQtShell_QGraphicsSvgItem::sceneEventFilter(QGraphicsItem* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -961,7 +961,7 @@ void PythonQtShell_QGraphicsSvgItem::setExtension(QGraphicsItem::Extension exte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -983,7 +983,7 @@ QPainterPath PythonQtShell_QGraphicsSvgItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1016,7 +1016,7 @@ bool PythonQtShell_QGraphicsSvgItem::supportsExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -1049,7 +1049,7 @@ void PythonQtShell_QGraphicsSvgItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1071,7 +1071,7 @@ int PythonQtShell_QGraphicsSvgItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1104,7 +1104,7 @@ void PythonQtShell_QGraphicsSvgItem::wheelEvent(QGraphicsSceneWheelEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1193,7 +1193,7 @@ int PythonQtShell_QSvgGenerator::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1226,7 +1226,7 @@ void PythonQtShell_QSvgGenerator::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1248,7 +1248,7 @@ int PythonQtShell_QSvgGenerator::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1281,7 +1281,7 @@ QPaintEngine* PythonQtShell_QSvgGenerator::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1314,7 +1314,7 @@ QPaintDevice* PythonQtShell_QSvgGenerator::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1347,7 +1347,7 @@ QPainter* PythonQtShell_QSvgGenerator::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1470,7 +1470,7 @@ void PythonQtShell_QSvgRenderer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1492,7 +1492,7 @@ void PythonQtShell_QSvgRenderer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1514,7 +1514,7 @@ bool PythonQtShell_QSvgRenderer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1547,7 +1547,7 @@ bool PythonQtShell_QSvgRenderer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1580,7 +1580,7 @@ void PythonQtShell_QSvgRenderer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1727,7 +1727,7 @@ void PythonQtShell_QSvgWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1749,7 +1749,7 @@ void PythonQtShell_QSvgWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1771,7 +1771,7 @@ void PythonQtShell_QSvgWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1793,7 +1793,7 @@ void PythonQtShell_QSvgWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1815,7 +1815,7 @@ void PythonQtShell_QSvgWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1837,7 +1837,7 @@ void PythonQtShell_QSvgWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1859,7 +1859,7 @@ int PythonQtShell_QSvgWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1892,7 +1892,7 @@ void PythonQtShell_QSvgWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1914,7 +1914,7 @@ void PythonQtShell_QSvgWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1936,7 +1936,7 @@ void PythonQtShell_QSvgWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1958,7 +1958,7 @@ void PythonQtShell_QSvgWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1980,7 +1980,7 @@ void PythonQtShell_QSvgWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2002,7 +2002,7 @@ bool PythonQtShell_QSvgWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2035,7 +2035,7 @@ bool PythonQtShell_QSvgWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2068,7 +2068,7 @@ void PythonQtShell_QSvgWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2090,7 +2090,7 @@ bool PythonQtShell_QSvgWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2123,7 +2123,7 @@ void PythonQtShell_QSvgWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2145,7 +2145,7 @@ bool PythonQtShell_QSvgWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2178,7 +2178,7 @@ int PythonQtShell_QSvgWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2211,7 +2211,7 @@ void PythonQtShell_QSvgWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2233,7 +2233,7 @@ void PythonQtShell_QSvgWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2255,7 +2255,7 @@ void PythonQtShell_QSvgWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2277,7 +2277,7 @@ QVariant PythonQtShell_QSvgWidget::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2310,7 +2310,7 @@ void PythonQtShell_QSvgWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2332,7 +2332,7 @@ void PythonQtShell_QSvgWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2354,7 +2354,7 @@ void PythonQtShell_QSvgWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2376,7 +2376,7 @@ int PythonQtShell_QSvgWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2409,7 +2409,7 @@ QSize PythonQtShell_QSvgWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2442,7 +2442,7 @@ void PythonQtShell_QSvgWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2464,7 +2464,7 @@ void PythonQtShell_QSvgWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2486,7 +2486,7 @@ void PythonQtShell_QSvgWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2508,7 +2508,7 @@ void PythonQtShell_QSvgWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2530,7 +2530,7 @@ void PythonQtShell_QSvgWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2552,7 +2552,7 @@ bool PythonQtShell_QSvgWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2585,7 +2585,7 @@ QPaintEngine* PythonQtShell_QSvgWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2618,7 +2618,7 @@ void PythonQtShell_QSvgWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2640,7 +2640,7 @@ QPaintDevice* PythonQtShell_QSvgWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2673,7 +2673,7 @@ void PythonQtShell_QSvgWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2695,7 +2695,7 @@ void PythonQtShell_QSvgWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2717,7 +2717,7 @@ QPainter* PythonQtShell_QSvgWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2750,7 +2750,7 @@ void PythonQtShell_QSvgWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2772,7 +2772,7 @@ QSize PythonQtShell_QSvgWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2805,7 +2805,7 @@ void PythonQtShell_QSvgWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2827,7 +2827,7 @@ void PythonQtShell_QSvgWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2849,7 +2849,7 @@ void PythonQtShell_QSvgWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp b/generated_cpp_515/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp index 491f17bf2..30d5f8fcd 100644 --- a/generated_cpp_515/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +++ b/generated_cpp_515/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp @@ -26,7 +26,7 @@ void PythonQtShell_QUiLoader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -48,7 +48,7 @@ QAction* PythonQtShell_QUiLoader::createAction(QObject* parent0, const QString if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createAction"); + static PyObject* name = PyUnicode_FromString("createAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAction*" , "QObject*" , "const QString&"}; @@ -81,7 +81,7 @@ QActionGroup* PythonQtShell_QUiLoader::createActionGroup(QObject* parent0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createActionGroup"); + static PyObject* name = PyUnicode_FromString("createActionGroup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QActionGroup*" , "QObject*" , "const QString&"}; @@ -114,7 +114,7 @@ QLayout* PythonQtShell_QUiLoader::createLayout(const QString& className0, QObj if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createLayout"); + static PyObject* name = PyUnicode_FromString("createLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*" , "const QString&" , "QObject*" , "const QString&"}; @@ -147,7 +147,7 @@ QWidget* PythonQtShell_QUiLoader::createWidget(const QString& className0, QWid if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "const QString&" , "QWidget*" , "const QString&"}; @@ -180,7 +180,7 @@ void PythonQtShell_QUiLoader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -202,7 +202,7 @@ bool PythonQtShell_QUiLoader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -235,7 +235,7 @@ bool PythonQtShell_QUiLoader::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -268,7 +268,7 @@ void PythonQtShell_QUiLoader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_webenginewidgets/com_trolltech_qt_webenginewidgets0.cpp b/generated_cpp_515/com_trolltech_qt_webenginewidgets/com_trolltech_qt_webenginewidgets0.cpp index 316c19787..1e137dc90 100644 --- a/generated_cpp_515/com_trolltech_qt_webenginewidgets/com_trolltech_qt_webenginewidgets0.cpp +++ b/generated_cpp_515/com_trolltech_qt_webenginewidgets/com_trolltech_qt_webenginewidgets0.cpp @@ -88,7 +88,7 @@ void PythonQtShell_QWebChannel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -110,7 +110,7 @@ void PythonQtShell_QWebChannel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -132,7 +132,7 @@ bool PythonQtShell_QWebChannel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -165,7 +165,7 @@ bool PythonQtShell_QWebChannel::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -198,7 +198,7 @@ void PythonQtShell_QWebChannel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -273,7 +273,7 @@ void PythonQtShell_QWebChannelAbstractTransport::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -295,7 +295,7 @@ void PythonQtShell_QWebChannelAbstractTransport::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -317,7 +317,7 @@ bool PythonQtShell_QWebChannelAbstractTransport::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -350,7 +350,7 @@ bool PythonQtShell_QWebChannelAbstractTransport::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -383,7 +383,7 @@ void PythonQtShell_QWebChannelAbstractTransport::sendMessage(const QJsonObject& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sendMessage"); + static PyObject* name = PyUnicode_FromString("sendMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QJsonObject&"}; @@ -405,7 +405,7 @@ void PythonQtShell_QWebChannelAbstractTransport::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1029,7 +1029,7 @@ bool PythonQtShell_QWebEnginePage::acceptNavigationRequest(const QUrl& url0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("acceptNavigationRequest"); + static PyObject* name = PyUnicode_FromString("acceptNavigationRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&" , "QWebEnginePage::NavigationType" , "bool"}; @@ -1062,7 +1062,7 @@ bool PythonQtShell_QWebEnginePage::certificateError(const QWebEngineCertificate if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("certificateError"); + static PyObject* name = PyUnicode_FromString("certificateError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QWebEngineCertificateError&"}; @@ -1095,7 +1095,7 @@ void PythonQtShell_QWebEnginePage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1117,7 +1117,7 @@ QStringList PythonQtShell_QWebEnginePage::chooseFiles(QWebEnginePage::FileSelec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("chooseFiles"); + static PyObject* name = PyUnicode_FromString("chooseFiles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QWebEnginePage::FileSelectionMode" , "const QStringList&" , "const QStringList&"}; @@ -1150,7 +1150,7 @@ QWebEnginePage* PythonQtShell_QWebEnginePage::createWindow(QWebEnginePage::WebW if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebEnginePage*" , "QWebEnginePage::WebWindowType"}; @@ -1183,7 +1183,7 @@ void PythonQtShell_QWebEnginePage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1205,7 +1205,7 @@ bool PythonQtShell_QWebEnginePage::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1238,7 +1238,7 @@ bool PythonQtShell_QWebEnginePage::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1271,7 +1271,7 @@ void PythonQtShell_QWebEnginePage::javaScriptAlert(const QUrl& securityOrigin0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptAlert"); + static PyObject* name = PyUnicode_FromString("javaScriptAlert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&" , "const QString&"}; @@ -1293,7 +1293,7 @@ bool PythonQtShell_QWebEnginePage::javaScriptConfirm(const QUrl& securityOrigi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptConfirm"); + static PyObject* name = PyUnicode_FromString("javaScriptConfirm"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&" , "const QString&"}; @@ -1326,7 +1326,7 @@ void PythonQtShell_QWebEnginePage::javaScriptConsoleMessage(QWebEnginePage::Java if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptConsoleMessage"); + static PyObject* name = PyUnicode_FromString("javaScriptConsoleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebEnginePage::JavaScriptConsoleMessageLevel" , "const QString&" , "int" , "const QString&"}; @@ -1348,7 +1348,7 @@ bool PythonQtShell_QWebEnginePage::javaScriptPrompt(const QUrl& securityOrigin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptPrompt"); + static PyObject* name = PyUnicode_FromString("javaScriptPrompt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&" , "const QString&" , "const QString&" , "QString*"}; @@ -1381,7 +1381,7 @@ void PythonQtShell_QWebEnginePage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1403,7 +1403,7 @@ void PythonQtShell_QWebEnginePage::triggerAction(QWebEnginePage::WebAction acti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("triggerAction"); + static PyObject* name = PyUnicode_FromString("triggerAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebEnginePage::WebAction" , "bool"}; @@ -1747,7 +1747,7 @@ void PythonQtShell_QWebEngineProfile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1769,7 +1769,7 @@ void PythonQtShell_QWebEngineProfile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1791,7 +1791,7 @@ bool PythonQtShell_QWebEngineProfile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1824,7 +1824,7 @@ bool PythonQtShell_QWebEngineProfile::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1857,7 +1857,7 @@ void PythonQtShell_QWebEngineProfile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2461,7 +2461,7 @@ void PythonQtShell_QWebEngineUrlRequestInterceptor::childEvent(QChildEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2483,7 +2483,7 @@ void PythonQtShell_QWebEngineUrlRequestInterceptor::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2505,7 +2505,7 @@ bool PythonQtShell_QWebEngineUrlRequestInterceptor::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2538,7 +2538,7 @@ bool PythonQtShell_QWebEngineUrlRequestInterceptor::eventFilter(QObject* watch if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2571,7 +2571,7 @@ void PythonQtShell_QWebEngineUrlRequestInterceptor::interceptRequest(QWebEngineU if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interceptRequest"); + static PyObject* name = PyUnicode_FromString("interceptRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebEngineUrlRequestInfo&"}; @@ -2593,7 +2593,7 @@ void PythonQtShell_QWebEngineUrlRequestInterceptor::timerEvent(QTimerEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2759,7 +2759,7 @@ void PythonQtShell_QWebEngineUrlSchemeHandler::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2781,7 +2781,7 @@ void PythonQtShell_QWebEngineUrlSchemeHandler::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2803,7 +2803,7 @@ bool PythonQtShell_QWebEngineUrlSchemeHandler::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2836,7 +2836,7 @@ bool PythonQtShell_QWebEngineUrlSchemeHandler::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2869,7 +2869,7 @@ void PythonQtShell_QWebEngineUrlSchemeHandler::requestStarted(QWebEngineUrlReque if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestStarted"); + static PyObject* name = PyUnicode_FromString("requestStarted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebEngineUrlRequestJob*"}; @@ -2891,7 +2891,7 @@ void PythonQtShell_QWebEngineUrlSchemeHandler::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2941,7 +2941,7 @@ void PythonQtShell_QWebEngineView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2963,7 +2963,7 @@ void PythonQtShell_QWebEngineView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2985,7 +2985,7 @@ void PythonQtShell_QWebEngineView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3007,7 +3007,7 @@ void PythonQtShell_QWebEngineView::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3029,7 +3029,7 @@ void PythonQtShell_QWebEngineView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3051,7 +3051,7 @@ QWebEngineView* PythonQtShell_QWebEngineView::createWindow(QWebEnginePage::WebW if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebEngineView*" , "QWebEnginePage::WebWindowType"}; @@ -3084,7 +3084,7 @@ void PythonQtShell_QWebEngineView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3106,7 +3106,7 @@ int PythonQtShell_QWebEngineView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3139,7 +3139,7 @@ void PythonQtShell_QWebEngineView::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3161,7 +3161,7 @@ void PythonQtShell_QWebEngineView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3183,7 +3183,7 @@ void PythonQtShell_QWebEngineView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3205,7 +3205,7 @@ void PythonQtShell_QWebEngineView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3227,7 +3227,7 @@ void PythonQtShell_QWebEngineView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3249,7 +3249,7 @@ bool PythonQtShell_QWebEngineView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3282,7 +3282,7 @@ bool PythonQtShell_QWebEngineView::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3315,7 +3315,7 @@ void PythonQtShell_QWebEngineView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3337,7 +3337,7 @@ bool PythonQtShell_QWebEngineView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3370,7 +3370,7 @@ void PythonQtShell_QWebEngineView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3392,7 +3392,7 @@ bool PythonQtShell_QWebEngineView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3425,7 +3425,7 @@ int PythonQtShell_QWebEngineView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3458,7 +3458,7 @@ void PythonQtShell_QWebEngineView::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3480,7 +3480,7 @@ void PythonQtShell_QWebEngineView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3502,7 +3502,7 @@ void PythonQtShell_QWebEngineView::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3524,7 +3524,7 @@ QVariant PythonQtShell_QWebEngineView::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3557,7 +3557,7 @@ void PythonQtShell_QWebEngineView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3579,7 +3579,7 @@ void PythonQtShell_QWebEngineView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3601,7 +3601,7 @@ void PythonQtShell_QWebEngineView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3623,7 +3623,7 @@ int PythonQtShell_QWebEngineView::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3656,7 +3656,7 @@ QSize PythonQtShell_QWebEngineView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3689,7 +3689,7 @@ void PythonQtShell_QWebEngineView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3711,7 +3711,7 @@ void PythonQtShell_QWebEngineView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3733,7 +3733,7 @@ void PythonQtShell_QWebEngineView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3755,7 +3755,7 @@ void PythonQtShell_QWebEngineView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3777,7 +3777,7 @@ void PythonQtShell_QWebEngineView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3799,7 +3799,7 @@ bool PythonQtShell_QWebEngineView::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3832,7 +3832,7 @@ QPaintEngine* PythonQtShell_QWebEngineView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3865,7 +3865,7 @@ void PythonQtShell_QWebEngineView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3887,7 +3887,7 @@ QPaintDevice* PythonQtShell_QWebEngineView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3920,7 +3920,7 @@ void PythonQtShell_QWebEngineView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3942,7 +3942,7 @@ void PythonQtShell_QWebEngineView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3964,7 +3964,7 @@ QPainter* PythonQtShell_QWebEngineView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3997,7 +3997,7 @@ void PythonQtShell_QWebEngineView::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4019,7 +4019,7 @@ QSize PythonQtShell_QWebEngineView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4052,7 +4052,7 @@ void PythonQtShell_QWebEngineView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4074,7 +4074,7 @@ void PythonQtShell_QWebEngineView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4096,7 +4096,7 @@ void PythonQtShell_QWebEngineView::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp b/generated_cpp_515/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp index b5f251d44..95c7b74ef 100644 --- a/generated_cpp_515/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +++ b/generated_cpp_515/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp @@ -80,7 +80,7 @@ void PythonQtShell_QGraphicsWebView::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -102,7 +102,7 @@ QRectF PythonQtShell_QGraphicsWebView::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -135,7 +135,7 @@ void PythonQtShell_QGraphicsWebView::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -157,7 +157,7 @@ void PythonQtShell_QGraphicsWebView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -179,7 +179,7 @@ void PythonQtShell_QGraphicsWebView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -201,7 +201,7 @@ bool PythonQtShell_QGraphicsWebView::collidesWithItem(const QGraphicsItem* oth if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -234,7 +234,7 @@ bool PythonQtShell_QGraphicsWebView::collidesWithPath(const QPainterPath& path if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -267,7 +267,7 @@ bool PythonQtShell_QGraphicsWebView::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -300,7 +300,7 @@ void PythonQtShell_QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -322,7 +322,7 @@ void PythonQtShell_QGraphicsWebView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -344,7 +344,7 @@ void PythonQtShell_QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -366,7 +366,7 @@ void PythonQtShell_QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -388,7 +388,7 @@ void PythonQtShell_QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -410,7 +410,7 @@ void PythonQtShell_QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -432,7 +432,7 @@ bool PythonQtShell_QGraphicsWebView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -465,7 +465,7 @@ bool PythonQtShell_QGraphicsWebView::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -498,7 +498,7 @@ QVariant PythonQtShell_QGraphicsWebView::extension(const QVariant& variant0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -531,7 +531,7 @@ void PythonQtShell_QGraphicsWebView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -553,7 +553,7 @@ bool PythonQtShell_QGraphicsWebView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -586,7 +586,7 @@ void PythonQtShell_QGraphicsWebView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -608,7 +608,7 @@ void PythonQtShell_QGraphicsWebView::getContentsMargins(qreal* left0, qreal* t if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -630,7 +630,7 @@ void PythonQtShell_QGraphicsWebView::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -652,7 +652,7 @@ void PythonQtShell_QGraphicsWebView::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -674,7 +674,7 @@ void PythonQtShell_QGraphicsWebView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -696,7 +696,7 @@ void PythonQtShell_QGraphicsWebView::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -718,7 +718,7 @@ void PythonQtShell_QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -740,7 +740,7 @@ void PythonQtShell_QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -762,7 +762,7 @@ void PythonQtShell_QGraphicsWebView::initStyleOption(QStyleOption* option0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -784,7 +784,7 @@ void PythonQtShell_QGraphicsWebView::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -806,7 +806,7 @@ QVariant PythonQtShell_QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -839,7 +839,7 @@ bool PythonQtShell_QGraphicsWebView::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -872,7 +872,7 @@ QVariant PythonQtShell_QGraphicsWebView::itemChange(QGraphicsItem::GraphicsItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -908,7 +908,7 @@ void PythonQtShell_QGraphicsWebView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -930,7 +930,7 @@ void PythonQtShell_QGraphicsWebView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -952,7 +952,7 @@ void PythonQtShell_QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -974,7 +974,7 @@ void PythonQtShell_QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -996,7 +996,7 @@ void PythonQtShell_QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1018,7 +1018,7 @@ void PythonQtShell_QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1040,7 +1040,7 @@ void PythonQtShell_QGraphicsWebView::moveEvent(QGraphicsSceneMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -1062,7 +1062,7 @@ QPainterPath PythonQtShell_QGraphicsWebView::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1095,7 +1095,7 @@ void PythonQtShell_QGraphicsWebView::paint(QPainter* arg__1, const QStyleOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1117,7 +1117,7 @@ void PythonQtShell_QGraphicsWebView::paintWindowFrame(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1139,7 +1139,7 @@ void PythonQtShell_QGraphicsWebView::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1161,7 +1161,7 @@ QVariant PythonQtShell_QGraphicsWebView::propertyChange(const QString& propert if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -1194,7 +1194,7 @@ void PythonQtShell_QGraphicsWebView::resizeEvent(QGraphicsSceneResizeEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -1216,7 +1216,7 @@ bool PythonQtShell_QGraphicsWebView::sceneEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1249,7 +1249,7 @@ bool PythonQtShell_QGraphicsWebView::sceneEventFilter(QGraphicsItem* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -1282,7 +1282,7 @@ void PythonQtShell_QGraphicsWebView::setExtension(QGraphicsItem::Extension exte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -1304,7 +1304,7 @@ void PythonQtShell_QGraphicsWebView::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -1326,7 +1326,7 @@ QPainterPath PythonQtShell_QGraphicsWebView::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1359,7 +1359,7 @@ void PythonQtShell_QGraphicsWebView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1381,7 +1381,7 @@ QSizeF PythonQtShell_QGraphicsWebView::sizeHint(Qt::SizeHint which0, const QSi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -1414,7 +1414,7 @@ bool PythonQtShell_QGraphicsWebView::supportsExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -1447,7 +1447,7 @@ void PythonQtShell_QGraphicsWebView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1469,7 +1469,7 @@ int PythonQtShell_QGraphicsWebView::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1502,7 +1502,7 @@ void PythonQtShell_QGraphicsWebView::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1524,7 +1524,7 @@ void PythonQtShell_QGraphicsWebView::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1546,7 +1546,7 @@ void PythonQtShell_QGraphicsWebView::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1568,7 +1568,7 @@ void PythonQtShell_QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1590,7 +1590,7 @@ bool PythonQtShell_QGraphicsWebView::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1623,7 +1623,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsWebView::windowFrameSectionAt(con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2588,7 +2588,7 @@ void PythonQtShell_QWebHistoryInterface::addHistoryEntry(const QString& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addHistoryEntry"); + static PyObject* name = PyUnicode_FromString("addHistoryEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2610,7 +2610,7 @@ void PythonQtShell_QWebHistoryInterface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2632,7 +2632,7 @@ void PythonQtShell_QWebHistoryInterface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2654,7 +2654,7 @@ bool PythonQtShell_QWebHistoryInterface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2687,7 +2687,7 @@ bool PythonQtShell_QWebHistoryInterface::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2720,7 +2720,7 @@ bool PythonQtShell_QWebHistoryInterface::historyContains(const QString& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("historyContains"); + static PyObject* name = PyUnicode_FromString("historyContains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2753,7 +2753,7 @@ void PythonQtShell_QWebHistoryInterface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2979,7 +2979,7 @@ void PythonQtShell_QWebInspector::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3001,7 +3001,7 @@ void PythonQtShell_QWebInspector::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3023,7 +3023,7 @@ void PythonQtShell_QWebInspector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3045,7 +3045,7 @@ void PythonQtShell_QWebInspector::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3067,7 +3067,7 @@ void PythonQtShell_QWebInspector::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3089,7 +3089,7 @@ void PythonQtShell_QWebInspector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3111,7 +3111,7 @@ int PythonQtShell_QWebInspector::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3144,7 +3144,7 @@ void PythonQtShell_QWebInspector::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3166,7 +3166,7 @@ void PythonQtShell_QWebInspector::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3188,7 +3188,7 @@ void PythonQtShell_QWebInspector::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3210,7 +3210,7 @@ void PythonQtShell_QWebInspector::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3232,7 +3232,7 @@ void PythonQtShell_QWebInspector::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3254,7 +3254,7 @@ bool PythonQtShell_QWebInspector::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3287,7 +3287,7 @@ bool PythonQtShell_QWebInspector::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3320,7 +3320,7 @@ void PythonQtShell_QWebInspector::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3342,7 +3342,7 @@ bool PythonQtShell_QWebInspector::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3375,7 +3375,7 @@ void PythonQtShell_QWebInspector::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3397,7 +3397,7 @@ bool PythonQtShell_QWebInspector::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3430,7 +3430,7 @@ int PythonQtShell_QWebInspector::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3463,7 +3463,7 @@ void PythonQtShell_QWebInspector::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3485,7 +3485,7 @@ void PythonQtShell_QWebInspector::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3507,7 +3507,7 @@ void PythonQtShell_QWebInspector::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3529,7 +3529,7 @@ QVariant PythonQtShell_QWebInspector::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3562,7 +3562,7 @@ void PythonQtShell_QWebInspector::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3584,7 +3584,7 @@ void PythonQtShell_QWebInspector::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3606,7 +3606,7 @@ void PythonQtShell_QWebInspector::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3628,7 +3628,7 @@ int PythonQtShell_QWebInspector::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3661,7 +3661,7 @@ QSize PythonQtShell_QWebInspector::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3694,7 +3694,7 @@ void PythonQtShell_QWebInspector::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3716,7 +3716,7 @@ void PythonQtShell_QWebInspector::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3738,7 +3738,7 @@ void PythonQtShell_QWebInspector::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3760,7 +3760,7 @@ void PythonQtShell_QWebInspector::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3782,7 +3782,7 @@ void PythonQtShell_QWebInspector::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3804,7 +3804,7 @@ bool PythonQtShell_QWebInspector::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3837,7 +3837,7 @@ QPaintEngine* PythonQtShell_QWebInspector::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3870,7 +3870,7 @@ void PythonQtShell_QWebInspector::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3892,7 +3892,7 @@ QPaintDevice* PythonQtShell_QWebInspector::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3925,7 +3925,7 @@ void PythonQtShell_QWebInspector::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3947,7 +3947,7 @@ void PythonQtShell_QWebInspector::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3969,7 +3969,7 @@ QPainter* PythonQtShell_QWebInspector::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4002,7 +4002,7 @@ void PythonQtShell_QWebInspector::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4024,7 +4024,7 @@ QSize PythonQtShell_QWebInspector::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4057,7 +4057,7 @@ void PythonQtShell_QWebInspector::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4079,7 +4079,7 @@ void PythonQtShell_QWebInspector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4101,7 +4101,7 @@ void PythonQtShell_QWebInspector::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4161,7 +4161,7 @@ bool PythonQtShell_QWebPage::acceptNavigationRequest(QWebFrame* frame0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("acceptNavigationRequest"); + static PyObject* name = PyUnicode_FromString("acceptNavigationRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QNetworkRequest&" , "QWebPage::NavigationType"}; @@ -4194,7 +4194,7 @@ void PythonQtShell_QWebPage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4216,7 +4216,7 @@ QString PythonQtShell_QWebPage::chooseFile(QWebFrame* originatingFrame0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("chooseFile"); + static PyObject* name = PyUnicode_FromString("chooseFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QWebFrame*" , "const QString&"}; @@ -4249,7 +4249,7 @@ QObject* PythonQtShell_QWebPage::createPlugin(const QString& classid0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createPlugin"); + static PyObject* name = PyUnicode_FromString("createPlugin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -4282,7 +4282,7 @@ QWebPage* PythonQtShell_QWebPage::createWindow(QWebPage::WebWindowType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebPage*" , "QWebPage::WebWindowType"}; @@ -4315,7 +4315,7 @@ void PythonQtShell_QWebPage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4337,7 +4337,7 @@ bool PythonQtShell_QWebPage::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4370,7 +4370,7 @@ bool PythonQtShell_QWebPage::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4403,7 +4403,7 @@ bool PythonQtShell_QWebPage::extension(QWebPage::Extension extension0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension" , "const QWebPage::ExtensionOption*" , "QWebPage::ExtensionReturn*"}; @@ -4436,7 +4436,7 @@ void PythonQtShell_QWebPage::javaScriptAlert(QWebFrame* originatingFrame0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptAlert"); + static PyObject* name = PyUnicode_FromString("javaScriptAlert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebFrame*" , "const QString&"}; @@ -4458,7 +4458,7 @@ bool PythonQtShell_QWebPage::javaScriptConfirm(QWebFrame* originatingFrame0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptConfirm"); + static PyObject* name = PyUnicode_FromString("javaScriptConfirm"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&"}; @@ -4491,7 +4491,7 @@ void PythonQtShell_QWebPage::javaScriptConsoleMessage(const QString& message0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptConsoleMessage"); + static PyObject* name = PyUnicode_FromString("javaScriptConsoleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "int" , "const QString&"}; @@ -4513,7 +4513,7 @@ bool PythonQtShell_QWebPage::javaScriptPrompt(QWebFrame* originatingFrame0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptPrompt"); + static PyObject* name = PyUnicode_FromString("javaScriptPrompt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&" , "const QString&" , "QString*"}; @@ -4546,7 +4546,7 @@ bool PythonQtShell_QWebPage::shouldInterruptJavaScript() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shouldInterruptJavaScript"); + static PyObject* name = PyUnicode_FromString("shouldInterruptJavaScript"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4579,7 +4579,7 @@ bool PythonQtShell_QWebPage::supportsExtension(QWebPage::Extension extension0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension"}; @@ -4612,7 +4612,7 @@ void PythonQtShell_QWebPage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4634,7 +4634,7 @@ void PythonQtShell_QWebPage::triggerAction(QWebPage::WebAction action0, bool c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("triggerAction"); + static PyObject* name = PyUnicode_FromString("triggerAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebPage::WebAction" , "bool"}; @@ -4656,7 +4656,7 @@ QString PythonQtShell_QWebPage::userAgentForUrl(const QUrl& url0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("userAgentForUrl"); + static PyObject* name = PyUnicode_FromString("userAgentForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QUrl&"}; @@ -5077,7 +5077,7 @@ void PythonQtShell_QWebPluginFactory::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5099,7 +5099,7 @@ QObject* PythonQtShell_QWebPluginFactory::create(const QString& mimeType0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -5132,7 +5132,7 @@ void PythonQtShell_QWebPluginFactory::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5154,7 +5154,7 @@ bool PythonQtShell_QWebPluginFactory::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5187,7 +5187,7 @@ bool PythonQtShell_QWebPluginFactory::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5220,7 +5220,7 @@ bool PythonQtShell_QWebPluginFactory::extension(QWebPluginFactory::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension" , "const QWebPluginFactory::ExtensionOption*" , "QWebPluginFactory::ExtensionReturn*"}; @@ -5253,7 +5253,7 @@ QList PythonQtShell_QWebPluginFactory::plugins() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("plugins"); + static PyObject* name = PyUnicode_FromString("plugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5286,7 +5286,7 @@ void PythonQtShell_QWebPluginFactory::refreshPlugins() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("refreshPlugins"); + static PyObject* name = PyUnicode_FromString("refreshPlugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5308,7 +5308,7 @@ bool PythonQtShell_QWebPluginFactory::supportsExtension(QWebPluginFactory::Exte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension"}; @@ -5341,7 +5341,7 @@ void PythonQtShell_QWebPluginFactory::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5753,7 +5753,7 @@ void PythonQtShell_QWebView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5775,7 +5775,7 @@ void PythonQtShell_QWebView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5797,7 +5797,7 @@ void PythonQtShell_QWebView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5819,7 +5819,7 @@ void PythonQtShell_QWebView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5841,7 +5841,7 @@ void PythonQtShell_QWebView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5863,7 +5863,7 @@ QWebView* PythonQtShell_QWebView::createWindow(QWebPage::WebWindowType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebView*" , "QWebPage::WebWindowType"}; @@ -5896,7 +5896,7 @@ void PythonQtShell_QWebView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5918,7 +5918,7 @@ int PythonQtShell_QWebView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5951,7 +5951,7 @@ void PythonQtShell_QWebView::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5973,7 +5973,7 @@ void PythonQtShell_QWebView::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5995,7 +5995,7 @@ void PythonQtShell_QWebView::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QWebView::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6039,7 +6039,7 @@ void PythonQtShell_QWebView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6061,7 +6061,7 @@ bool PythonQtShell_QWebView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6094,7 +6094,7 @@ bool PythonQtShell_QWebView::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6127,7 +6127,7 @@ void PythonQtShell_QWebView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6149,7 +6149,7 @@ bool PythonQtShell_QWebView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6182,7 +6182,7 @@ void PythonQtShell_QWebView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6204,7 +6204,7 @@ bool PythonQtShell_QWebView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6237,7 +6237,7 @@ int PythonQtShell_QWebView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6270,7 +6270,7 @@ void PythonQtShell_QWebView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6292,7 +6292,7 @@ void PythonQtShell_QWebView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6314,7 +6314,7 @@ void PythonQtShell_QWebView::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6336,7 +6336,7 @@ QVariant PythonQtShell_QWebView::inputMethodQuery(Qt::InputMethodQuery propert if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6369,7 +6369,7 @@ void PythonQtShell_QWebView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6391,7 +6391,7 @@ void PythonQtShell_QWebView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6413,7 +6413,7 @@ void PythonQtShell_QWebView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6435,7 +6435,7 @@ int PythonQtShell_QWebView::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6468,7 +6468,7 @@ QSize PythonQtShell_QWebView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6501,7 +6501,7 @@ void PythonQtShell_QWebView::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6523,7 +6523,7 @@ void PythonQtShell_QWebView::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6545,7 +6545,7 @@ void PythonQtShell_QWebView::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6567,7 +6567,7 @@ void PythonQtShell_QWebView::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6589,7 +6589,7 @@ void PythonQtShell_QWebView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6611,7 +6611,7 @@ bool PythonQtShell_QWebView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6644,7 +6644,7 @@ QPaintEngine* PythonQtShell_QWebView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6677,7 +6677,7 @@ void PythonQtShell_QWebView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6699,7 +6699,7 @@ QPaintDevice* PythonQtShell_QWebView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6732,7 +6732,7 @@ void PythonQtShell_QWebView::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6754,7 +6754,7 @@ void PythonQtShell_QWebView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6776,7 +6776,7 @@ QPainter* PythonQtShell_QWebView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6809,7 +6809,7 @@ void PythonQtShell_QWebView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6831,7 +6831,7 @@ QSize PythonQtShell_QWebView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6864,7 +6864,7 @@ void PythonQtShell_QWebView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6886,7 +6886,7 @@ void PythonQtShell_QWebView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6908,7 +6908,7 @@ void PythonQtShell_QWebView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_515/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp b/generated_cpp_515/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp index f229356b3..d92765592 100644 --- a/generated_cpp_515/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +++ b/generated_cpp_515/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp @@ -1177,7 +1177,7 @@ bool PythonQtShell_QXmlContentHandler::characters(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1210,7 +1210,7 @@ bool PythonQtShell_QXmlContentHandler::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1243,7 +1243,7 @@ bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1276,7 +1276,7 @@ bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1309,7 +1309,7 @@ QString PythonQtShell_QXmlContentHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1342,7 +1342,7 @@ bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1375,7 +1375,7 @@ bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& ta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1408,7 +1408,7 @@ void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -1430,7 +1430,7 @@ bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1463,7 +1463,7 @@ bool PythonQtShell_QXmlContentHandler::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1496,7 +1496,7 @@ bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceUR if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -1529,7 +1529,7 @@ bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1632,7 +1632,7 @@ QString PythonQtShell_QXmlDTDHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1665,7 +1665,7 @@ bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1698,7 +1698,7 @@ bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1756,7 +1756,7 @@ bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1789,7 +1789,7 @@ QString PythonQtShell_QXmlDeclHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1822,7 +1822,7 @@ bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1855,7 +1855,7 @@ bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1918,7 +1918,7 @@ bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1951,7 +1951,7 @@ bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1984,7 +1984,7 @@ bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2017,7 +2017,7 @@ bool PythonQtShell_QXmlDefaultHandler::endCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2050,7 +2050,7 @@ bool PythonQtShell_QXmlDefaultHandler::endDTD() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2083,7 +2083,7 @@ bool PythonQtShell_QXmlDefaultHandler::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2116,7 +2116,7 @@ bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2149,7 +2149,7 @@ bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2182,7 +2182,7 @@ bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2215,7 +2215,7 @@ bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& excepti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2248,7 +2248,7 @@ QString PythonQtShell_QXmlDefaultHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2281,7 +2281,7 @@ bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2314,7 +2314,7 @@ bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2347,7 +2347,7 @@ bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2380,7 +2380,7 @@ bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2413,7 +2413,7 @@ bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2446,7 +2446,7 @@ bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& ta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2479,7 +2479,7 @@ bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2512,7 +2512,7 @@ void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -2534,7 +2534,7 @@ bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2567,7 +2567,7 @@ bool PythonQtShell_QXmlDefaultHandler::startCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2600,7 +2600,7 @@ bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2633,7 +2633,7 @@ bool PythonQtShell_QXmlDefaultHandler::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2666,7 +2666,7 @@ bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceUR if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -2699,7 +2699,7 @@ bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2732,7 +2732,7 @@ bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2765,7 +2765,7 @@ bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -2798,7 +2798,7 @@ bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& excep if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2841,7 +2841,7 @@ QString PythonQtShell_QXmlEntityResolver::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2874,7 +2874,7 @@ bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2927,7 +2927,7 @@ bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2960,7 +2960,7 @@ QString PythonQtShell_QXmlErrorHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2993,7 +2993,7 @@ bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exce if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3026,7 +3026,7 @@ bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& excepti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3089,7 +3089,7 @@ QString PythonQtShell_QXmlInputSource::data() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3122,7 +3122,7 @@ void PythonQtShell_QXmlInputSource::fetchData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchData"); + static PyObject* name = PyUnicode_FromString("fetchData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3144,7 +3144,7 @@ QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data0, bo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fromRawData"); + static PyObject* name = PyUnicode_FromString("fromRawData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"}; @@ -3177,7 +3177,7 @@ QChar PythonQtShell_QXmlInputSource::next() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("next"); + static PyObject* name = PyUnicode_FromString("next"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QChar"}; @@ -3210,7 +3210,7 @@ void PythonQtShell_QXmlInputSource::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3232,7 +3232,7 @@ void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QByteArray&"}; @@ -3254,7 +3254,7 @@ void PythonQtShell_QXmlInputSource::setData(const QString& dat0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3325,7 +3325,7 @@ bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3358,7 +3358,7 @@ bool PythonQtShell_QXmlLexicalHandler::endCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3391,7 +3391,7 @@ bool PythonQtShell_QXmlLexicalHandler::endDTD() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3424,7 +3424,7 @@ bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3457,7 +3457,7 @@ QString PythonQtShell_QXmlLexicalHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3490,7 +3490,7 @@ bool PythonQtShell_QXmlLexicalHandler::startCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3523,7 +3523,7 @@ bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -3556,7 +3556,7 @@ bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3639,7 +3639,7 @@ int PythonQtShell_QXmlLocator::columnNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnNumber"); + static PyObject* name = PyUnicode_FromString("columnNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3672,7 +3672,7 @@ int PythonQtShell_QXmlLocator::lineNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lineNumber"); + static PyObject* name = PyUnicode_FromString("lineNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3760,7 +3760,7 @@ QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -3793,7 +3793,7 @@ QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -3826,7 +3826,7 @@ QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -3859,7 +3859,7 @@ QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -3892,7 +3892,7 @@ QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -3925,7 +3925,7 @@ bool PythonQtShell_QXmlReader::feature(const QString& name0, bool* ok1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -3958,7 +3958,7 @@ bool PythonQtShell_QXmlReader::hasFeature(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3991,7 +3991,7 @@ bool PythonQtShell_QXmlReader::hasProperty(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4024,7 +4024,7 @@ QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4057,7 +4057,7 @@ bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4090,7 +4090,7 @@ bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4123,7 +4123,7 @@ void* PythonQtShell_QXmlReader::property(const QString& name0, bool* ok1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4156,7 +4156,7 @@ void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4178,7 +4178,7 @@ void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4200,7 +4200,7 @@ void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4222,7 +4222,7 @@ void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4244,7 +4244,7 @@ void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4266,7 +4266,7 @@ void PythonQtShell_QXmlReader::setFeature(const QString& name0, bool value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4288,7 +4288,7 @@ void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4310,7 +4310,7 @@ void PythonQtShell_QXmlReader::setProperty(const QString& name0, void* value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; @@ -4442,7 +4442,7 @@ QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -4475,7 +4475,7 @@ QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -4508,7 +4508,7 @@ QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -4541,7 +4541,7 @@ QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -4574,7 +4574,7 @@ QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -4607,7 +4607,7 @@ bool PythonQtShell_QXmlSimpleReader::feature(const QString& name0, bool* ok1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -4640,7 +4640,7 @@ bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4673,7 +4673,7 @@ bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4706,7 +4706,7 @@ QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4739,7 +4739,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4772,7 +4772,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4805,7 +4805,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0, bool if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"}; @@ -4838,7 +4838,7 @@ bool PythonQtShell_QXmlSimpleReader::parseContinue() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parseContinue"); + static PyObject* name = PyUnicode_FromString("parseContinue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4871,7 +4871,7 @@ void* PythonQtShell_QXmlSimpleReader::property(const QString& name0, bool* ok if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4904,7 +4904,7 @@ void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4926,7 +4926,7 @@ void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4948,7 +4948,7 @@ void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4970,7 +4970,7 @@ void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4992,7 +4992,7 @@ void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -5014,7 +5014,7 @@ void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name0, bool val if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -5036,7 +5036,7 @@ void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -5058,7 +5058,7 @@ void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name0, void* v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; diff --git a/generated_cpp_515/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp b/generated_cpp_515/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp index 96ce24fe2..12cf06079 100644 --- a/generated_cpp_515/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +++ b/generated_cpp_515/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp @@ -33,7 +33,7 @@ void PythonQtShell_QAbstractMessageHandler::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -55,7 +55,7 @@ void PythonQtShell_QAbstractMessageHandler::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -77,7 +77,7 @@ bool PythonQtShell_QAbstractMessageHandler::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -110,7 +110,7 @@ bool PythonQtShell_QAbstractMessageHandler::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -143,7 +143,7 @@ void PythonQtShell_QAbstractMessageHandler::handleMessage(QtMsgType type0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handleMessage"); + static PyObject* name = PyUnicode_FromString("handleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QtMsgType" , "const QString&" , "const QUrl&" , "const QSourceLocation&"}; @@ -165,7 +165,7 @@ void PythonQtShell_QAbstractMessageHandler::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -220,7 +220,7 @@ void PythonQtShell_QAbstractUriResolver::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -242,7 +242,7 @@ void PythonQtShell_QAbstractUriResolver::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -264,7 +264,7 @@ bool PythonQtShell_QAbstractUriResolver::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -297,7 +297,7 @@ bool PythonQtShell_QAbstractUriResolver::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -330,7 +330,7 @@ QUrl PythonQtShell_QAbstractUriResolver::resolve(const QUrl& relative0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolve"); + static PyObject* name = PyUnicode_FromString("resolve"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "const QUrl&"}; @@ -363,7 +363,7 @@ void PythonQtShell_QAbstractUriResolver::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -413,7 +413,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::attributes(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -446,7 +446,7 @@ QUrl PythonQtShell_QAbstractXmlNodeModel::baseUri(const QXmlNodeModelIndex& ni if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -479,7 +479,7 @@ QXmlNodeModelIndex::DocumentOrder PythonQtShell_QAbstractXmlNodeModel::compareO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -512,7 +512,7 @@ QUrl PythonQtShell_QAbstractXmlNodeModel::documentUri(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -545,7 +545,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::elementById(const QXmlN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -578,7 +578,7 @@ bool PythonQtShell_QAbstractXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -611,7 +611,7 @@ QXmlNodeModelIndex::NodeKind PythonQtShell_QAbstractXmlNodeModel::kind(const QX if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -644,7 +644,7 @@ QXmlName PythonQtShell_QAbstractXmlNodeModel::name(const QXmlNodeModelIndex& n if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -677,7 +677,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::namespaceBindings(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -710,7 +710,7 @@ short PythonQtShell_QAbstractXmlNodeModel::namespaceForPrefix(const QXmlNodeMod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -743,7 +743,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::nextFromSimpleAxis(QAbs if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -776,7 +776,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::nodesByIdref( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -809,7 +809,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::root(const QXmlNodeMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -842,7 +842,7 @@ QString PythonQtShell_QAbstractXmlNodeModel::stringValue(const QXmlNodeModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -875,7 +875,7 @@ QVariant PythonQtShell_QAbstractXmlNodeModel::typedValue(const QXmlNodeModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1013,7 +1013,7 @@ void PythonQtShell_QAbstractXmlReceiver::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1035,7 +1035,7 @@ void PythonQtShell_QAbstractXmlReceiver::attribute(const QXmlName& name0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1057,7 +1057,7 @@ void PythonQtShell_QAbstractXmlReceiver::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1079,7 +1079,7 @@ void PythonQtShell_QAbstractXmlReceiver::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1101,7 +1101,7 @@ void PythonQtShell_QAbstractXmlReceiver::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1123,7 +1123,7 @@ void PythonQtShell_QAbstractXmlReceiver::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1145,7 +1145,7 @@ void PythonQtShell_QAbstractXmlReceiver::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1167,7 +1167,7 @@ void PythonQtShell_QAbstractXmlReceiver::namespaceBinding(const QXmlName& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1189,7 +1189,7 @@ void PythonQtShell_QAbstractXmlReceiver::processingInstruction(const QXmlName& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1211,7 +1211,7 @@ void PythonQtShell_QAbstractXmlReceiver::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1233,7 +1233,7 @@ void PythonQtShell_QAbstractXmlReceiver::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1255,7 +1255,7 @@ void PythonQtShell_QAbstractXmlReceiver::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1277,7 +1277,7 @@ void PythonQtShell_QAbstractXmlReceiver::whitespaceOnly(const QStringRef& value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1378,7 +1378,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::attributes(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1411,7 +1411,7 @@ QUrl PythonQtShell_QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex& node if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1444,7 +1444,7 @@ QXmlNodeModelIndex::DocumentOrder PythonQtShell_QSimpleXmlNodeModel::compareOrd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1477,7 +1477,7 @@ QUrl PythonQtShell_QSimpleXmlNodeModel::documentUri(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1510,7 +1510,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::elementById(const QXmlNam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -1543,7 +1543,7 @@ bool PythonQtShell_QSimpleXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1576,7 +1576,7 @@ QXmlNodeModelIndex::NodeKind PythonQtShell_QSimpleXmlNodeModel::kind(const QXml if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -1609,7 +1609,7 @@ QXmlName PythonQtShell_QSimpleXmlNodeModel::name(const QXmlNodeModelIndex& ni0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -1642,7 +1642,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::namespaceBindings(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1675,7 +1675,7 @@ short PythonQtShell_QSimpleXmlNodeModel::namespaceForPrefix(const QXmlNodeModel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -1708,7 +1708,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::nextFromSimpleAxis(QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -1741,7 +1741,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::nodesByIdref(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -1774,7 +1774,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::root(const QXmlNodeModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -1807,7 +1807,7 @@ QString PythonQtShell_QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -1840,7 +1840,7 @@ QVariant PythonQtShell_QSimpleXmlNodeModel::typedValue(const QXmlNodeModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1954,7 +1954,7 @@ void PythonQtShell_QXmlFormatter::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1976,7 +1976,7 @@ void PythonQtShell_QXmlFormatter::attribute(const QXmlName& name0, const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1998,7 +1998,7 @@ void PythonQtShell_QXmlFormatter::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2020,7 +2020,7 @@ void PythonQtShell_QXmlFormatter::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2042,7 +2042,7 @@ void PythonQtShell_QXmlFormatter::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2064,7 +2064,7 @@ void PythonQtShell_QXmlFormatter::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2086,7 +2086,7 @@ void PythonQtShell_QXmlFormatter::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2108,7 +2108,7 @@ void PythonQtShell_QXmlFormatter::namespaceBinding(const QXmlName& nb0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2130,7 +2130,7 @@ void PythonQtShell_QXmlFormatter::processingInstruction(const QXmlName& name0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2152,7 +2152,7 @@ void PythonQtShell_QXmlFormatter::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2174,7 +2174,7 @@ void PythonQtShell_QXmlFormatter::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2196,7 +2196,7 @@ void PythonQtShell_QXmlFormatter::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2218,7 +2218,7 @@ void PythonQtShell_QXmlFormatter::whitespaceOnly(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2745,7 +2745,7 @@ void PythonQtShell_QXmlSerializer::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2767,7 +2767,7 @@ void PythonQtShell_QXmlSerializer::attribute(const QXmlName& name0, const QStri if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -2789,7 +2789,7 @@ void PythonQtShell_QXmlSerializer::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2811,7 +2811,7 @@ void PythonQtShell_QXmlSerializer::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2833,7 +2833,7 @@ void PythonQtShell_QXmlSerializer::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2855,7 +2855,7 @@ void PythonQtShell_QXmlSerializer::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2877,7 +2877,7 @@ void PythonQtShell_QXmlSerializer::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2899,7 +2899,7 @@ void PythonQtShell_QXmlSerializer::namespaceBinding(const QXmlName& nb0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2921,7 +2921,7 @@ void PythonQtShell_QXmlSerializer::processingInstruction(const QXmlName& name0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2943,7 +2943,7 @@ void PythonQtShell_QXmlSerializer::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2965,7 +2965,7 @@ void PythonQtShell_QXmlSerializer::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2987,7 +2987,7 @@ void PythonQtShell_QXmlSerializer::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3009,7 +3009,7 @@ void PythonQtShell_QXmlSerializer::whitespaceOnly(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; diff --git a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core0.cpp b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core0.cpp index 8712d6913..0e82c657d 100644 --- a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +++ b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core0.cpp @@ -52,7 +52,7 @@ PythonQtShell_QAbstractAnimation::~PythonQtShell_QAbstractAnimation() { void PythonQtShell_QAbstractAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -71,7 +71,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -90,7 +90,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -120,7 +120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -150,7 +150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -180,7 +180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -199,7 +199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -218,7 +218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -237,7 +237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -341,7 +341,7 @@ PythonQtShell_QAbstractItemModel::~PythonQtShell_QAbstractItemModel() { QModelIndex PythonQtShell_QAbstractItemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -371,7 +371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -401,7 +401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -431,7 +431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -450,7 +450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -480,7 +480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -499,7 +499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -529,7 +529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -559,7 +559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -589,7 +589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -619,7 +619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -638,7 +638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractItemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -668,7 +668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -698,7 +698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -728,7 +728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -758,7 +758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -788,7 +788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -818,7 +818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractItemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -848,7 +848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractItemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -878,7 +878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractItemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -908,7 +908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractItemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -938,7 +938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -968,7 +968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -998,7 +998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1028,7 +1028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1058,7 +1058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1088,7 +1088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1107,7 +1107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractItemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -1137,7 +1137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1167,7 +1167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1197,7 +1197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1227,7 +1227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1257,7 +1257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1287,7 +1287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1306,7 +1306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1336,7 +1336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1366,7 +1366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1396,7 +1396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1426,7 +1426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1770,7 +1770,7 @@ PythonQtShell_QAbstractListModel::~PythonQtShell_QAbstractListModel() { QModelIndex PythonQtShell_QAbstractListModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1800,7 +1800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1830,7 +1830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1879,7 +1879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1898,7 +1898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractListModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1928,7 +1928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1958,7 +1958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1988,7 +1988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2018,7 +2018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2037,7 +2037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractListModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2067,7 +2067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractListModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2097,7 +2097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractListModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2127,7 +2127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2157,7 +2157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2187,7 +2187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractListModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2217,7 +2217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractListModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2247,7 +2247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractListModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2277,7 +2277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractListModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2307,7 +2307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2337,7 +2337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2367,7 +2367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2397,7 +2397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2427,7 +2427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2446,7 +2446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractListModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2476,7 +2476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractListModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2506,7 +2506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2536,7 +2536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2566,7 +2566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2596,7 +2596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractListModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2626,7 +2626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2645,7 +2645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractListModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2675,7 +2675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2705,7 +2705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractListModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2735,7 +2735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractListModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2765,7 +2765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2814,7 +2814,7 @@ PythonQtShell_QAbstractState::~PythonQtShell_QAbstractState() { void PythonQtShell_QAbstractState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2852,7 +2852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2882,7 +2882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2912,7 +2912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2931,7 +2931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3004,7 +3004,7 @@ PythonQtShell_QAbstractTransition::~PythonQtShell_QAbstractTransition() { void PythonQtShell_QAbstractTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3023,7 +3023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3042,7 +3042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3072,7 +3072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3102,7 +3102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3132,7 +3132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3151,7 +3151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3240,7 +3240,7 @@ PythonQtShell_QAnimationGroup::~PythonQtShell_QAnimationGroup() { void PythonQtShell_QAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3259,7 +3259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3278,7 +3278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3308,7 +3308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3338,7 +3338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3368,7 +3368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3387,7 +3387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3406,7 +3406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3425,7 +3425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3560,7 +3560,7 @@ PythonQtShell_QBuffer::~PythonQtShell_QBuffer() { bool PythonQtShell_QBuffer::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3590,7 +3590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3620,7 +3620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3650,7 +3650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3680,7 +3680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3699,7 +3699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3718,7 +3718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3737,7 +3737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3767,7 +3767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3797,7 +3797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3827,7 +3827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::open(QIODevice::OpenMode openMode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3857,7 +3857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3887,7 +3887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3917,7 +3917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3947,7 +3947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3977,7 +3977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::seek(qint64 off0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4007,7 +4007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4037,7 +4037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4056,7 +4056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4086,7 +4086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4116,7 +4116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5573,7 +5573,7 @@ PythonQtShell_QEventLoop::~PythonQtShell_QEventLoop() { void PythonQtShell_QEventLoop::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventLoop::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventLoop::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5641,7 +5641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventLoop::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5671,7 +5671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventLoop::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5735,7 +5735,7 @@ PythonQtShell_QEventTransition::~PythonQtShell_QEventTransition() { void PythonQtShell_QEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5754,7 +5754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5773,7 +5773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5803,7 +5803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5833,7 +5833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5863,7 +5863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5882,7 +5882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5950,7 +5950,7 @@ PythonQtShell_QFactoryInterface::~PythonQtShell_QFactoryInterface() { QStringList PythonQtShell_QFactoryInterface::keys() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keys"); + static PyObject* name = PyUnicode_FromString("keys"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5995,7 +5995,7 @@ PythonQtShell_QFile::~PythonQtShell_QFile() { bool PythonQtShell_QFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6025,7 +6025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6055,7 +6055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6085,7 +6085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6115,7 +6115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6134,7 +6134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6153,7 +6153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6172,7 +6172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6202,7 +6202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6232,7 +6232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFile::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6262,7 +6262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6292,7 +6292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -6322,7 +6322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -6352,7 +6352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6382,7 +6382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6412,7 +6412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6442,7 +6442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6472,7 +6472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6502,7 +6502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6532,7 +6532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -6562,7 +6562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6592,7 +6592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6611,7 +6611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6641,7 +6641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6671,7 +6671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -6848,7 +6848,7 @@ PythonQtShell_QFileDevice::~PythonQtShell_QFileDevice() { bool PythonQtShell_QFileDevice::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6878,7 +6878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6908,7 +6908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6938,7 +6938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6968,7 +6968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6987,7 +6987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7006,7 +7006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7025,7 +7025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7055,7 +7055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7085,7 +7085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFileDevice::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7115,7 +7115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7145,7 +7145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -7175,7 +7175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QFileDevice::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -7205,7 +7205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7235,7 +7235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -7265,7 +7265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -7295,7 +7295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7325,7 +7325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7355,7 +7355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7385,7 +7385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -7415,7 +7415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7445,7 +7445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7464,7 +7464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7494,7 +7494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7524,7 +7524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core1.cpp b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core1.cpp index 0f87a46d3..c4849ad36 100644 --- a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +++ b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core1.cpp @@ -53,7 +53,7 @@ PythonQtShell_QFileSelector::~PythonQtShell_QFileSelector() { void PythonQtShell_QFileSelector::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -72,7 +72,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSelector::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -91,7 +91,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSelector::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -121,7 +121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSelector::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -151,7 +151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSelector::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -205,7 +205,7 @@ PythonQtShell_QFileSystemWatcher::~PythonQtShell_QFileSystemWatcher() { void PythonQtShell_QFileSystemWatcher::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -224,7 +224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemWatcher::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -243,7 +243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemWatcher::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -273,7 +273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemWatcher::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -303,7 +303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemWatcher::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -366,7 +366,7 @@ PythonQtShell_QFinalState::~PythonQtShell_QFinalState() { void PythonQtShell_QFinalState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -385,7 +385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFinalState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFinalState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -502,7 +502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -546,7 +546,7 @@ PythonQtShell_QHistoryState::~PythonQtShell_QHistoryState() { void PythonQtShell_QHistoryState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -565,7 +565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -584,7 +584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHistoryState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -614,7 +614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHistoryState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -644,7 +644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -682,7 +682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -750,7 +750,7 @@ PythonQtShell_QIODevice::~PythonQtShell_QIODevice() { bool PythonQtShell_QIODevice::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -780,7 +780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -810,7 +810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -840,7 +840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -870,7 +870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -889,7 +889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -908,7 +908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -927,7 +927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -957,7 +957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -987,7 +987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1017,7 +1017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1077,7 +1077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1107,7 +1107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1137,7 +1137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1167,7 +1167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1197,7 +1197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1227,7 +1227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1246,7 +1246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1276,7 +1276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1306,7 +1306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1520,7 +1520,7 @@ PythonQtShell_QIdentityProxyModel::~PythonQtShell_QIdentityProxyModel() { QModelIndex PythonQtShell_QIdentityProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1550,7 +1550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1580,7 +1580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1610,7 +1610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1629,7 +1629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QIdentityProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1659,7 +1659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1678,7 +1678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QIdentityProxyModel::data(const QModelIndex& proxyIndex0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1708,7 +1708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1738,7 +1738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1768,7 +1768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1798,7 +1798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1817,7 +1817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QIdentityProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -1847,7 +1847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1877,7 +1877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QIdentityProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1937,7 +1937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1967,7 +1967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1997,7 +1997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QIdentityProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2027,7 +2027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2057,7 +2057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionFromSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -2087,7 +2087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionToSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -2117,7 +2117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2147,7 +2147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QIdentityProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2177,7 +2177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QIdentityProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2207,7 +2207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QIdentityProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2237,7 +2237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2267,7 +2267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2297,7 +2297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2327,7 +2327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2357,7 +2357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2387,7 +2387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2406,7 +2406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QIdentityProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2436,7 +2436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QIdentityProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2466,7 +2466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2496,7 +2496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2526,7 +2526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2556,7 +2556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -2575,7 +2575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2605,7 +2605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2624,7 +2624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QIdentityProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2654,7 +2654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2684,7 +2684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2714,7 +2714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2744,7 +2744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3418,7 +3418,7 @@ PythonQtShell_QLibrary::~PythonQtShell_QLibrary() { void PythonQtShell_QLibrary::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3437,7 +3437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLibrary::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3456,7 +3456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLibrary::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3486,7 +3486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLibrary::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3516,7 +3516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLibrary::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4420,7 +4420,7 @@ PythonQtShell_QMimeData::~PythonQtShell_QMimeData() { void PythonQtShell_QMimeData::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4439,7 +4439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMimeData::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4458,7 +4458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4488,7 +4488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4518,7 +4518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QMimeData::formats() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("formats"); + static PyObject* name = PyUnicode_FromString("formats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4548,7 +4548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::hasFormat(const QString& mimetype0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFormat"); + static PyObject* name = PyUnicode_FromString("hasFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4578,7 +4578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMimeData::retrieveData(const QString& mimetype0, QVariant::Type preferredType1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("retrieveData"); + static PyObject* name = PyUnicode_FromString("retrieveData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "QVariant::Type"}; @@ -4608,7 +4608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMimeData::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5012,7 +5012,7 @@ PythonQtShell_QObject::~PythonQtShell_QObject() { void PythonQtShell_QObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5031,7 +5031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5050,7 +5050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5080,7 +5080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5110,7 +5110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5259,7 +5259,7 @@ PythonQtShell_QParallelAnimationGroup::~PythonQtShell_QParallelAnimationGroup() void PythonQtShell_QParallelAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5278,7 +5278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5297,7 +5297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QParallelAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5327,7 +5327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QParallelAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5357,7 +5357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QParallelAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5387,7 +5387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5406,7 +5406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5425,7 +5425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; diff --git a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core2.cpp b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core2.cpp index 3bb20c2ec..ad438c501 100644 --- a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +++ b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core2.cpp @@ -51,7 +51,7 @@ PythonQtShell_QPauseAnimation::~PythonQtShell_QPauseAnimation() { void PythonQtShell_QPauseAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -70,7 +70,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -89,7 +89,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPauseAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -119,7 +119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPauseAnimation::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -149,7 +149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPauseAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -179,7 +179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -198,7 +198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -217,7 +217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -236,7 +236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -395,7 +395,7 @@ PythonQtShell_QProcess::~PythonQtShell_QProcess() { bool PythonQtShell_QProcess::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -425,7 +425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -455,7 +455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -485,7 +485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -515,7 +515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -534,7 +534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -553,7 +553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -572,7 +572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -602,7 +602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -632,7 +632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -662,7 +662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -692,7 +692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -722,7 +722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -752,7 +752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -782,7 +782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -812,7 +812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::setupChildProcess() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupChildProcess"); + static PyObject* name = PyUnicode_FromString("setupChildProcess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -861,7 +861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -891,7 +891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -910,7 +910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -940,7 +940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -970,7 +970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1360,7 +1360,7 @@ PythonQtShell_QPropertyAnimation::~PythonQtShell_QPropertyAnimation() { void PythonQtShell_QPropertyAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1379,7 +1379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1398,7 +1398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPropertyAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPropertyAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPropertyAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1488,7 +1488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPropertyAnimation::interpolated(const QVariant& from0, const QVariant& to1, qreal progress2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -1518,7 +1518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1537,7 +1537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1556,7 +1556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateCurrentValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1575,7 +1575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -1594,7 +1594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2086,7 +2086,7 @@ PythonQtShell_QRunnable::~PythonQtShell_QRunnable() { void PythonQtShell_QRunnable::run() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2130,7 +2130,7 @@ PythonQtShell_QSaveFile::~PythonQtShell_QSaveFile() { bool PythonQtShell_QSaveFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2160,7 +2160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2190,7 +2190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2220,7 +2220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2250,7 +2250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSaveFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSaveFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2288,7 +2288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2318,7 +2318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2348,7 +2348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSaveFile::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2378,7 +2378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2408,7 +2408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2438,7 +2438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QSaveFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -2468,7 +2468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2498,7 +2498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2528,7 +2528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2558,7 +2558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2588,7 +2588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2618,7 +2618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2648,7 +2648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -2678,7 +2678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2708,7 +2708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSaveFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2727,7 +2727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2757,7 +2757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2787,7 +2787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2906,7 +2906,7 @@ PythonQtShell_QSequentialAnimationGroup::~PythonQtShell_QSequentialAnimationGrou void PythonQtShell_QSequentialAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2925,7 +2925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2944,7 +2944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSequentialAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2974,7 +2974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSequentialAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3004,7 +3004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSequentialAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3034,7 +3034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3053,7 +3053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3072,7 +3072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3091,7 +3091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3160,7 +3160,7 @@ PythonQtShell_QSettings::~PythonQtShell_QSettings() { void PythonQtShell_QSettings::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3179,7 +3179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSettings::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3198,7 +3198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSettings::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3228,7 +3228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSettings::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3258,7 +3258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSettings::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3463,7 +3463,7 @@ PythonQtShell_QSharedMemory::~PythonQtShell_QSharedMemory() { void PythonQtShell_QSharedMemory::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3482,7 +3482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSharedMemory::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3501,7 +3501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSharedMemory::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3531,7 +3531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSharedMemory::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3561,7 +3561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSharedMemory::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3669,7 +3669,7 @@ PythonQtShell_QSignalMapper::~PythonQtShell_QSignalMapper() { void PythonQtShell_QSignalMapper::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3688,7 +3688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalMapper::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3707,7 +3707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalMapper::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3737,7 +3737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalMapper::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3767,7 +3767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalMapper::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3841,7 +3841,7 @@ PythonQtShell_QSignalTransition::~PythonQtShell_QSignalTransition() { void PythonQtShell_QSignalTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3860,7 +3860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3879,7 +3879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3909,7 +3909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3939,7 +3939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3969,7 +3969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3988,7 +3988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4120,7 +4120,7 @@ PythonQtShell_QState::~PythonQtShell_QState() { void PythonQtShell_QState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4139,7 +4139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4158,7 +4158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4188,7 +4188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4218,7 +4218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4237,7 +4237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4256,7 +4256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4364,7 +4364,7 @@ PythonQtShell_QStateMachine::~PythonQtShell_QStateMachine() { void PythonQtShell_QStateMachine::beginMicrostep(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginMicrostep"); + static PyObject* name = PyUnicode_FromString("beginMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4383,7 +4383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::beginSelectTransitions(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginSelectTransitions"); + static PyObject* name = PyUnicode_FromString("beginSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4402,7 +4402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4421,7 +4421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4440,7 +4440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::endMicrostep(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endMicrostep"); + static PyObject* name = PyUnicode_FromString("endMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4459,7 +4459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::endSelectTransitions(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endSelectTransitions"); + static PyObject* name = PyUnicode_FromString("endSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4478,7 +4478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStateMachine::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4508,7 +4508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStateMachine::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4538,7 +4538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4557,7 +4557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4576,7 +4576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4891,7 +4891,7 @@ PythonQtShell_QTemporaryFile::~PythonQtShell_QTemporaryFile() { bool PythonQtShell_QTemporaryFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4921,7 +4921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4951,7 +4951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4981,7 +4981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5011,7 +5011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5030,7 +5030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5049,7 +5049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5068,7 +5068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5098,7 +5098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5128,7 +5128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5158,7 +5158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5188,7 +5188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QTemporaryFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -5218,7 +5218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5248,7 +5248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5278,7 +5278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5308,7 +5308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5338,7 +5338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5368,7 +5368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5398,7 +5398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -5428,7 +5428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5458,7 +5458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5477,7 +5477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5507,7 +5507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5537,7 +5537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core3.cpp b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core3.cpp index 111c078d4..1b84a4796 100644 --- a/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +++ b/generated_cpp_53/com_trolltech_qt_core/com_trolltech_qt_core3.cpp @@ -41,7 +41,7 @@ PythonQtShell_QTextCodec::~PythonQtShell_QTextCodec() { QList PythonQtShell_QTextCodec::aliases() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("aliases"); + static PyObject* name = PyUnicode_FromString("aliases"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -71,7 +71,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QTextCodec::convertFromUnicode(const QChar* in0, int length1, QTextCodec::ConverterState* state2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("convertFromUnicode"); + static PyObject* name = PyUnicode_FromString("convertFromUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QChar*" , "int" , "QTextCodec::ConverterState*"}; @@ -101,7 +101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTextCodec::convertToUnicode(const char* in0, int length1, QTextCodec::ConverterState* state2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("convertToUnicode"); + static PyObject* name = PyUnicode_FromString("convertToUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "int" , "QTextCodec::ConverterState*"}; @@ -131,7 +131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextCodec::mibEnum() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mibEnum"); + static PyObject* name = PyUnicode_FromString("mibEnum"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -161,7 +161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QTextCodec::name() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -619,7 +619,7 @@ PythonQtShell_QThreadPool::~PythonQtShell_QThreadPool() { void PythonQtShell_QThreadPool::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -638,7 +638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QThreadPool::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -657,7 +657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QThreadPool::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -687,7 +687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QThreadPool::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -717,7 +717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QThreadPool::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -806,7 +806,7 @@ PythonQtShell_QTimeLine::~PythonQtShell_QTimeLine() { void PythonQtShell_QTimeLine::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -825,7 +825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeLine::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -844,7 +844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeLine::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -874,7 +874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeLine::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -904,7 +904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeLine::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -923,7 +923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qreal PythonQtShell_QTimeLine::valueForTime(int msec0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueForTime"); + static PyObject* name = PyUnicode_FromString("valueForTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal" , "int"}; @@ -1257,7 +1257,7 @@ PythonQtShell_QTimer::~PythonQtShell_QTimer() { void PythonQtShell_QTimer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1276,7 +1276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1295,7 +1295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1325,7 +1325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1355,7 +1355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1459,7 +1459,7 @@ PythonQtShell_QTranslator::~PythonQtShell_QTranslator() { void PythonQtShell_QTranslator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1478,7 +1478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTranslator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1497,7 +1497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1527,7 +1527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1557,7 +1557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1587,7 +1587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTranslator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1606,7 +1606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTranslator::translate(const char* context0, const char* sourceText1, const char* disambiguation2, int n3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("translate"); + static PyObject* name = PyUnicode_FromString("translate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "const char*" , "const char*" , "int"}; @@ -1908,7 +1908,7 @@ PythonQtShell_QVariantAnimation::~PythonQtShell_QVariantAnimation() { void PythonQtShell_QVariantAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1927,7 +1927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1946,7 +1946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVariantAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1976,7 +1976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVariantAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2006,7 +2006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVariantAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2036,7 +2036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QVariantAnimation::interpolated(const QVariant& from0, const QVariant& to1, qreal progress2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -2066,7 +2066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2085,7 +2085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2104,7 +2104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateCurrentValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2123,7 +2123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -2142,7 +2142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2287,7 +2287,7 @@ PythonQtShell_QXmlStreamEntityResolver::~PythonQtShell_QXmlStreamEntityResolver( QString PythonQtShell_QXmlStreamEntityResolver::resolveEntity(const QString& publicId0, const QString& systemId1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "const QString&"}; @@ -2317,7 +2317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlStreamEntityResolver::resolveUndeclaredEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveUndeclaredEntity"); + static PyObject* name = PyUnicode_FromString("resolveUndeclaredEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp index 31e35dbf6..910736a81 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp @@ -115,7 +115,7 @@ PythonQtShell_QAbstractButton::~PythonQtShell_QAbstractButton() { void PythonQtShell_QAbstractButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -134,7 +134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -153,7 +153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -172,7 +172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -191,7 +191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -210,7 +210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -229,7 +229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -248,7 +248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -278,7 +278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -297,7 +297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -316,7 +316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -335,7 +335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -354,7 +354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -373,7 +373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -403,7 +403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -433,7 +433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -452,7 +452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -482,7 +482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -501,7 +501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -531,7 +531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -561,7 +561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -580,7 +580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -610,7 +610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -629,7 +629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -648,7 +648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -678,7 +678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -697,7 +697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -716,7 +716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -765,7 +765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractButton::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -795,7 +795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -814,7 +814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -852,7 +852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -871,7 +871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -969,7 +969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -988,7 +988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1018,7 +1018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1037,7 +1037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1067,7 +1067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1086,7 +1086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractButton::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1116,7 +1116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1135,7 +1135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1154,7 +1154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1358,7 +1358,7 @@ PythonQtShell_QAbstractGraphicsShapeItem::~PythonQtShell_QAbstractGraphicsShapeI void PythonQtShell_QAbstractGraphicsShapeItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1377,7 +1377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QAbstractGraphicsShapeItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1407,7 +1407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1437,7 +1437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1467,7 +1467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1497,7 +1497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1516,7 +1516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1535,7 +1535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1554,7 +1554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1573,7 +1573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1592,7 +1592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1622,7 +1622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1641,7 +1641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1660,7 +1660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1679,7 +1679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1698,7 +1698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1717,7 +1717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1736,7 +1736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1766,7 +1766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1796,7 +1796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -1829,7 +1829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1848,7 +1848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1867,7 +1867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1886,7 +1886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1905,7 +1905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1924,7 +1924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1943,7 +1943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1973,7 +1973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1992,7 +1992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2022,7 +2022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2052,7 +2052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2071,7 +2071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2101,7 +2101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2131,7 +2131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractGraphicsShapeItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2161,7 +2161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2220,7 +2220,7 @@ PythonQtShell_QAbstractItemDelegate::~PythonQtShell_QAbstractItemDelegate() { void PythonQtShell_QAbstractItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2239,7 +2239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QAbstractItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2288,7 +2288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2307,7 +2307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2337,7 +2337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2367,7 +2367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2397,7 +2397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2427,7 +2427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2446,7 +2446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -2476,7 +2476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2495,7 +2495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -2514,7 +2514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2544,7 +2544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2563,7 +2563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2642,7 +2642,7 @@ PythonQtShell_QAbstractItemView::~PythonQtShell_QAbstractItemView() { void PythonQtShell_QAbstractItemView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2661,7 +2661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2680,7 +2680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2699,7 +2699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -2718,7 +2718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2737,7 +2737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2756,7 +2756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2775,7 +2775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -2794,7 +2794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2813,7 +2813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -2832,7 +2832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2862,7 +2862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2881,7 +2881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2900,7 +2900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2919,7 +2919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2938,7 +2938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2957,7 +2957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -2987,7 +2987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3006,7 +3006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3025,7 +3025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3055,7 +3055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3085,7 +3085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3104,7 +3104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3134,7 +3134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3153,7 +3153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3183,7 +3183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3213,7 +3213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3232,7 +3232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3262,7 +3262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3281,7 +3281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3300,7 +3300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemView::indexAt(const QPoint& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3330,7 +3330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3349,7 +3349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3368,7 +3368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3398,7 +3398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3428,7 +3428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3447,7 +3447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3466,7 +3466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3485,7 +3485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3504,7 +3504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3534,7 +3534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3553,7 +3553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3572,7 +3572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3591,7 +3591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3610,7 +3610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemView::moveCursor(QAbstractItemView::CursorAction cursorAction0, Qt::KeyboardModifiers modifiers1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -3640,7 +3640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3659,7 +3659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3689,7 +3689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractItemView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3719,7 +3719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3738,7 +3738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractItemView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3768,7 +3768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3787,7 +3787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3806,7 +3806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -3825,7 +3825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -3844,7 +3844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3863,7 +3863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -3882,7 +3882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3901,7 +3901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractItemView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -3931,7 +3931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -3950,7 +3950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QAbstractItemView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -3980,7 +3980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -3999,7 +3999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4018,7 +4018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4037,7 +4037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4056,7 +4056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4075,7 +4075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractItemView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4105,7 +4105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4124,7 +4124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4154,7 +4154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4184,7 +4184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4203,7 +4203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4222,7 +4222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4241,7 +4241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4260,7 +4260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4279,7 +4279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4298,7 +4298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4328,7 +4328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4347,7 +4347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4366,7 +4366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QAbstractItemView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4396,7 +4396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4426,7 +4426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4456,7 +4456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QAbstractItemView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -4486,7 +4486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QAbstractItemView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -4516,7 +4516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5120,7 +5120,7 @@ PythonQtShell_QAbstractPrintDialog::~PythonQtShell_QAbstractPrintDialog() { void PythonQtShell_QAbstractPrintDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5139,7 +5139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5158,7 +5158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5177,7 +5177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5196,7 +5196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5215,7 +5215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5234,7 +5234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5253,7 +5253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5283,7 +5283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5302,7 +5302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5321,7 +5321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5340,7 +5340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5359,7 +5359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5378,7 +5378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5397,7 +5397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5427,7 +5427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5457,7 +5457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5487,7 +5487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5506,7 +5506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5536,7 +5536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5555,7 +5555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5585,7 +5585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5615,7 +5615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5634,7 +5634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5653,7 +5653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5672,7 +5672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5702,7 +5702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5721,7 +5721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5740,7 +5740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5759,7 +5759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5789,7 +5789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5808,7 +5808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5827,7 +5827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5846,7 +5846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5865,7 +5865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5884,7 +5884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractPrintDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5914,7 +5914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5933,7 +5933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractPrintDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5963,7 +5963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5982,7 +5982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractPrintDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6012,7 +6012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6031,7 +6031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6050,7 +6050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractPrintDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6080,7 +6080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6099,7 +6099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6118,7 +6118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6137,7 +6137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractPrintDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6241,7 +6241,7 @@ PythonQtShell_QAbstractProxyModel::~PythonQtShell_QAbstractProxyModel() { QModelIndex PythonQtShell_QAbstractProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6271,7 +6271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6301,7 +6301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6331,7 +6331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6350,7 +6350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6380,7 +6380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6399,7 +6399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractProxyModel::data(const QModelIndex& proxyIndex0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -6429,7 +6429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6459,7 +6459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6489,7 +6489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6519,7 +6519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6538,7 +6538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6568,7 +6568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6598,7 +6598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6628,7 +6628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6658,7 +6658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6688,7 +6688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6718,7 +6718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6748,7 +6748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6778,7 +6778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionFromSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -6808,7 +6808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionToSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -6838,7 +6838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6868,7 +6868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6898,7 +6898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6928,7 +6928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6958,7 +6958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6988,7 +6988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7018,7 +7018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7048,7 +7048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7078,7 +7078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7108,7 +7108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7127,7 +7127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7157,7 +7157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7187,7 +7187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7217,7 +7217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7247,7 +7247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -7277,7 +7277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -7296,7 +7296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7326,7 +7326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7345,7 +7345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7375,7 +7375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7405,7 +7405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7435,7 +7435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7465,7 +7465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7619,7 +7619,7 @@ PythonQtShell_QAbstractScrollArea::~PythonQtShell_QAbstractScrollArea() { void PythonQtShell_QAbstractScrollArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7638,7 +7638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7657,7 +7657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7676,7 +7676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7695,7 +7695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7714,7 +7714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7733,7 +7733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7763,7 +7763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7782,7 +7782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7801,7 +7801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7820,7 +7820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7839,7 +7839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7858,7 +7858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7888,7 +7888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7918,7 +7918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7937,7 +7937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7967,7 +7967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7986,7 +7986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8016,7 +8016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8046,7 +8046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8065,7 +8065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8084,7 +8084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8103,7 +8103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractScrollArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8133,7 +8133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8152,7 +8152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8171,7 +8171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8190,7 +8190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8220,7 +8220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8239,7 +8239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8258,7 +8258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8277,7 +8277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8296,7 +8296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8315,7 +8315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8345,7 +8345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractScrollArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8375,7 +8375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8394,7 +8394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractScrollArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8424,7 +8424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8443,7 +8443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8462,7 +8462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8481,7 +8481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractScrollArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8511,7 +8511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8530,7 +8530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8549,7 +8549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8568,7 +8568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8598,7 +8598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractScrollArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8628,7 +8628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8857,7 +8857,7 @@ PythonQtShell_QAbstractSlider::~PythonQtShell_QAbstractSlider() { void PythonQtShell_QAbstractSlider::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8876,7 +8876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8895,7 +8895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8914,7 +8914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8933,7 +8933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8952,7 +8952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8971,7 +8971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9001,7 +9001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9020,7 +9020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9039,7 +9039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9058,7 +9058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9077,7 +9077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9096,7 +9096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9126,7 +9126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9156,7 +9156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9175,7 +9175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9205,7 +9205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9224,7 +9224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9254,7 +9254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9284,7 +9284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9303,7 +9303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9322,7 +9322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9341,7 +9341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9371,7 +9371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9390,7 +9390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9409,7 +9409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9428,7 +9428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9458,7 +9458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractSlider::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9488,7 +9488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9507,7 +9507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9526,7 +9526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9545,7 +9545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9564,7 +9564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9583,7 +9583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9613,7 +9613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractSlider::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9643,7 +9643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9662,7 +9662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractSlider::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9692,7 +9692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9711,7 +9711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractSlider::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9741,7 +9741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9760,7 +9760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractSlider::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9790,7 +9790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::sliderChange(QAbstractSlider::SliderChange change0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -9809,7 +9809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9828,7 +9828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9847,7 +9847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10016,7 +10016,7 @@ PythonQtShell_QAbstractSpinBox::~PythonQtShell_QAbstractSpinBox() { void PythonQtShell_QAbstractSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10035,7 +10035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10054,7 +10054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10073,7 +10073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10092,7 +10092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10111,7 +10111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10130,7 +10130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10149,7 +10149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10179,7 +10179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10198,7 +10198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10217,7 +10217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10236,7 +10236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10255,7 +10255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10274,7 +10274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10304,7 +10304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10334,7 +10334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -10353,7 +10353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10372,7 +10372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10402,7 +10402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10421,7 +10421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10451,7 +10451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10481,7 +10481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10500,7 +10500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10519,7 +10519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10538,7 +10538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10568,7 +10568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10587,7 +10587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10606,7 +10606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10625,7 +10625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10655,7 +10655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10674,7 +10674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10693,7 +10693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10712,7 +10712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10731,7 +10731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10750,7 +10750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10780,7 +10780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10810,7 +10810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10829,7 +10829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10859,7 +10859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10878,7 +10878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10908,7 +10908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10927,7 +10927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10946,7 +10946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QAbstractSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -10976,7 +10976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10995,7 +10995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11014,7 +11014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QAbstractSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11044,7 +11044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11328,7 +11328,7 @@ PythonQtShell_QAbstractTableModel::~PythonQtShell_QAbstractTableModel() { QModelIndex PythonQtShell_QAbstractTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -11358,7 +11358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -11388,7 +11388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -11418,7 +11418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11437,7 +11437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -11467,7 +11467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11486,7 +11486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractTableModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -11516,7 +11516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -11546,7 +11546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11576,7 +11576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11606,7 +11606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11625,7 +11625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -11655,7 +11655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -11685,7 +11685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -11715,7 +11715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11745,7 +11745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11775,7 +11775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -11805,7 +11805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -11835,7 +11835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -11865,7 +11865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -11895,7 +11895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -11925,7 +11925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -11955,7 +11955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11985,7 +11985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12015,7 +12015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12034,7 +12034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -12064,7 +12064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12094,7 +12094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -12124,7 +12124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -12154,7 +12154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -12184,7 +12184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12214,7 +12214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -12233,7 +12233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -12263,7 +12263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12293,7 +12293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12323,7 +12323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12353,7 +12353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12402,7 +12402,7 @@ PythonQtShell_QAbstractTextDocumentLayout::~PythonQtShell_QAbstractTextDocumentL QRectF PythonQtShell_QAbstractTextDocumentLayout::blockBoundingRect(const QTextBlock& block0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -12432,7 +12432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12451,7 +12451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12470,7 +12470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::documentChanged(int from0, int charsRemoved1, int charsAdded2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -12489,7 +12489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QAbstractTextDocumentLayout::documentSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -12519,7 +12519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::draw(QPainter* painter0, const QAbstractTextDocumentLayout::PaintContext& context1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -12538,7 +12538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::drawInlineObject(QPainter* painter0, const QRectF& rect1, QTextInlineObject object2, int posInDocument3, const QTextFormat& format4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -12557,7 +12557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTextDocumentLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12587,7 +12587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTextDocumentLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12617,7 +12617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QAbstractTextDocumentLayout::frameBoundingRect(QTextFrame* frame0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -12647,7 +12647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTextDocumentLayout::hitTest(const QPointF& point0, Qt::HitTestAccuracy accuracy1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -12677,7 +12677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTextDocumentLayout::pageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12707,7 +12707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::positionInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -12726,7 +12726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::resizeInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -12745,7 +12745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12921,7 +12921,7 @@ PythonQtShell_QAction::~PythonQtShell_QAction() { void PythonQtShell_QAction::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12940,7 +12940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAction::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12959,7 +12959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAction::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12989,7 +12989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAction::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13019,7 +13019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAction::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13312,7 +13312,7 @@ PythonQtShell_QActionGroup::~PythonQtShell_QActionGroup() { void PythonQtShell_QActionGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13331,7 +13331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QActionGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13350,7 +13350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QActionGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13380,7 +13380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QActionGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13410,7 +13410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QActionGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13782,7 +13782,7 @@ PythonQtShell_QBoxLayout::~PythonQtShell_QBoxLayout() { void PythonQtShell_QBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -13801,7 +13801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13820,7 +13820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -13850,7 +13850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13880,7 +13880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13899,7 +13899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13929,7 +13929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13959,7 +13959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -13989,7 +13989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -14019,7 +14019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -14049,7 +14049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14068,7 +14068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14098,7 +14098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -14128,7 +14128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -14158,7 +14158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14188,7 +14188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14218,7 +14218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -14237,7 +14237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -14267,7 +14267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14461,7 +14461,7 @@ PythonQtShell_QButtonGroup::~PythonQtShell_QButtonGroup() { void PythonQtShell_QButtonGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14480,7 +14480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QButtonGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14499,7 +14499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QButtonGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14529,7 +14529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QButtonGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14559,7 +14559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QButtonGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14638,7 +14638,7 @@ PythonQtShell_QCalendarWidget::~PythonQtShell_QCalendarWidget() { void PythonQtShell_QCalendarWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14657,7 +14657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14676,7 +14676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14695,7 +14695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14714,7 +14714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14733,7 +14733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14752,7 +14752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14782,7 +14782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14801,7 +14801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14820,7 +14820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14839,7 +14839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14858,7 +14858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14877,7 +14877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14907,7 +14907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14937,7 +14937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14956,7 +14956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14986,7 +14986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15005,7 +15005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15035,7 +15035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15065,7 +15065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15084,7 +15084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15103,7 +15103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15122,7 +15122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCalendarWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15152,7 +15152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15171,7 +15171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15190,7 +15190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15209,7 +15209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15239,7 +15239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCalendarWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15269,7 +15269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15288,7 +15288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15307,7 +15307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15326,7 +15326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15345,7 +15345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15364,7 +15364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15394,7 +15394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::paintCell(QPainter* painter0, const QRect& rect1, const QDate& date2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintCell"); + static PyObject* name = PyUnicode_FromString("paintCell"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QDate&"}; @@ -15413,7 +15413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCalendarWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15443,7 +15443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15462,7 +15462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCalendarWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15492,7 +15492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15511,7 +15511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCalendarWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15541,7 +15541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15560,7 +15560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCalendarWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15590,7 +15590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15609,7 +15609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15628,7 +15628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15847,7 +15847,7 @@ PythonQtShell_QCheckBox::~PythonQtShell_QCheckBox() { void PythonQtShell_QCheckBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15866,7 +15866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15885,7 +15885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15904,7 +15904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15923,7 +15923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15942,7 +15942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15961,7 +15961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15980,7 +15980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16010,7 +16010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16029,7 +16029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16048,7 +16048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16067,7 +16067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16086,7 +16086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16105,7 +16105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16135,7 +16135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16165,7 +16165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16184,7 +16184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16214,7 +16214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16233,7 +16233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16263,7 +16263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16293,7 +16293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16312,7 +16312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -16342,7 +16342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16361,7 +16361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16380,7 +16380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCheckBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16410,7 +16410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16429,7 +16429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16448,7 +16448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16467,7 +16467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16497,7 +16497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16516,7 +16516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16535,7 +16535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16554,7 +16554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16573,7 +16573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16592,7 +16592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16622,7 +16622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16641,7 +16641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCheckBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16671,7 +16671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16690,7 +16690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCheckBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16720,7 +16720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16739,7 +16739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCheckBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16769,7 +16769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16788,7 +16788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16807,7 +16807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16826,7 +16826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17007,7 +17007,7 @@ PythonQtShell_QColorDialog::~PythonQtShell_QColorDialog() { void PythonQtShell_QColorDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17026,7 +17026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17045,7 +17045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17064,7 +17064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17083,7 +17083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17102,7 +17102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17121,7 +17121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17140,7 +17140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17170,7 +17170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17189,7 +17189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17208,7 +17208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17227,7 +17227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17246,7 +17246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17265,7 +17265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17284,7 +17284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17314,7 +17314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17344,7 +17344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17374,7 +17374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17393,7 +17393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17423,7 +17423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17442,7 +17442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17472,7 +17472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17502,7 +17502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17521,7 +17521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17540,7 +17540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17559,7 +17559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QColorDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17589,7 +17589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17608,7 +17608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17627,7 +17627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17646,7 +17646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17676,7 +17676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17695,7 +17695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17714,7 +17714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17733,7 +17733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17752,7 +17752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17771,7 +17771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17801,7 +17801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17820,7 +17820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QColorDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17850,7 +17850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17869,7 +17869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QColorDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17899,7 +17899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17918,7 +17918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17937,7 +17937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QColorDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17967,7 +17967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17986,7 +17986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18005,7 +18005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18024,7 +18024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -18152,7 +18152,7 @@ PythonQtShell_QColumnView::~PythonQtShell_QColumnView() { void PythonQtShell_QColumnView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18171,7 +18171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18190,7 +18190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18209,7 +18209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -18228,7 +18228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18247,7 +18247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -18266,7 +18266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18285,7 +18285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractItemView* PythonQtShell_QColumnView::createColumn(const QModelIndex& rootIndex0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createColumn"); + static PyObject* name = PyUnicode_FromString("createColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractItemView*" , "const QModelIndex&"}; @@ -18315,7 +18315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -18334,7 +18334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18353,7 +18353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -18372,7 +18372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18402,7 +18402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18421,7 +18421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -18440,7 +18440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -18459,7 +18459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -18478,7 +18478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -18497,7 +18497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -18527,7 +18527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -18546,7 +18546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18565,7 +18565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -18595,7 +18595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -18625,7 +18625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18644,7 +18644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18674,7 +18674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18693,7 +18693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18723,7 +18723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18753,7 +18753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18772,7 +18772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18802,7 +18802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18821,7 +18821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18840,7 +18840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QColumnView::indexAt(const QPoint& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -18870,7 +18870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18889,7 +18889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18908,7 +18908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QColumnView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18938,7 +18938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -18968,7 +18968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18987,7 +18987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19006,7 +19006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -19025,7 +19025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19044,7 +19044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19074,7 +19074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19093,7 +19093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19112,7 +19112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19131,7 +19131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19150,7 +19150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19169,7 +19169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19199,7 +19199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QColumnView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19229,7 +19229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19248,7 +19248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QColumnView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19278,7 +19278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19297,7 +19297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19316,7 +19316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -19335,7 +19335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -19354,7 +19354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -19373,7 +19373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -19392,7 +19392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19411,7 +19411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QColumnView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -19441,7 +19441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -19460,7 +19460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QColumnView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -19490,7 +19490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -19509,7 +19509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -19528,7 +19528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -19547,7 +19547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -19566,7 +19566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -19585,7 +19585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QColumnView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19615,7 +19615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19634,7 +19634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19664,7 +19664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19694,7 +19694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -19713,7 +19713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -19732,7 +19732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -19751,7 +19751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19770,7 +19770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19789,7 +19789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19808,7 +19808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19838,7 +19838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19857,7 +19857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19876,7 +19876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QColumnView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -19906,7 +19906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19936,7 +19936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QColumnView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19966,7 +19966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QColumnView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -19996,7 +19996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QColumnView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -20026,7 +20026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -20185,7 +20185,7 @@ PythonQtShell_QComboBox::~PythonQtShell_QComboBox() { void PythonQtShell_QComboBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -20204,7 +20204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20223,7 +20223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20242,7 +20242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -20261,7 +20261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -20280,7 +20280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20299,7 +20299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20329,7 +20329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -20348,7 +20348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -20367,7 +20367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -20386,7 +20386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -20405,7 +20405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20424,7 +20424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20454,7 +20454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -20484,7 +20484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20503,7 +20503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -20533,7 +20533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20552,7 +20552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -20582,7 +20582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20612,7 +20612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::hideEvent(QHideEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -20631,7 +20631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::hidePopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20650,7 +20650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -20669,7 +20669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -20688,7 +20688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -20718,7 +20718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -20737,7 +20737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -20756,7 +20756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20775,7 +20775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -20805,7 +20805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20824,7 +20824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20843,7 +20843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20862,7 +20862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -20881,7 +20881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -20900,7 +20900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -20930,7 +20930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QComboBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -20960,7 +20960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -20979,7 +20979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QComboBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -21009,7 +21009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -21028,7 +21028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QComboBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -21058,7 +21058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -21077,7 +21077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::showPopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21096,7 +21096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -21115,7 +21115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -21134,7 +21134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -21538,7 +21538,7 @@ PythonQtShell_QCommandLinkButton::~PythonQtShell_QCommandLinkButton() { void PythonQtShell_QCommandLinkButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -21557,7 +21557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21576,7 +21576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21595,7 +21595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -21614,7 +21614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -21633,7 +21633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -21652,7 +21652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21671,7 +21671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -21701,7 +21701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -21720,7 +21720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -21739,7 +21739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -21758,7 +21758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -21777,7 +21777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21796,7 +21796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -21826,7 +21826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -21856,7 +21856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -21875,7 +21875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -21905,7 +21905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -21924,7 +21924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -21954,7 +21954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -21984,7 +21984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -22003,7 +22003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -22033,7 +22033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -22052,7 +22052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -22071,7 +22071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCommandLinkButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -22101,7 +22101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -22120,7 +22120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -22139,7 +22139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22158,7 +22158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -22188,7 +22188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22207,7 +22207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22226,7 +22226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22245,7 +22245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -22264,7 +22264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -22283,7 +22283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -22313,7 +22313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22332,7 +22332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCommandLinkButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -22362,7 +22362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -22381,7 +22381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCommandLinkButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -22411,7 +22411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -22430,7 +22430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCommandLinkButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -22460,7 +22460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -22479,7 +22479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -22498,7 +22498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -22517,7 +22517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -22589,7 +22589,7 @@ PythonQtShell_QCommonStyle::~PythonQtShell_QCommonStyle() { void PythonQtShell_QCommonStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -22608,7 +22608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22627,7 +22627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -22646,7 +22646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -22665,7 +22665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -22684,7 +22684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -22703,7 +22703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -22722,7 +22722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommonStyle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22752,7 +22752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommonStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -22782,7 +22782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -22812,7 +22812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, const QPoint& pt2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -22842,7 +22842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -22872,7 +22872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -22902,7 +22902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::pixelMetric(QStyle::PixelMetric m0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -22932,7 +22932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -22951,7 +22951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QPalette& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -22970,7 +22970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -22989,7 +22989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCommonStyle::sizeFromContents(QStyle::ContentsType ct0, const QStyleOption* opt1, const QSize& contentsSize2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -23019,7 +23019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QCommonStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -23049,7 +23049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QCommonStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -23079,7 +23079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QCommonStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -23109,7 +23109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::styleHint(QStyle::StyleHint sh0, const QStyleOption* opt1, const QWidget* w2, QStyleHintReturn* shret3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -23139,7 +23139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -23169,7 +23169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::subElementRect(QStyle::SubElement r0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -23199,7 +23199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -23218,7 +23218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::unpolish(QApplication* application0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -23237,7 +23237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::unpolish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp index 0b7e287a0..8abd2432e 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp @@ -84,7 +84,7 @@ PythonQtShell_QCompleter::~PythonQtShell_QCompleter() { void PythonQtShell_QCompleter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCompleter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -122,7 +122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCompleter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -152,7 +152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCompleter::eventFilter(QObject* o0, QEvent* e1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QCompleter::pathFromIndex(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pathFromIndex"); + static PyObject* name = PyUnicode_FromString("pathFromIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QModelIndex&"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QCompleter::splitPath(const QString& path0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("splitPath"); + static PyObject* name = PyUnicode_FromString("splitPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "const QString&"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCompleter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -531,7 +531,7 @@ PythonQtShell_QDataWidgetMapper::~PythonQtShell_QDataWidgetMapper() { void PythonQtShell_QDataWidgetMapper::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -569,7 +569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDataWidgetMapper::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -599,7 +599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDataWidgetMapper::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -629,7 +629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::setCurrentIndex(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -648,7 +648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -772,7 +772,7 @@ PythonQtShell_QDateEdit::~PythonQtShell_QDateEdit() { void PythonQtShell_QDateEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -791,7 +791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -810,7 +810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -829,7 +829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -848,7 +848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -867,7 +867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -886,7 +886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -905,7 +905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QDateEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -935,7 +935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -965,7 +965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -984,7 +984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1003,7 +1003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1022,7 +1022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1041,7 +1041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1060,7 +1060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1090,7 +1090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1120,7 +1120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -1139,7 +1139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1158,7 +1158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1188,7 +1188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1207,7 +1207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1237,7 +1237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1267,7 +1267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1286,7 +1286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1305,7 +1305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1324,7 +1324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDateEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1354,7 +1354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1373,7 +1373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1392,7 +1392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1411,7 +1411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1441,7 +1441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1460,7 +1460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1479,7 +1479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1498,7 +1498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1517,7 +1517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1536,7 +1536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1566,7 +1566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDateEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1596,7 +1596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1615,7 +1615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDateEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1645,7 +1645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1664,7 +1664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDateEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1694,7 +1694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1713,7 +1713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1732,7 +1732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDateEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -1762,7 +1762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1781,7 +1781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDateEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -1811,7 +1811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1830,7 +1830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDateEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1893,7 +1893,7 @@ PythonQtShell_QDateTimeEdit::~PythonQtShell_QDateTimeEdit() { void PythonQtShell_QDateTimeEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1912,7 +1912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1931,7 +1931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1950,7 +1950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1969,7 +1969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1988,7 +1988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2007,7 +2007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2026,7 +2026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QDateTimeEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -2056,7 +2056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2086,7 +2086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2105,7 +2105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2124,7 +2124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2143,7 +2143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2162,7 +2162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2181,7 +2181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2211,7 +2211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2241,7 +2241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2260,7 +2260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2279,7 +2279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2309,7 +2309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2328,7 +2328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2358,7 +2358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2388,7 +2388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2407,7 +2407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2426,7 +2426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2445,7 +2445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDateTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2475,7 +2475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2494,7 +2494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2513,7 +2513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2532,7 +2532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2562,7 +2562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2581,7 +2581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2600,7 +2600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2619,7 +2619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2638,7 +2638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2657,7 +2657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2687,7 +2687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDateTimeEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2717,7 +2717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2736,7 +2736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDateTimeEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2766,7 +2766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2785,7 +2785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDateTimeEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2815,7 +2815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2834,7 +2834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2853,7 +2853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDateTimeEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -2883,7 +2883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2902,7 +2902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDateTimeEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2932,7 +2932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2951,7 +2951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDateTimeEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2981,7 +2981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3336,7 +3336,7 @@ PythonQtShell_QDesktopWidget::~PythonQtShell_QDesktopWidget() { void PythonQtShell_QDesktopWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3355,7 +3355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3374,7 +3374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3393,7 +3393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3412,7 +3412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3431,7 +3431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3450,7 +3450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3480,7 +3480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3499,7 +3499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3518,7 +3518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3537,7 +3537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3556,7 +3556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3575,7 +3575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3605,7 +3605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3635,7 +3635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3654,7 +3654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3684,7 +3684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3703,7 +3703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3733,7 +3733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3763,7 +3763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3782,7 +3782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3801,7 +3801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3820,7 +3820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDesktopWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3850,7 +3850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3869,7 +3869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3888,7 +3888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3907,7 +3907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3937,7 +3937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDesktopWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3967,7 +3967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3986,7 +3986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4005,7 +4005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4024,7 +4024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4043,7 +4043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4062,7 +4062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4092,7 +4092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDesktopWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4122,7 +4122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4141,7 +4141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDesktopWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4171,7 +4171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4190,7 +4190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDesktopWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4220,7 +4220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4239,7 +4239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDesktopWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4269,7 +4269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4288,7 +4288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4307,7 +4307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4406,7 +4406,7 @@ PythonQtShell_QDial::~PythonQtShell_QDial() { void PythonQtShell_QDial::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4425,7 +4425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4444,7 +4444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4463,7 +4463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4482,7 +4482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4501,7 +4501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4520,7 +4520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4550,7 +4550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4569,7 +4569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4588,7 +4588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4607,7 +4607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4626,7 +4626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4645,7 +4645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4675,7 +4675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4705,7 +4705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4724,7 +4724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4754,7 +4754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4773,7 +4773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4803,7 +4803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4833,7 +4833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4852,7 +4852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4871,7 +4871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4890,7 +4890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDial::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4920,7 +4920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4939,7 +4939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4958,7 +4958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4977,7 +4977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5007,7 +5007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5026,7 +5026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseMoveEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5045,7 +5045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mousePressEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5064,7 +5064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseReleaseEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5083,7 +5083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5102,7 +5102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5132,7 +5132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDial::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5162,7 +5162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::paintEvent(QPaintEvent* pe0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5181,7 +5181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDial::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5211,7 +5211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::resizeEvent(QResizeEvent* re0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5230,7 +5230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDial::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5260,7 +5260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5279,7 +5279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5298,7 +5298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5317,7 +5317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5421,7 +5421,7 @@ PythonQtShell_QDialog::~PythonQtShell_QDialog() { void PythonQtShell_QDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5440,7 +5440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5459,7 +5459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5478,7 +5478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5497,7 +5497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5516,7 +5516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5535,7 +5535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5554,7 +5554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5584,7 +5584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5603,7 +5603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5622,7 +5622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5641,7 +5641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5660,7 +5660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5679,7 +5679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5698,7 +5698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5728,7 +5728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5758,7 +5758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5788,7 +5788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5807,7 +5807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5837,7 +5837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5856,7 +5856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5886,7 +5886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5916,7 +5916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5935,7 +5935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5954,7 +5954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5973,7 +5973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6003,7 +6003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6022,7 +6022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6041,7 +6041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6060,7 +6060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6090,7 +6090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6109,7 +6109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6128,7 +6128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6147,7 +6147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6166,7 +6166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6185,7 +6185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6215,7 +6215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6234,7 +6234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6264,7 +6264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6283,7 +6283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6313,7 +6313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6332,7 +6332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6351,7 +6351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6381,7 +6381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6400,7 +6400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6419,7 +6419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6438,7 +6438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6567,7 +6567,7 @@ PythonQtShell_QDialogButtonBox::~PythonQtShell_QDialogButtonBox() { void PythonQtShell_QDialogButtonBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6586,7 +6586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6605,7 +6605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6624,7 +6624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6643,7 +6643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6662,7 +6662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6681,7 +6681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6711,7 +6711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6730,7 +6730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6749,7 +6749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6768,7 +6768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6787,7 +6787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6806,7 +6806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6836,7 +6836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6866,7 +6866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6885,7 +6885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6915,7 +6915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6934,7 +6934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6964,7 +6964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6994,7 +6994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7013,7 +7013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7032,7 +7032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7051,7 +7051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDialogButtonBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7081,7 +7081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7100,7 +7100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7119,7 +7119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7138,7 +7138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7168,7 +7168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDialogButtonBox::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7198,7 +7198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7217,7 +7217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7236,7 +7236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7255,7 +7255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7274,7 +7274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7293,7 +7293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7323,7 +7323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDialogButtonBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7353,7 +7353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7372,7 +7372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDialogButtonBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7402,7 +7402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7421,7 +7421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDialogButtonBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7451,7 +7451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7470,7 +7470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDialogButtonBox::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7500,7 +7500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7519,7 +7519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7538,7 +7538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7664,7 +7664,7 @@ PythonQtShell_QDirModel::~PythonQtShell_QDirModel() { QModelIndex PythonQtShell_QDirModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7694,7 +7694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7724,7 +7724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7754,7 +7754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7773,7 +7773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDirModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7803,7 +7803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7822,7 +7822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDirModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -7852,7 +7852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7882,7 +7882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7912,7 +7912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7942,7 +7942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7961,7 +7961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QDirModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -7991,7 +7991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::hasChildren(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8021,7 +8021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDirModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -8051,7 +8051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8081,7 +8081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8111,7 +8111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8141,7 +8141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QDirModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -8171,7 +8171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QDirModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -8201,7 +8201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QDirModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -8231,7 +8231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QDirModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -8261,7 +8261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -8291,7 +8291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -8321,7 +8321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8351,7 +8351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8381,7 +8381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8411,7 +8411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8430,7 +8430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QDirModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -8460,7 +8460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDirModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -8490,7 +8490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -8520,7 +8520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -8550,7 +8550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -8580,7 +8580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8610,7 +8610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -8629,7 +8629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDirModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -8659,7 +8659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8689,7 +8689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QDirModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8719,7 +8719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QDirModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8749,7 +8749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8967,7 +8967,7 @@ PythonQtShell_QDockWidget::~PythonQtShell_QDockWidget() { void PythonQtShell_QDockWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8986,7 +8986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9005,7 +9005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9024,7 +9024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9043,7 +9043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9062,7 +9062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9081,7 +9081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9111,7 +9111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9130,7 +9130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9149,7 +9149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9168,7 +9168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9187,7 +9187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9206,7 +9206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9236,7 +9236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9266,7 +9266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9285,7 +9285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9315,7 +9315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9334,7 +9334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9364,7 +9364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9394,7 +9394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9413,7 +9413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9432,7 +9432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9451,7 +9451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDockWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9481,7 +9481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9500,7 +9500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9519,7 +9519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9538,7 +9538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9568,7 +9568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDockWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9598,7 +9598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9617,7 +9617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9636,7 +9636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9655,7 +9655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9674,7 +9674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9693,7 +9693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9723,7 +9723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDockWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9753,7 +9753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9772,7 +9772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDockWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9802,7 +9802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9821,7 +9821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDockWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9851,7 +9851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9870,7 +9870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDockWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9900,7 +9900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9919,7 +9919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9938,7 +9938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10056,7 +10056,7 @@ PythonQtShell_QDoubleSpinBox::~PythonQtShell_QDoubleSpinBox() { void PythonQtShell_QDoubleSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10075,7 +10075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10094,7 +10094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10113,7 +10113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10132,7 +10132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10151,7 +10151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10170,7 +10170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10189,7 +10189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10219,7 +10219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10238,7 +10238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10257,7 +10257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10276,7 +10276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10295,7 +10295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10314,7 +10314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10344,7 +10344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10374,7 +10374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::fixup(QString& str0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -10393,7 +10393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10412,7 +10412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10442,7 +10442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10461,7 +10461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10491,7 +10491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10521,7 +10521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10540,7 +10540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10559,7 +10559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10578,7 +10578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDoubleSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10608,7 +10608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10627,7 +10627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10646,7 +10646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10665,7 +10665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10695,7 +10695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10714,7 +10714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10733,7 +10733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10752,7 +10752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10771,7 +10771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10790,7 +10790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10820,7 +10820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDoubleSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10850,7 +10850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10869,7 +10869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDoubleSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10899,7 +10899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10918,7 +10918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDoubleSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10948,7 +10948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10967,7 +10967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10986,7 +10986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDoubleSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -11016,7 +11016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11035,7 +11035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDoubleSpinBox::textFromValue(double val0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "double"}; @@ -11065,7 +11065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11084,7 +11084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDoubleSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11114,7 +11114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { double PythonQtShell_QDoubleSpinBox::valueFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"double" , "const QString&"}; @@ -11144,7 +11144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11268,7 +11268,7 @@ PythonQtShell_QDoubleValidator::~PythonQtShell_QDoubleValidator() { void PythonQtShell_QDoubleValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11287,7 +11287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11306,7 +11306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11336,7 +11336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11366,7 +11366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11385,7 +11385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::setRange(double bottom0, double top1, int decimals2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "double" , "double" , "int"}; @@ -11404,7 +11404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11423,7 +11423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDoubleValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11517,7 +11517,7 @@ PythonQtShell_QDrag::~PythonQtShell_QDrag() { void PythonQtShell_QDrag::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11536,7 +11536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDrag::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11555,7 +11555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDrag::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11585,7 +11585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDrag::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11615,7 +11615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDrag::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11871,7 +11871,7 @@ PythonQtShell_QErrorMessage::~PythonQtShell_QErrorMessage() { void PythonQtShell_QErrorMessage::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11890,7 +11890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11909,7 +11909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11928,7 +11928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11947,7 +11947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11966,7 +11966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11985,7 +11985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12004,7 +12004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12034,7 +12034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12053,7 +12053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12072,7 +12072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12091,7 +12091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12110,7 +12110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12129,7 +12129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12148,7 +12148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12178,7 +12178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12208,7 +12208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12238,7 +12238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12257,7 +12257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12287,7 +12287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12306,7 +12306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12336,7 +12336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12366,7 +12366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12385,7 +12385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12404,7 +12404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12423,7 +12423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QErrorMessage::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12453,7 +12453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12472,7 +12472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12491,7 +12491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12510,7 +12510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12540,7 +12540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12559,7 +12559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12578,7 +12578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12597,7 +12597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12616,7 +12616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12635,7 +12635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12665,7 +12665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12684,7 +12684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QErrorMessage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12714,7 +12714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12733,7 +12733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QErrorMessage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12763,7 +12763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12782,7 +12782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12801,7 +12801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QErrorMessage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12831,7 +12831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12850,7 +12850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12869,7 +12869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12888,7 +12888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12947,7 +12947,7 @@ PythonQtShell_QFileDialog::~PythonQtShell_QFileDialog() { void PythonQtShell_QFileDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12966,7 +12966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12985,7 +12985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13004,7 +13004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13023,7 +13023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13042,7 +13042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13061,7 +13061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13080,7 +13080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13110,7 +13110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13129,7 +13129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13148,7 +13148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13167,7 +13167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13186,7 +13186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13205,7 +13205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13224,7 +13224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13254,7 +13254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13284,7 +13284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13314,7 +13314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13333,7 +13333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13363,7 +13363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13382,7 +13382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13412,7 +13412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13442,7 +13442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13461,7 +13461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13480,7 +13480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13499,7 +13499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13529,7 +13529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13548,7 +13548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13567,7 +13567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13586,7 +13586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13616,7 +13616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13635,7 +13635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13654,7 +13654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13673,7 +13673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13692,7 +13692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13711,7 +13711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13741,7 +13741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13760,7 +13760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFileDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13790,7 +13790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13809,7 +13809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFileDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13839,7 +13839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13858,7 +13858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13877,7 +13877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFileDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13907,7 +13907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13926,7 +13926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13945,7 +13945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13964,7 +13964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14332,7 +14332,7 @@ PythonQtShell_QFileIconProvider::~PythonQtShell_QFileIconProvider() { QIcon PythonQtShell_QFileIconProvider::icon(QFileIconProvider::IconType type0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QFileIconProvider::IconType"}; @@ -14362,7 +14362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QFileIconProvider::icon(const QFileInfo& info0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "const QFileInfo&"}; @@ -14392,7 +14392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFileIconProvider::type(const QFileInfo& info0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QFileInfo&"}; @@ -14482,7 +14482,7 @@ PythonQtShell_QFileSystemModel::~PythonQtShell_QFileSystemModel() { QModelIndex PythonQtShell_QFileSystemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -14512,7 +14512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14542,7 +14542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14572,7 +14572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14591,7 +14591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileSystemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -14621,7 +14621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14640,7 +14640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileSystemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -14670,7 +14670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14700,7 +14700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14730,7 +14730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14760,7 +14760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14779,7 +14779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QFileSystemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -14809,7 +14809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14839,7 +14839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileSystemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -14869,7 +14869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14899,7 +14899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14929,7 +14929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14959,7 +14959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QFileSystemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -14989,7 +14989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QFileSystemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -15019,7 +15019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QFileSystemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -15049,7 +15049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QFileSystemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -15079,7 +15079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15109,7 +15109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15139,7 +15139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -15169,7 +15169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15199,7 +15199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15229,7 +15229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15248,7 +15248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QFileSystemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -15278,7 +15278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileSystemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -15308,7 +15308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -15338,7 +15338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -15368,7 +15368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -15398,7 +15398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15428,7 +15428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -15447,7 +15447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFileSystemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -15477,7 +15477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15507,7 +15507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QFileSystemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15537,7 +15537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QFileSystemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15567,7 +15567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15847,7 +15847,7 @@ PythonQtShell_QFocusFrame::~PythonQtShell_QFocusFrame() { void PythonQtShell_QFocusFrame::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15866,7 +15866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15885,7 +15885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15904,7 +15904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15923,7 +15923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15942,7 +15942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15961,7 +15961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15991,7 +15991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16010,7 +16010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16029,7 +16029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16048,7 +16048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16067,7 +16067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16086,7 +16086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16116,7 +16116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16146,7 +16146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16165,7 +16165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16195,7 +16195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16214,7 +16214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16244,7 +16244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16274,7 +16274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16293,7 +16293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16312,7 +16312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16331,7 +16331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFocusFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16361,7 +16361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16380,7 +16380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16399,7 +16399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16418,7 +16418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16448,7 +16448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFocusFrame::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16478,7 +16478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16497,7 +16497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16516,7 +16516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16535,7 +16535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16554,7 +16554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16573,7 +16573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16603,7 +16603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFocusFrame::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16633,7 +16633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16652,7 +16652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFocusFrame::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16682,7 +16682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16701,7 +16701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFocusFrame::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16731,7 +16731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16750,7 +16750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFocusFrame::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16780,7 +16780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16799,7 +16799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16818,7 +16818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16877,7 +16877,7 @@ PythonQtShell_QFontComboBox::~PythonQtShell_QFontComboBox() { void PythonQtShell_QFontComboBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16896,7 +16896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16915,7 +16915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16934,7 +16934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16953,7 +16953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16972,7 +16972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16991,7 +16991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17021,7 +17021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17040,7 +17040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17059,7 +17059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17078,7 +17078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17097,7 +17097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17116,7 +17116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17146,7 +17146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17176,7 +17176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17195,7 +17195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17225,7 +17225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17244,7 +17244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17274,7 +17274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17304,7 +17304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::hideEvent(QHideEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17323,7 +17323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::hidePopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17342,7 +17342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17361,7 +17361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17380,7 +17380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFontComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17410,7 +17410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17429,7 +17429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17448,7 +17448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17467,7 +17467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17497,7 +17497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17516,7 +17516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17535,7 +17535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17554,7 +17554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17573,7 +17573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17592,7 +17592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17622,7 +17622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFontComboBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17652,7 +17652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17671,7 +17671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFontComboBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17701,7 +17701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17720,7 +17720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFontComboBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17750,7 +17750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17769,7 +17769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::showPopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17788,7 +17788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17807,7 +17807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17826,7 +17826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp index f021d5a4b..cdab0b87a 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp @@ -86,7 +86,7 @@ PythonQtShell_QTableWidget::~PythonQtShell_QTableWidget() { void PythonQtShell_QTableWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -124,7 +124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -143,7 +143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -162,7 +162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -181,7 +181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -200,7 +200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -219,7 +219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -238,7 +238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -257,7 +257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -276,7 +276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -306,7 +306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -325,7 +325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -344,7 +344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -363,7 +363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -382,7 +382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -401,7 +401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::dropMimeData(int row0, int column1, const QMimeData* data2, Qt::DropAction action3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -431,7 +431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -461,7 +461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -480,7 +480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -499,7 +499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -529,7 +529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -559,7 +559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -578,7 +578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -608,7 +608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -627,7 +627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -657,7 +657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -687,7 +687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -706,7 +706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -736,7 +736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -755,7 +755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -774,7 +774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTableWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -804,7 +804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -823,7 +823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -872,7 +872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -902,7 +902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -921,7 +921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -940,7 +940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -959,7 +959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -978,7 +978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1008,7 +1008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTableWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -1038,7 +1038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QTableWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1068,7 +1068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1087,7 +1087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1106,7 +1106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1125,7 +1125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1144,7 +1144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1163,7 +1163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1193,7 +1193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTableWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1223,7 +1223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1242,7 +1242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTableWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1272,7 +1272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1291,7 +1291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1310,7 +1310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1329,7 +1329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1348,7 +1348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1367,7 +1367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -1386,7 +1386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1405,7 +1405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTableWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1435,7 +1435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -1454,7 +1454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTableWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -1484,7 +1484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1503,7 +1503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -1522,7 +1522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -1541,7 +1541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1560,7 +1560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTableWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1590,7 +1590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1609,7 +1609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1639,7 +1639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1669,7 +1669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -1688,7 +1688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QTableWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1718,7 +1718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1737,7 +1737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1756,7 +1756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1775,7 +1775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1794,7 +1794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1813,7 +1813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1843,7 +1843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1862,7 +1862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1881,7 +1881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTableWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -1911,7 +1911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1941,7 +1941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTableWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1971,7 +1971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTableWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -2001,7 +2001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTableWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -2031,7 +2031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2314,7 +2314,7 @@ PythonQtShell_QTableWidgetItem::~PythonQtShell_QTableWidgetItem() { QTableWidgetItem* PythonQtShell_QTableWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTableWidgetItem*"}; @@ -2344,7 +2344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableWidgetItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -2374,7 +2374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidgetItem::__lt__(const QTableWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QTableWidgetItem&"}; @@ -2404,7 +2404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -2423,7 +2423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::setData(int role0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -2442,7 +2442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -2803,7 +2803,7 @@ PythonQtShell_QTapAndHoldGesture::~PythonQtShell_QTapAndHoldGesture() { void PythonQtShell_QTapAndHoldGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2822,7 +2822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapAndHoldGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2841,7 +2841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapAndHoldGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2871,7 +2871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapAndHoldGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2901,7 +2901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapAndHoldGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2950,7 +2950,7 @@ PythonQtShell_QTapGesture::~PythonQtShell_QTapGesture() { void PythonQtShell_QTapGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2969,7 +2969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2988,7 +2988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3018,7 +3018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3048,7 +3048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3411,7 +3411,7 @@ PythonQtShell_QTextBlockGroup::~PythonQtShell_QTextBlockGroup() { void PythonQtShell_QTextBlockGroup::blockFormatChanged(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -3430,7 +3430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::blockInserted(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -3449,7 +3449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::blockRemoved(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -3468,7 +3468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3487,7 +3487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3506,7 +3506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBlockGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBlockGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3625,7 +3625,7 @@ PythonQtShell_QTextBrowser::~PythonQtShell_QTextBrowser() { void PythonQtShell_QTextBrowser::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3644,7 +3644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::backward() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("backward"); + static PyObject* name = PyUnicode_FromString("backward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3663,7 +3663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -3693,7 +3693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3712,7 +3712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3731,7 +3731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3750,7 +3750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3769,7 +3769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTextBrowser::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -3799,7 +3799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3848,7 +3848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -3867,7 +3867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3886,7 +3886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3924,7 +3924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3943,7 +3943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3962,7 +3962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3992,7 +3992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4022,7 +4022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4041,7 +4041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4071,7 +4071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::focusOutEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4090,7 +4090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::forward() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("forward"); + static PyObject* name = PyUnicode_FromString("forward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4109,7 +4109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4139,7 +4139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4169,7 +4169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4188,7 +4188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::home() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("home"); + static PyObject* name = PyUnicode_FromString("home"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4207,7 +4207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4226,7 +4226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4245,7 +4245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextBrowser::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4275,7 +4275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -4294,7 +4294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4313,7 +4313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4332,7 +4332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4351,7 +4351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextBrowser::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -4381,7 +4381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4411,7 +4411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4430,7 +4430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4449,7 +4449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4468,7 +4468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4487,7 +4487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4506,7 +4506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4536,7 +4536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTextBrowser::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4566,7 +4566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4585,7 +4585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTextBrowser::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4615,7 +4615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::reload() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reload"); + static PyObject* name = PyUnicode_FromString("reload"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4634,7 +4634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4653,7 +4653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4672,7 +4672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::setSource(const QUrl& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSource"); + static PyObject* name = PyUnicode_FromString("setSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&"}; @@ -4691,7 +4691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4710,7 +4710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTextBrowser::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4740,7 +4740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4759,7 +4759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4778,7 +4778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4797,7 +4797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4827,7 +4827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTextBrowser::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4857,7 +4857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5712,7 +5712,7 @@ PythonQtShell_QTextDocument::~PythonQtShell_QTextDocument() { void PythonQtShell_QTextDocument::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5731,7 +5731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5750,7 +5750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QTextObject* PythonQtShell_QTextDocument::createObject(const QTextFormat& f0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTextObject*" , "const QTextFormat&"}; @@ -5780,7 +5780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5799,7 +5799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextDocument::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5829,7 +5829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextDocument::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5859,7 +5859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextDocument::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -5889,7 +5889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6414,7 +6414,7 @@ PythonQtShell_QTextEdit::~PythonQtShell_QTextEdit() { void PythonQtShell_QTextEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6433,7 +6433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -6463,7 +6463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6482,7 +6482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6501,7 +6501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6520,7 +6520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6539,7 +6539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTextEdit::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -6569,7 +6569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6588,7 +6588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6618,7 +6618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -6637,7 +6637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6656,7 +6656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6675,7 +6675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6694,7 +6694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6713,7 +6713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6732,7 +6732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6762,7 +6762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6792,7 +6792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6811,7 +6811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6841,7 +6841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6860,7 +6860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6890,7 +6890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6920,7 +6920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6939,7 +6939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6958,7 +6958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6977,7 +6977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextEdit::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7007,7 +7007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -7026,7 +7026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7045,7 +7045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7064,7 +7064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7083,7 +7083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextEdit::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -7113,7 +7113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7143,7 +7143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7162,7 +7162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7181,7 +7181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7200,7 +7200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7219,7 +7219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7238,7 +7238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7268,7 +7268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTextEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7298,7 +7298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7317,7 +7317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTextEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7347,7 +7347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7366,7 +7366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7385,7 +7385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7404,7 +7404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTextEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7434,7 +7434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7453,7 +7453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7472,7 +7472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7491,7 +7491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7521,7 +7521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTextEdit::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7551,7 +7551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8109,7 +8109,7 @@ PythonQtShell_QTextFrame::~PythonQtShell_QTextFrame() { void PythonQtShell_QTextFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8128,7 +8128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8147,7 +8147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextFrame::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8177,7 +8177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8207,7 +8207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8964,7 +8964,7 @@ PythonQtShell_QTextList::~PythonQtShell_QTextList() { void PythonQtShell_QTextList::blockFormatChanged(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -8983,7 +8983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::blockInserted(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -9002,7 +9002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::blockRemoved(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -9021,7 +9021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9040,7 +9040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9059,7 +9059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextList::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9089,7 +9089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextList::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9119,7 +9119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9252,7 +9252,7 @@ PythonQtShell_QTextObject::~PythonQtShell_QTextObject() { void PythonQtShell_QTextObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9271,7 +9271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9290,7 +9290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9320,7 +9320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9350,7 +9350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp index 22a348f7c..d64ac033b 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp @@ -208,7 +208,7 @@ PythonQtShell_QTextTable::~PythonQtShell_QTextTable() { void PythonQtShell_QTextTable::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -227,7 +227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextTable::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -246,7 +246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextTable::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -276,7 +276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextTable::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -306,7 +306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextTable::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -682,7 +682,7 @@ PythonQtShell_QTimeEdit::~PythonQtShell_QTimeEdit() { void PythonQtShell_QTimeEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -701,7 +701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -720,7 +720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -739,7 +739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -758,7 +758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -777,7 +777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -796,7 +796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -815,7 +815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QTimeEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -845,7 +845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -875,7 +875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -894,7 +894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -913,7 +913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -932,7 +932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -951,7 +951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -970,7 +970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1000,7 +1000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1030,7 +1030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -1049,7 +1049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1068,7 +1068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1098,7 +1098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1117,7 +1117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1147,7 +1147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1177,7 +1177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1196,7 +1196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1215,7 +1215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1234,7 +1234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1264,7 +1264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1283,7 +1283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1302,7 +1302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1321,7 +1321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1351,7 +1351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1370,7 +1370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1389,7 +1389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1408,7 +1408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1427,7 +1427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1446,7 +1446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1476,7 +1476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTimeEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1506,7 +1506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1525,7 +1525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTimeEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1555,7 +1555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1574,7 +1574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTimeEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1623,7 +1623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1642,7 +1642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QTimeEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -1672,7 +1672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1691,7 +1691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTimeEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -1721,7 +1721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QTimeEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1803,7 +1803,7 @@ PythonQtShell_QToolBar::~PythonQtShell_QToolBar() { void PythonQtShell_QToolBar::actionEvent(QActionEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1822,7 +1822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1841,7 +1841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1879,7 +1879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1898,7 +1898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1917,7 +1917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1947,7 +1947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1966,7 +1966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1985,7 +1985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2004,7 +2004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2023,7 +2023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2042,7 +2042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2072,7 +2072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2102,7 +2102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2121,7 +2121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2151,7 +2151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2170,7 +2170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2200,7 +2200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2230,7 +2230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2249,7 +2249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2268,7 +2268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2287,7 +2287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2317,7 +2317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2336,7 +2336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2355,7 +2355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2374,7 +2374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2404,7 +2404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2434,7 +2434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2453,7 +2453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2472,7 +2472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2491,7 +2491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2510,7 +2510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2529,7 +2529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2559,7 +2559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2589,7 +2589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2608,7 +2608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2638,7 +2638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2657,7 +2657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2687,7 +2687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2706,7 +2706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBar::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2736,7 +2736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2755,7 +2755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2774,7 +2774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2978,7 +2978,7 @@ PythonQtShell_QToolBox::~PythonQtShell_QToolBox() { void PythonQtShell_QToolBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2997,7 +2997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3016,7 +3016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3035,7 +3035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3054,7 +3054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3073,7 +3073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3092,7 +3092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3122,7 +3122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3141,7 +3141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3160,7 +3160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3179,7 +3179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3198,7 +3198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3217,7 +3217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3247,7 +3247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3277,7 +3277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3296,7 +3296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3326,7 +3326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3345,7 +3345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3375,7 +3375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3405,7 +3405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3424,7 +3424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3443,7 +3443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3462,7 +3462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3492,7 +3492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::itemInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemInserted"); + static PyObject* name = PyUnicode_FromString("itemInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3511,7 +3511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::itemRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemRemoved"); + static PyObject* name = PyUnicode_FromString("itemRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3530,7 +3530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3549,7 +3549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3568,7 +3568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3587,7 +3587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3617,7 +3617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBox::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3647,7 +3647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3666,7 +3666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3685,7 +3685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3704,7 +3704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3723,7 +3723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3742,7 +3742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3772,7 +3772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3802,7 +3802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3821,7 +3821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3851,7 +3851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3870,7 +3870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3900,7 +3900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3919,7 +3919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3938,7 +3938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3957,7 +3957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4101,7 +4101,7 @@ PythonQtShell_QToolButton::~PythonQtShell_QToolButton() { void PythonQtShell_QToolButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4120,7 +4120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4139,7 +4139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4158,7 +4158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4177,7 +4177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4196,7 +4196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4215,7 +4215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4234,7 +4234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4264,7 +4264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4283,7 +4283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4302,7 +4302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4321,7 +4321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4340,7 +4340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4359,7 +4359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4389,7 +4389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4419,7 +4419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4438,7 +4438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4468,7 +4468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4487,7 +4487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4517,7 +4517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4547,7 +4547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4566,7 +4566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -4596,7 +4596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4615,7 +4615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4634,7 +4634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4664,7 +4664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4683,7 +4683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4702,7 +4702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4721,7 +4721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4751,7 +4751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4770,7 +4770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4789,7 +4789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4808,7 +4808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4827,7 +4827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4846,7 +4846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4876,7 +4876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4895,7 +4895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4925,7 +4925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4944,7 +4944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4974,7 +4974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4993,7 +4993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5023,7 +5023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5042,7 +5042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5061,7 +5061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5080,7 +5080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5952,7 +5952,7 @@ PythonQtShell_QTreeView::~PythonQtShell_QTreeView() { void PythonQtShell_QTreeView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5971,7 +5971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5990,7 +5990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6009,7 +6009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -6028,7 +6028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6047,7 +6047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6066,7 +6066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6085,7 +6085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6104,7 +6104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6123,7 +6123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -6142,7 +6142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6172,7 +6172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6191,7 +6191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6210,7 +6210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6229,7 +6229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6248,7 +6248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::drawBranches(QPainter* painter0, const QRect& rect1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -6267,7 +6267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::drawRow(QPainter* painter0, const QStyleOptionViewItem& options1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -6286,7 +6286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6305,7 +6305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -6335,7 +6335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -6354,7 +6354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6373,7 +6373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6403,7 +6403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6433,7 +6433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6452,7 +6452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6482,7 +6482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6501,7 +6501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6531,7 +6531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6561,7 +6561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6580,7 +6580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6610,7 +6610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6629,7 +6629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6648,7 +6648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTreeView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -6678,7 +6678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6697,7 +6697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6716,7 +6716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6746,7 +6746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6776,7 +6776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6795,7 +6795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6814,7 +6814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6833,7 +6833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6852,7 +6852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6882,7 +6882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6901,7 +6901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6920,7 +6920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6939,7 +6939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6958,7 +6958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6977,7 +6977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7007,7 +7007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTreeView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7037,7 +7037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7056,7 +7056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTreeView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7086,7 +7086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7105,7 +7105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7124,7 +7124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7143,7 +7143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7162,7 +7162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7181,7 +7181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -7200,7 +7200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7219,7 +7219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTreeView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7249,7 +7249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -7268,7 +7268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTreeView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -7298,7 +7298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -7317,7 +7317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7336,7 +7336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -7355,7 +7355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -7374,7 +7374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7393,7 +7393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTreeView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7423,7 +7423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7442,7 +7442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7472,7 +7472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7502,7 +7502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -7521,7 +7521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7540,7 +7540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7559,7 +7559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7578,7 +7578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7597,7 +7597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7616,7 +7616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7646,7 +7646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7665,7 +7665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7684,7 +7684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTreeView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -7714,7 +7714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7744,7 +7744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTreeView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7774,7 +7774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTreeView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -7804,7 +7804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTreeView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -7834,7 +7834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8273,7 +8273,7 @@ PythonQtShell_QTreeWidget::~PythonQtShell_QTreeWidget() { void PythonQtShell_QTreeWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8292,7 +8292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8311,7 +8311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8330,7 +8330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -8349,7 +8349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8368,7 +8368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8387,7 +8387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8406,7 +8406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -8425,7 +8425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8444,7 +8444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -8463,7 +8463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8493,7 +8493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8512,7 +8512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8531,7 +8531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8550,7 +8550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8569,7 +8569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::drawBranches(QPainter* painter0, const QRect& rect1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -8588,7 +8588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::drawRow(QPainter* painter0, const QStyleOptionViewItem& options1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -8607,7 +8607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8626,7 +8626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::dropMimeData(QTreeWidgetItem* parent0, int index1, const QMimeData* data2, Qt::DropAction action3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QTreeWidgetItem*" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -8656,7 +8656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -8686,7 +8686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -8705,7 +8705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8724,7 +8724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8754,7 +8754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8784,7 +8784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8803,7 +8803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8833,7 +8833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8852,7 +8852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8882,7 +8882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8912,7 +8912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8931,7 +8931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8961,7 +8961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8980,7 +8980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8999,7 +8999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTreeWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -9029,7 +9029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9048,7 +9048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9067,7 +9067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9097,7 +9097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -9127,7 +9127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9146,7 +9146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9165,7 +9165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -9184,7 +9184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9203,7 +9203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9233,7 +9233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTreeWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -9263,7 +9263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QTreeWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -9293,7 +9293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9312,7 +9312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9331,7 +9331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9350,7 +9350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9369,7 +9369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9388,7 +9388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9418,7 +9418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTreeWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9448,7 +9448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9467,7 +9467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTreeWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9497,7 +9497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9516,7 +9516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9535,7 +9535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9554,7 +9554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9573,7 +9573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9592,7 +9592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -9611,7 +9611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9630,7 +9630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTreeWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -9660,7 +9660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -9679,7 +9679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTreeWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -9709,7 +9709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9728,7 +9728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -9747,7 +9747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -9766,7 +9766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9785,7 +9785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTreeWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9815,7 +9815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9834,7 +9834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9864,7 +9864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9894,7 +9894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -9913,7 +9913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QTreeWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -9943,7 +9943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9962,7 +9962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9981,7 +9981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10000,7 +10000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10019,7 +10019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10038,7 +10038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10068,7 +10068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10087,7 +10087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10106,7 +10106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTreeWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -10136,7 +10136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10166,7 +10166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTreeWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10196,7 +10196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTreeWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -10226,7 +10226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTreeWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -10256,7 +10256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10510,7 +10510,7 @@ PythonQtShell_QTreeWidgetItem::~PythonQtShell_QTreeWidgetItem() { QTreeWidgetItem* PythonQtShell_QTreeWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTreeWidgetItem*"}; @@ -10540,7 +10540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeWidgetItem::data(int column0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "int"}; @@ -10570,7 +10570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidgetItem::__lt__(const QTreeWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QTreeWidgetItem&"}; @@ -10600,7 +10600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -10619,7 +10619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::setData(int column0, int role1, const QVariant& value2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "const QVariant&"}; @@ -10638,7 +10638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -10980,7 +10980,7 @@ PythonQtShell_QUndoCommand::~PythonQtShell_QUndoCommand() { int PythonQtShell_QUndoCommand::id() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("id"); + static PyObject* name = PyUnicode_FromString("id"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11010,7 +11010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoCommand::mergeWith(const QUndoCommand* other0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mergeWith"); + static PyObject* name = PyUnicode_FromString("mergeWith"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUndoCommand*"}; @@ -11040,7 +11040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoCommand::redo() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redo"); + static PyObject* name = PyUnicode_FromString("redo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11059,7 +11059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoCommand::undo() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("undo"); + static PyObject* name = PyUnicode_FromString("undo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11137,7 +11137,7 @@ PythonQtShell_QUndoGroup::~PythonQtShell_QUndoGroup() { void PythonQtShell_QUndoGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11156,7 +11156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11175,7 +11175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11205,7 +11205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11235,7 +11235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11319,7 +11319,7 @@ PythonQtShell_QUndoStack::~PythonQtShell_QUndoStack() { void PythonQtShell_QUndoStack::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11338,7 +11338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoStack::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11357,7 +11357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoStack::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11387,7 +11387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoStack::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11417,7 +11417,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoStack::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11541,7 +11541,7 @@ PythonQtShell_QUndoView::~PythonQtShell_QUndoView() { void PythonQtShell_QUndoView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11560,7 +11560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11579,7 +11579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11598,7 +11598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -11617,7 +11617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11636,7 +11636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11655,7 +11655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11674,7 +11674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -11693,7 +11693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11712,7 +11712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -11731,7 +11731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11761,7 +11761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11780,7 +11780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11799,7 +11799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11818,7 +11818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11837,7 +11837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11856,7 +11856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -11886,7 +11886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -11905,7 +11905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11924,7 +11924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11954,7 +11954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11984,7 +11984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12003,7 +12003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12033,7 +12033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12052,7 +12052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12082,7 +12082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12112,7 +12112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12131,7 +12131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12161,7 +12161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12180,7 +12180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12199,7 +12199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QUndoView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -12229,7 +12229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12248,7 +12248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12267,7 +12267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QUndoView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12297,7 +12297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12327,7 +12327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12346,7 +12346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12365,7 +12365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -12384,7 +12384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12403,7 +12403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12433,7 +12433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12452,7 +12452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12471,7 +12471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12490,7 +12490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12509,7 +12509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12528,7 +12528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12558,7 +12558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QUndoView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12588,7 +12588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12607,7 +12607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QUndoView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12637,7 +12637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12656,7 +12656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12675,7 +12675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -12694,7 +12694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -12713,7 +12713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -12732,7 +12732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -12751,7 +12751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12770,7 +12770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QUndoView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -12800,7 +12800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -12819,7 +12819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QUndoView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -12849,7 +12849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -12868,7 +12868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12887,7 +12887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -12906,7 +12906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -12925,7 +12925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12944,7 +12944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QUndoView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12974,7 +12974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12993,7 +12993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13023,7 +13023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13053,7 +13053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -13072,7 +13072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13091,7 +13091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13110,7 +13110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13129,7 +13129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13148,7 +13148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13167,7 +13167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13197,7 +13197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13216,7 +13216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13235,7 +13235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QUndoView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -13265,7 +13265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13295,7 +13295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QUndoView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13325,7 +13325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QUndoView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -13355,7 +13355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QUndoView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -13385,7 +13385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13452,7 +13452,7 @@ PythonQtShell_QVBoxLayout::~PythonQtShell_QVBoxLayout() { void PythonQtShell_QVBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -13471,7 +13471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13490,7 +13490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QVBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -13520,7 +13520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13550,7 +13550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13569,7 +13569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13599,7 +13599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13629,7 +13629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QVBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -13659,7 +13659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QVBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -13689,7 +13689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -13719,7 +13719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13738,7 +13738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13768,7 +13768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QVBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13798,7 +13798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QVBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -13828,7 +13828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13858,7 +13858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13888,7 +13888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -13907,7 +13907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QVBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13937,7 +13937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13970,7 +13970,7 @@ PythonQtShell_QValidator::~PythonQtShell_QValidator() { void PythonQtShell_QValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13989,7 +13989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14008,7 +14008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14038,7 +14038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14068,7 +14068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -14087,7 +14087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14106,7 +14106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp index 68e9a7d0b..20caab814 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp @@ -156,7 +156,7 @@ PythonQtShell_QWidget::~PythonQtShell_QWidget() { void PythonQtShell_QWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -175,7 +175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -194,7 +194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -213,7 +213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -232,7 +232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -251,7 +251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -270,7 +270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -300,7 +300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -319,7 +319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -338,7 +338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -357,7 +357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -376,7 +376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -395,7 +395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -425,7 +425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -455,7 +455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -474,7 +474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -504,7 +504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -523,7 +523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -553,7 +553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -583,7 +583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -602,7 +602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -621,7 +621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -640,7 +640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -670,7 +670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -689,7 +689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -708,7 +708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -727,7 +727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -757,7 +757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -787,7 +787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -806,7 +806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -825,7 +825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -844,7 +844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -863,7 +863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -882,7 +882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -912,7 +912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -942,7 +942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -961,7 +961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -991,7 +991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1010,7 +1010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::setVisible(bool visible0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1029,7 +1029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1059,7 +1059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1078,7 +1078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1108,7 +1108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1127,7 +1127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1146,7 +1146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2435,7 +2435,7 @@ PythonQtShell_QWidgetAction::~PythonQtShell_QWidgetAction() { void PythonQtShell_QWidgetAction::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2454,7 +2454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QWidgetAction::createWidget(QWidget* parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -2484,7 +2484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2503,7 +2503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::deleteWidget(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteWidget"); + static PyObject* name = PyUnicode_FromString("deleteWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2522,7 +2522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetAction::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2552,7 +2552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetAction::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2582,7 +2582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2656,7 +2656,7 @@ PythonQtShell_QWidgetItem::~PythonQtShell_QWidgetItem() { QSizePolicy::ControlTypes PythonQtShell_QWidgetItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -2686,7 +2686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QWidgetItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -2716,7 +2716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QWidgetItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2746,7 +2746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2776,7 +2776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidgetItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2806,7 +2806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2825,7 +2825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2855,7 +2855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QWidgetItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -2885,7 +2885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2915,7 +2915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidgetItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2945,7 +2945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2975,7 +2975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2994,7 +2994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3024,7 +3024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QWidgetItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -3054,7 +3054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QWidgetItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -3149,7 +3149,7 @@ PythonQtShell_QWindow::~PythonQtShell_QWindow() { void PythonQtShell_QWindow::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3168,7 +3168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3187,7 +3187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3217,7 +3217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3247,7 +3247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::exposeEvent(QExposeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -3266,7 +3266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3285,7 +3285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWindow::focusObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -3315,7 +3315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3334,7 +3334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurfaceFormat PythonQtShell_QWindow::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -3364,7 +3364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3402,7 +3402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3421,7 +3421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3440,7 +3440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3459,7 +3459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3478,7 +3478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3497,7 +3497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3516,7 +3516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3546,7 +3546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3565,7 +3565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3584,7 +3584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWindow::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3614,7 +3614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QWindow::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -3644,7 +3644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3663,7 +3663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3682,7 +3682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::touchEvent(QTouchEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -3701,7 +3701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4235,7 +4235,7 @@ PythonQtShell_QWizard::~PythonQtShell_QWizard() { void PythonQtShell_QWizard::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4254,7 +4254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4273,7 +4273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4292,7 +4292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4311,7 +4311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::cleanupPage(int id0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4330,7 +4330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4349,7 +4349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4368,7 +4368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4387,7 +4387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4417,7 +4417,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4436,7 +4436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4455,7 +4455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4474,7 +4474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4493,7 +4493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4512,7 +4512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4531,7 +4531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4561,7 +4561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4591,7 +4591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4621,7 +4621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4640,7 +4640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4670,7 +4670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4689,7 +4689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4719,7 +4719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4749,7 +4749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4768,7 +4768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4787,7 +4787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::initializePage(int id0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4806,7 +4806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4825,7 +4825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWizard::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4855,7 +4855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4874,7 +4874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4893,7 +4893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4912,7 +4912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4942,7 +4942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4961,7 +4961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4980,7 +4980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4999,7 +4999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5018,7 +5018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5037,7 +5037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5067,7 +5067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::nextId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5097,7 +5097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5116,7 +5116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWizard::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5146,7 +5146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5165,7 +5165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWizard::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5195,7 +5195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5214,7 +5214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5233,7 +5233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWizard::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5263,7 +5263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5282,7 +5282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5301,7 +5301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5320,7 +5320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::validateCurrentPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validateCurrentPage"); + static PyObject* name = PyUnicode_FromString("validateCurrentPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5350,7 +5350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5589,7 +5589,7 @@ PythonQtShell_QWizardPage::~PythonQtShell_QWizardPage() { void PythonQtShell_QWizardPage::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5608,7 +5608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5627,7 +5627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5646,7 +5646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::cleanupPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5665,7 +5665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5684,7 +5684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5703,7 +5703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5722,7 +5722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5752,7 +5752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5771,7 +5771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5790,7 +5790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5809,7 +5809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5828,7 +5828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5847,7 +5847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5877,7 +5877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5907,7 +5907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5926,7 +5926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5956,7 +5956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5975,7 +5975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6005,7 +6005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6035,7 +6035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6054,7 +6054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6073,7 +6073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::initializePage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6092,7 +6092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6111,7 +6111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWizardPage::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6141,7 +6141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::isComplete() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isComplete"); + static PyObject* name = PyUnicode_FromString("isComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6171,7 +6171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6190,7 +6190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6209,7 +6209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6228,7 +6228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6258,7 +6258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWizardPage::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6288,7 +6288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6307,7 +6307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6326,7 +6326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6345,7 +6345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6364,7 +6364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6383,7 +6383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6413,7 +6413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::nextId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6443,7 +6443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWizardPage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6473,7 +6473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6492,7 +6492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWizardPage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6522,7 +6522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6541,7 +6541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWizardPage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6571,7 +6571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6590,7 +6590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWizardPage::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6620,7 +6620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6639,7 +6639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6658,7 +6658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::validatePage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validatePage"); + static PyObject* name = PyUnicode_FromString("validatePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6688,7 +6688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp index f307e3e97..55302553a 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp @@ -218,7 +218,7 @@ PythonQtShell_QFontDialog::~PythonQtShell_QFontDialog() { void PythonQtShell_QFontDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -237,7 +237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -256,7 +256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -275,7 +275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -294,7 +294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -313,7 +313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -332,7 +332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -351,7 +351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -381,7 +381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -400,7 +400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -419,7 +419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -438,7 +438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -457,7 +457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -476,7 +476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -495,7 +495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -525,7 +525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -555,7 +555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -585,7 +585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -604,7 +604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -634,7 +634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -653,7 +653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -683,7 +683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -713,7 +713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -732,7 +732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -751,7 +751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFontDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -800,7 +800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -819,7 +819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -838,7 +838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -857,7 +857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -887,7 +887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -906,7 +906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -925,7 +925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -944,7 +944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -963,7 +963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -982,7 +982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1031,7 +1031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFontDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1080,7 +1080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFontDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1110,7 +1110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1129,7 +1129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1148,7 +1148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFontDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1178,7 +1178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1197,7 +1197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1216,7 +1216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1235,7 +1235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1743,7 +1743,7 @@ PythonQtShell_QFormLayout::~PythonQtShell_QFormLayout() { void PythonQtShell_QFormLayout::addItem(QLayoutItem* item0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -1762,7 +1762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1781,7 +1781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QFormLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -1811,7 +1811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFormLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1841,7 +1841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1890,7 +1890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1920,7 +1920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QFormLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -1950,7 +1950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QFormLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -1980,7 +1980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFormLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -2010,7 +2010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2029,7 +2029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2059,7 +2059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QFormLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2089,7 +2089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QFormLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -2119,7 +2119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFormLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2149,7 +2149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFormLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2179,7 +2179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::setGeometry(const QRect& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2198,7 +2198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QFormLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2228,7 +2228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2492,7 +2492,7 @@ PythonQtShell_QFrame::~PythonQtShell_QFrame() { void PythonQtShell_QFrame::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2511,7 +2511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2530,7 +2530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2549,7 +2549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2568,7 +2568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2587,7 +2587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2606,7 +2606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2636,7 +2636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2655,7 +2655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2674,7 +2674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2693,7 +2693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2712,7 +2712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2731,7 +2731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2761,7 +2761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2791,7 +2791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2810,7 +2810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2840,7 +2840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2859,7 +2859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2889,7 +2889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2919,7 +2919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2938,7 +2938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2957,7 +2957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2976,7 +2976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3006,7 +3006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3025,7 +3025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3044,7 +3044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3063,7 +3063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3093,7 +3093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFrame::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3123,7 +3123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3142,7 +3142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3161,7 +3161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3180,7 +3180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3199,7 +3199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3218,7 +3218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3248,7 +3248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFrame::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3278,7 +3278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3297,7 +3297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFrame::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3327,7 +3327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3346,7 +3346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFrame::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3376,7 +3376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3395,7 +3395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3414,7 +3414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3433,7 +3433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3552,7 +3552,7 @@ PythonQtShell_QGesture::~PythonQtShell_QGesture() { void PythonQtShell_QGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3571,7 +3571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3590,7 +3590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3620,7 +3620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3650,7 +3650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3820,7 +3820,7 @@ PythonQtShell_QGestureRecognizer::~PythonQtShell_QGestureRecognizer() { QGesture* PythonQtShell_QGestureRecognizer::create(QObject* target0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGesture*" , "QObject*"}; @@ -3850,7 +3850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGestureRecognizer::Result PythonQtShell_QGestureRecognizer::recognize(QGesture* state0, QObject* watched1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("recognize"); + static PyObject* name = PyUnicode_FromString("recognize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGestureRecognizer::Result" , "QGesture*" , "QObject*" , "QEvent*"}; @@ -3880,7 +3880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGestureRecognizer::reset(QGesture* state0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGesture*"}; @@ -4157,7 +4157,7 @@ PythonQtShell_QGraphicsAnchorLayout::~PythonQtShell_QGraphicsAnchorLayout() { int PythonQtShell_QGraphicsAnchorLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4187,7 +4187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -4206,7 +4206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4225,7 +4225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsAnchorLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -4255,7 +4255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4274,7 +4274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4293,7 +4293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4397,7 +4397,7 @@ PythonQtShell_QGraphicsBlurEffect::~PythonQtShell_QGraphicsBlurEffect() { QRectF PythonQtShell_QGraphicsBlurEffect::boundingRectFor(const QRectF& rect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4427,7 +4427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4446,7 +4446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4465,7 +4465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4484,7 +4484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsBlurEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4514,7 +4514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsBlurEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4544,7 +4544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4563,7 +4563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4612,7 +4612,7 @@ PythonQtShell_QGraphicsColorizeEffect::~PythonQtShell_QGraphicsColorizeEffect() QRectF PythonQtShell_QGraphicsColorizeEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4642,7 +4642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4661,7 +4661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4699,7 +4699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsColorizeEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4729,7 +4729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsColorizeEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4759,7 +4759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4778,7 +4778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4822,7 +4822,7 @@ PythonQtShell_QGraphicsDropShadowEffect::~PythonQtShell_QGraphicsDropShadowEffec QRectF PythonQtShell_QGraphicsDropShadowEffect::boundingRectFor(const QRectF& rect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4852,7 +4852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4871,7 +4871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4890,7 +4890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4909,7 +4909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsDropShadowEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4939,7 +4939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsDropShadowEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4969,7 +4969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4988,7 +4988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5052,7 +5052,7 @@ PythonQtShell_QGraphicsEffect::~PythonQtShell_QGraphicsEffect() { QRectF PythonQtShell_QGraphicsEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5082,7 +5082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5101,7 +5101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5120,7 +5120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5139,7 +5139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5169,7 +5169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5199,7 +5199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5218,7 +5218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5297,7 +5297,7 @@ PythonQtShell_QGraphicsEllipseItem::~PythonQtShell_QGraphicsEllipseItem() { bool PythonQtShell_QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5327,7 +5327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsEllipseItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5460,7 +5460,7 @@ PythonQtShell_QGraphicsGridLayout::~PythonQtShell_QGraphicsGridLayout() { int PythonQtShell_QGraphicsGridLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5490,7 +5490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -5509,7 +5509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5528,7 +5528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsGridLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -5558,7 +5558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5577,7 +5577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5596,7 +5596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5850,7 +5850,7 @@ PythonQtShell_QGraphicsItem::~PythonQtShell_QGraphicsItem() { void PythonQtShell_QGraphicsItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5869,7 +5869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5899,7 +5899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -5929,7 +5929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -5959,7 +5959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5989,7 +5989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -6008,7 +6008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6027,7 +6027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6046,7 +6046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6065,7 +6065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -6084,7 +6084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -6114,7 +6114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6133,7 +6133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6152,7 +6152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6171,7 +6171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6190,7 +6190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6209,7 +6209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6228,7 +6228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6258,7 +6258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6288,7 +6288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -6321,7 +6321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6340,7 +6340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6359,7 +6359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6378,7 +6378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6397,7 +6397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6416,7 +6416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6435,7 +6435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6465,7 +6465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6484,7 +6484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6514,7 +6514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -6544,7 +6544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6563,7 +6563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6593,7 +6593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6623,7 +6623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6653,7 +6653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -7724,7 +7724,7 @@ PythonQtShell_QGraphicsItemAnimation::~PythonQtShell_QGraphicsItemAnimation() { void PythonQtShell_QGraphicsItemAnimation::afterAnimationStep(qreal step0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("afterAnimationStep"); + static PyObject* name = PyUnicode_FromString("afterAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7743,7 +7743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::beforeAnimationStep(qreal step0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beforeAnimationStep"); + static PyObject* name = PyUnicode_FromString("beforeAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7762,7 +7762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7781,7 +7781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7800,7 +7800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemAnimation::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7830,7 +7830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7860,7 +7860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8019,7 +8019,7 @@ PythonQtShell_QGraphicsItemGroup::~PythonQtShell_QGraphicsItemGroup() { void PythonQtShell_QGraphicsItemGroup::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8038,7 +8038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsItemGroup::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -8068,7 +8068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -8098,7 +8098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -8128,7 +8128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -8158,7 +8158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -8177,7 +8177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8196,7 +8196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8215,7 +8215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8234,7 +8234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8253,7 +8253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -8283,7 +8283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8302,7 +8302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8321,7 +8321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8340,7 +8340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8359,7 +8359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8378,7 +8378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8397,7 +8397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8427,7 +8427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -8457,7 +8457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -8490,7 +8490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8509,7 +8509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8528,7 +8528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8547,7 +8547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8566,7 +8566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8585,7 +8585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8604,7 +8604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItemGroup::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -8634,7 +8634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -8653,7 +8653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8683,7 +8683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -8713,7 +8713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -8732,7 +8732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItemGroup::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -8762,7 +8762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -8792,7 +8792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsItemGroup::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8822,7 +8822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -8886,7 +8886,7 @@ PythonQtShell_QGraphicsLayout::~PythonQtShell_QGraphicsLayout() { int PythonQtShell_QGraphicsLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8916,7 +8916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -8935,7 +8935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8954,7 +8954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsLayout::itemAt(int i0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -8984,7 +8984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9003,7 +9003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9022,7 +9022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsLayout::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9052,7 +9052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9071,7 +9071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9165,7 +9165,7 @@ PythonQtShell_QGraphicsLayoutItem::~PythonQtShell_QGraphicsLayoutItem() { void PythonQtShell_QGraphicsLayoutItem::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -9184,7 +9184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayoutItem::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9203,7 +9203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsLayoutItem::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9233,7 +9233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayoutItem::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9452,7 +9452,7 @@ PythonQtShell_QGraphicsLineItem::~PythonQtShell_QGraphicsLineItem() { void PythonQtShell_QGraphicsLineItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9471,7 +9471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsLineItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -9501,7 +9501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -9531,7 +9531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -9561,7 +9561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -9591,7 +9591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -9610,7 +9610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9629,7 +9629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9648,7 +9648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9667,7 +9667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9686,7 +9686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -9716,7 +9716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9735,7 +9735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9754,7 +9754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9773,7 +9773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9792,7 +9792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9811,7 +9811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9830,7 +9830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9860,7 +9860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9890,7 +9890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9923,7 +9923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9942,7 +9942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9961,7 +9961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9980,7 +9980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9999,7 +9999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10018,7 +10018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -10037,7 +10037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsLineItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10067,7 +10067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -10086,7 +10086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10116,7 +10116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -10146,7 +10146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -10165,7 +10165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsLineItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10195,7 +10195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -10225,7 +10225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsLineItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10255,7 +10255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -10367,7 +10367,7 @@ PythonQtShell_QGraphicsLinearLayout::~PythonQtShell_QGraphicsLinearLayout() { int PythonQtShell_QGraphicsLinearLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10397,7 +10397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10416,7 +10416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10435,7 +10435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsLinearLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -10465,7 +10465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10484,7 +10484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10503,7 +10503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10646,7 +10646,7 @@ PythonQtShell_QGraphicsObject::~PythonQtShell_QGraphicsObject() { void PythonQtShell_QGraphicsObject::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10665,7 +10665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsObject::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10695,7 +10695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10714,7 +10714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10744,7 +10744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10774,7 +10774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10804,7 +10804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10823,7 +10823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10842,7 +10842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10861,7 +10861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10880,7 +10880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10899,7 +10899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10918,7 +10918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10948,7 +10948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10978,7 +10978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -11008,7 +11008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11027,7 +11027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11046,7 +11046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11065,7 +11065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11084,7 +11084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11103,7 +11103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11122,7 +11122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11152,7 +11152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11182,7 +11182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -11215,7 +11215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11234,7 +11234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11253,7 +11253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11272,7 +11272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11291,7 +11291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11310,7 +11310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11329,7 +11329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsObject::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11359,7 +11359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -11378,7 +11378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11408,7 +11408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -11438,7 +11438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -11457,7 +11457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsObject::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11487,7 +11487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -11517,7 +11517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11536,7 +11536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsObject::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11566,7 +11566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -11617,7 +11617,7 @@ PythonQtShell_QGraphicsOpacityEffect::~PythonQtShell_QGraphicsOpacityEffect() { QRectF PythonQtShell_QGraphicsOpacityEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -11647,7 +11647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11666,7 +11666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11685,7 +11685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11704,7 +11704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsOpacityEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11734,7 +11734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsOpacityEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11764,7 +11764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -11783,7 +11783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11827,7 +11827,7 @@ PythonQtShell_QGraphicsPathItem::~PythonQtShell_QGraphicsPathItem() { bool PythonQtShell_QGraphicsPathItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11857,7 +11857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPathItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp index a3a7a102f..9ab1df928 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp @@ -86,7 +86,7 @@ PythonQtShell_QGraphicsPixmapItem::~PythonQtShell_QGraphicsPixmapItem() { void PythonQtShell_QGraphicsPixmapItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsPixmapItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -135,7 +135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -165,7 +165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -195,7 +195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -225,7 +225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -244,7 +244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -263,7 +263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -282,7 +282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -301,7 +301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -320,7 +320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -350,7 +350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -369,7 +369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -388,7 +388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -407,7 +407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -426,7 +426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -445,7 +445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -494,7 +494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -524,7 +524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -557,7 +557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -576,7 +576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -595,7 +595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -614,7 +614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -633,7 +633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -652,7 +652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -671,7 +671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPixmapItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -701,7 +701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -720,7 +720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -750,7 +750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -780,7 +780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -799,7 +799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPixmapItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -829,7 +829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -859,7 +859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsPixmapItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -889,7 +889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1017,7 +1017,7 @@ PythonQtShell_QGraphicsPolygonItem::~PythonQtShell_QGraphicsPolygonItem() { bool PythonQtShell_QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPolygonItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1161,7 +1161,7 @@ PythonQtShell_QGraphicsProxyWidget::~PythonQtShell_QGraphicsProxyWidget() { void PythonQtShell_QGraphicsProxyWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1180,7 +1180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1199,7 +1199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1218,7 +1218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1237,7 +1237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1267,7 +1267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1297,7 +1297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1327,7 +1327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -1346,7 +1346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1365,7 +1365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1384,7 +1384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1403,7 +1403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1422,7 +1422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1441,7 +1441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -1460,7 +1460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -1479,7 +1479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1498,7 +1498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1517,7 +1517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsProxyWidget::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -1547,7 +1547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -1566,7 +1566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -1585,7 +1585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsProxyWidget::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -1634,7 +1634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1653,7 +1653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1672,7 +1672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1691,7 +1691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1710,7 +1710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsProxyWidget::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -1960,7 +1960,7 @@ PythonQtShell_QGraphicsRectItem::~PythonQtShell_QGraphicsRectItem() { bool PythonQtShell_QGraphicsRectItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1990,7 +1990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsRectItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2103,7 +2103,7 @@ PythonQtShell_QGraphicsRotation::~PythonQtShell_QGraphicsRotation() { void PythonQtShell_QGraphicsRotation::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2141,7 +2141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2160,7 +2160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsRotation::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2190,7 +2190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsRotation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2220,7 +2220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2289,7 +2289,7 @@ PythonQtShell_QGraphicsScale::~PythonQtShell_QGraphicsScale() { void PythonQtShell_QGraphicsScale::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -2308,7 +2308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2327,7 +2327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2346,7 +2346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScale::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2376,7 +2376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScale::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2406,7 +2406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2480,7 +2480,7 @@ PythonQtShell_QGraphicsScene::~PythonQtShell_QGraphicsScene() { void PythonQtShell_QGraphicsScene::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2499,7 +2499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -2518,7 +2518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2537,7 +2537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2556,7 +2556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2575,7 +2575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2594,7 +2594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawBackground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -2613,7 +2613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawForeground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -2632,7 +2632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawItems(QPainter* painter0, int numItems1, QGraphicsItem** items2, const QStyleOptionGraphicsItem* options3, QWidget* widget4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2651,7 +2651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -2670,7 +2670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScene::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2700,7 +2700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScene::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2730,7 +2730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2749,7 +2749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2768,7 +2768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::helpEvent(QGraphicsSceneHelpEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHelpEvent*"}; @@ -2787,7 +2787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2806,7 +2806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsScene::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2836,7 +2836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2855,7 +2855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2874,7 +2874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2893,7 +2893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2912,7 +2912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2931,7 +2931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2969,7 +2969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -3985,7 +3985,7 @@ PythonQtShell_QGraphicsSimpleTextItem::~PythonQtShell_QGraphicsSimpleTextItem() bool PythonQtShell_QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -4015,7 +4015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsSimpleTextItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -4129,7 +4129,7 @@ PythonQtShell_QGraphicsTextItem::~PythonQtShell_QGraphicsTextItem() { void PythonQtShell_QGraphicsTextItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4148,7 +4148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTextItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4167,7 +4167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTextItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4197,7 +4197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTextItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4227,7 +4227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTextItem::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4510,7 +4510,7 @@ PythonQtShell_QGraphicsTransform::~PythonQtShell_QGraphicsTransform() { void PythonQtShell_QGraphicsTransform::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -4529,7 +4529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4548,7 +4548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4567,7 +4567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTransform::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4597,7 +4597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTransform::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4627,7 +4627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4661,7 +4661,7 @@ PythonQtShell_QGraphicsView::~PythonQtShell_QGraphicsView() { void PythonQtShell_QGraphicsView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4699,7 +4699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4718,7 +4718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4737,7 +4737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4756,7 +4756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4775,7 +4775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4805,7 +4805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4862,7 +4862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawBackground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -4881,7 +4881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawForeground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -4900,7 +4900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawItems(QPainter* painter0, int numItems1, QGraphicsItem** items2, const QStyleOptionGraphicsItem* options3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*"}; @@ -4919,7 +4919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4938,7 +4938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4957,7 +4957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4987,7 +4987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5017,7 +5017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5036,7 +5036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5066,7 +5066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5085,7 +5085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5115,7 +5115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5145,7 +5145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5164,7 +5164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5183,7 +5183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5202,7 +5202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5232,7 +5232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5251,7 +5251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5270,7 +5270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5289,7 +5289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5319,7 +5319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5338,7 +5338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5357,7 +5357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5376,7 +5376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGraphicsView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5474,7 +5474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5493,7 +5493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGraphicsView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5523,7 +5523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5542,7 +5542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5561,7 +5561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::setupViewport(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5580,7 +5580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGraphicsView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5610,7 +5610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5629,7 +5629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5648,7 +5648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5667,7 +5667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5697,7 +5697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGraphicsView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5727,7 +5727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6280,7 +6280,7 @@ PythonQtShell_QGraphicsWidget::~PythonQtShell_QGraphicsWidget() { void PythonQtShell_QGraphicsWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6299,7 +6299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6318,7 +6318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6337,7 +6337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6356,7 +6356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6386,7 +6386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6416,7 +6416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6446,7 +6446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -6465,7 +6465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6484,7 +6484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6503,7 +6503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6522,7 +6522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6541,7 +6541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6560,7 +6560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -6579,7 +6579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -6598,7 +6598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6617,7 +6617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6636,7 +6636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWidget::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -6666,7 +6666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -6685,7 +6685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -6704,7 +6704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6723,7 +6723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsWidget::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -6753,7 +6753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6772,7 +6772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6791,7 +6791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6810,7 +6810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6829,7 +6829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6859,7 +6859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsWidget::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -7294,7 +7294,7 @@ PythonQtShell_QGridLayout::~PythonQtShell_QGridLayout() { void PythonQtShell_QGridLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -7313,7 +7313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7332,7 +7332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QGridLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7362,7 +7362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGridLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7392,7 +7392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7411,7 +7411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7441,7 +7441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7471,7 +7471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QGridLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7501,7 +7501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QGridLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7531,7 +7531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGridLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -7561,7 +7561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7580,7 +7580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7610,7 +7610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QGridLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7640,7 +7640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QGridLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7670,7 +7670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGridLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7700,7 +7700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGridLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7730,7 +7730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7749,7 +7749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QGridLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7779,7 +7779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8012,7 +8012,7 @@ PythonQtShell_QGroupBox::~PythonQtShell_QGroupBox() { void PythonQtShell_QGroupBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8031,7 +8031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8050,7 +8050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::childEvent(QChildEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8069,7 +8069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8088,7 +8088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8107,7 +8107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8126,7 +8126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8156,7 +8156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8175,7 +8175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8194,7 +8194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8213,7 +8213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8232,7 +8232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8251,7 +8251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8281,7 +8281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8311,7 +8311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8330,7 +8330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8360,7 +8360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8379,7 +8379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8409,7 +8409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8439,7 +8439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8458,7 +8458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8477,7 +8477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8496,7 +8496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGroupBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8526,7 +8526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8545,7 +8545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8564,7 +8564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8583,7 +8583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8613,7 +8613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8632,7 +8632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8651,7 +8651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8670,7 +8670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8689,7 +8689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8708,7 +8708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8738,7 +8738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGroupBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8768,7 +8768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8787,7 +8787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGroupBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8817,7 +8817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8836,7 +8836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGroupBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8866,7 +8866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8885,7 +8885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGroupBox::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8915,7 +8915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8934,7 +8934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8953,7 +8953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9313,7 +9313,7 @@ PythonQtShell_QHBoxLayout::~PythonQtShell_QHBoxLayout() { void PythonQtShell_QHBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -9332,7 +9332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9351,7 +9351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QHBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9381,7 +9381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9411,7 +9411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9430,7 +9430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9460,7 +9460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9490,7 +9490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QHBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -9520,7 +9520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QHBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -9550,7 +9550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -9580,7 +9580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9599,7 +9599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9629,7 +9629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QHBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9659,7 +9659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QHBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -9689,7 +9689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9719,7 +9719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9749,7 +9749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -9768,7 +9768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QHBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9798,7 +9798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9831,7 +9831,7 @@ PythonQtShell_QHeaderView::~PythonQtShell_QHeaderView() { void PythonQtShell_QHeaderView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9850,7 +9850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9869,7 +9869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9888,7 +9888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9907,7 +9907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9926,7 +9926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9945,7 +9945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9964,7 +9964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::currentChanged(const QModelIndex& current0, const QModelIndex& old1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -9983,7 +9983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10002,7 +10002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -10021,7 +10021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10051,7 +10051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10070,7 +10070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10089,7 +10089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10108,7 +10108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10127,7 +10127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10146,7 +10146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10176,7 +10176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10195,7 +10195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10214,7 +10214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10244,7 +10244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10274,7 +10274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10293,7 +10293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10323,7 +10323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10342,7 +10342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10372,7 +10372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10402,7 +10402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10421,7 +10421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10451,7 +10451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10470,7 +10470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10489,7 +10489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QHeaderView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10519,7 +10519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10538,7 +10538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10557,7 +10557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QHeaderView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10587,7 +10587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10617,7 +10617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10636,7 +10636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10655,7 +10655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10674,7 +10674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10693,7 +10693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10723,7 +10723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10742,7 +10742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10761,7 +10761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10780,7 +10780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10799,7 +10799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10818,7 +10818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10848,7 +10848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QHeaderView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10878,7 +10878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10897,7 +10897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::paintSection(QPainter* painter0, const QRect& rect1, int logicalIndex2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintSection"); + static PyObject* name = PyUnicode_FromString("paintSection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int"}; @@ -10916,7 +10916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QHeaderView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10946,7 +10946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10965,7 +10965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10984,7 +10984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11003,7 +11003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11022,7 +11022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11041,7 +11041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11060,7 +11060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHeaderView::sectionSizeFromContents(int logicalIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sectionSizeFromContents"); + static PyObject* name = PyUnicode_FromString("sectionSizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -11090,7 +11090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11109,7 +11109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QHeaderView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11139,7 +11139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11158,7 +11158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QHeaderView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11188,7 +11188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11207,7 +11207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11226,7 +11226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags flags1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11245,7 +11245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11264,7 +11264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11283,7 +11283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QHeaderView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11313,7 +11313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11332,7 +11332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11362,7 +11362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11392,7 +11392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11411,7 +11411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11430,7 +11430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11449,7 +11449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11468,7 +11468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11487,7 +11487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11506,7 +11506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11536,7 +11536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11555,7 +11555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11574,7 +11574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QHeaderView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11604,7 +11604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::viewportEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11634,7 +11634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHeaderView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11664,7 +11664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QHeaderView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11694,7 +11694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QHeaderView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11724,7 +11724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp index 90d4e273c..b88139747 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp @@ -92,7 +92,7 @@ PythonQtShell_QIconEngine::~PythonQtShell_QIconEngine() { QSize PythonQtShell_QIconEngine::actualSize(const QSize& size0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actualSize"); + static PyObject* name = PyUnicode_FromString("actualSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -122,7 +122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::addFile(const QString& fileName0, const QSize& size1, QIcon::Mode mode2, QIcon::State state3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addFile"); + static PyObject* name = PyUnicode_FromString("addFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -141,7 +141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::addPixmap(const QPixmap& pixmap0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addPixmap"); + static PyObject* name = PyUnicode_FromString("addPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPixmap&" , "QIcon::Mode" , "QIcon::State"}; @@ -160,7 +160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QIconEngine::availableSizes(QIcon::Mode mode0, QIcon::State state1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availableSizes"); + static PyObject* name = PyUnicode_FromString("availableSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QIcon::Mode" , "QIcon::State"}; @@ -190,7 +190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIconEngine* PythonQtShell_QIconEngine::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIconEngine*"}; @@ -220,7 +220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QIconEngine::iconName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("iconName"); + static PyObject* name = PyUnicode_FromString("iconName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -250,7 +250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QIconEngine::key() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("key"); + static PyObject* name = PyUnicode_FromString("key"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -280,7 +280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::paint(QPainter* painter0, const QRect& rect1, QIcon::Mode mode2, QIcon::State state3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "QIcon::Mode" , "QIcon::State"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QIconEngine::pixmap(const QSize& size0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixmap"); + static PyObject* name = PyUnicode_FromString("pixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -329,7 +329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIconEngine::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -359,7 +359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::virtual_hook(int id0, void* data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -378,7 +378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIconEngine::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -478,7 +478,7 @@ PythonQtShell_QImageIOHandler::~PythonQtShell_QImageIOHandler() { bool PythonQtShell_QImageIOHandler::canRead() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canRead"); + static PyObject* name = PyUnicode_FromString("canRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -508,7 +508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::currentImageNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentImageNumber"); + static PyObject* name = PyUnicode_FromString("currentImageNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -538,7 +538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QImageIOHandler::currentImageRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentImageRect"); + static PyObject* name = PyUnicode_FromString("currentImageRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -568,7 +568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::imageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("imageCount"); + static PyObject* name = PyUnicode_FromString("imageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::jumpToImage(int imageNumber0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("jumpToImage"); + static PyObject* name = PyUnicode_FromString("jumpToImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -628,7 +628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::jumpToNextImage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("jumpToNextImage"); + static PyObject* name = PyUnicode_FromString("jumpToNextImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -658,7 +658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::loopCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loopCount"); + static PyObject* name = PyUnicode_FromString("loopCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QImageIOHandler::name() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -718,7 +718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::nextImageDelay() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextImageDelay"); + static PyObject* name = PyUnicode_FromString("nextImageDelay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -748,7 +748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QImageIOHandler::option(QImageIOHandler::ImageOption option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("option"); + static PyObject* name = PyUnicode_FromString("option"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QImageIOHandler::ImageOption"}; @@ -778,7 +778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::read(QImage* image0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImage*"}; @@ -808,7 +808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOHandler::setOption(QImageIOHandler::ImageOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOption"); + static PyObject* name = PyUnicode_FromString("setOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QImageIOHandler::ImageOption" , "const QVariant&"}; @@ -827,7 +827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::supportsOption(QImageIOHandler::ImageOption option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsOption"); + static PyObject* name = PyUnicode_FromString("supportsOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImageIOHandler::ImageOption"}; @@ -857,7 +857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::write(const QImage& image0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QImage&"}; @@ -982,7 +982,7 @@ PythonQtShell_QImageIOPlugin::~PythonQtShell_QImageIOPlugin() { QImageIOPlugin::Capabilities PythonQtShell_QImageIOPlugin::capabilities(QIODevice* device0, const QByteArray& format1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("capabilities"); + static PyObject* name = PyUnicode_FromString("capabilities"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOPlugin::Capabilities" , "QIODevice*" , "const QByteArray&"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1031,7 +1031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QImageIOHandler* PythonQtShell_QImageIOPlugin::create(QIODevice* device0, const QByteArray& format1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOHandler*" , "QIODevice*" , "const QByteArray&"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1080,7 +1080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOPlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1110,7 +1110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOPlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1140,7 +1140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1512,7 +1512,7 @@ PythonQtShell_QInputDialog::~PythonQtShell_QInputDialog() { void PythonQtShell_QInputDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1531,7 +1531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1550,7 +1550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1569,7 +1569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1588,7 +1588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1607,7 +1607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1626,7 +1626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1645,7 +1645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1675,7 +1675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1694,7 +1694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1713,7 +1713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1732,7 +1732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1751,7 +1751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1789,7 +1789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1819,7 +1819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1849,7 +1849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1879,7 +1879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1898,7 +1898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1928,7 +1928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1947,7 +1947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1977,7 +1977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2007,7 +2007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2026,7 +2026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2045,7 +2045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2064,7 +2064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QInputDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2094,7 +2094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2113,7 +2113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2132,7 +2132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2151,7 +2151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2181,7 +2181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2200,7 +2200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2219,7 +2219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2238,7 +2238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2257,7 +2257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2276,7 +2276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2306,7 +2306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2325,7 +2325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QInputDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2355,7 +2355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2374,7 +2374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QInputDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2404,7 +2404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2423,7 +2423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2442,7 +2442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QInputDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2472,7 +2472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2491,7 +2491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2510,7 +2510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2529,7 +2529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2970,7 +2970,7 @@ PythonQtShell_QIntValidator::~PythonQtShell_QIntValidator() { void PythonQtShell_QIntValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2989,7 +2989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3008,7 +3008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIntValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3038,7 +3038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIntValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3068,7 +3068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3087,7 +3087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::setRange(int bottom0, int top1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3106,7 +3106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3125,7 +3125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QIntValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3204,7 +3204,7 @@ PythonQtShell_QItemDelegate::~PythonQtShell_QItemDelegate() { void PythonQtShell_QItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3223,7 +3223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3253,7 +3253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3272,7 +3272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3291,7 +3291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawCheck(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, Qt::CheckState state3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawCheck"); + static PyObject* name = PyUnicode_FromString("drawCheck"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "Qt::CheckState"}; @@ -3310,7 +3310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawDecoration(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawDecoration"); + static PyObject* name = PyUnicode_FromString("drawDecoration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QPixmap&"}; @@ -3329,7 +3329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawDisplay(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, const QString& text3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawDisplay"); + static PyObject* name = PyUnicode_FromString("drawDisplay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QString&"}; @@ -3348,7 +3348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawFocus(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawFocus"); + static PyObject* name = PyUnicode_FromString("drawFocus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&"}; @@ -3367,7 +3367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3397,7 +3397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3427,7 +3427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3457,7 +3457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3487,7 +3487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3506,7 +3506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3555,7 +3555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -3574,7 +3574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3604,7 +3604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3623,7 +3623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3762,7 +3762,7 @@ PythonQtShell_QItemEditorCreatorBase::~PythonQtShell_QItemEditorCreatorBase() { QWidget* PythonQtShell_QItemEditorCreatorBase::createWidget(QWidget* parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -3792,7 +3792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QItemEditorCreatorBase::valuePropertyName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -3842,7 +3842,7 @@ PythonQtShell_QItemEditorFactory::~PythonQtShell_QItemEditorFactory() { QWidget* PythonQtShell_QItemEditorFactory::createEditor(int userType0, QWidget* parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "int" , "QWidget*"}; @@ -3872,7 +3872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QItemEditorFactory::valuePropertyName(int userType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "int"}; @@ -4202,7 +4202,7 @@ PythonQtShell_QItemSelectionModel::~PythonQtShell_QItemSelectionModel() { void PythonQtShell_QItemSelectionModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4221,7 +4221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4240,7 +4240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::clearCurrentIndex() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clearCurrentIndex"); + static PyObject* name = PyUnicode_FromString("clearCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4259,7 +4259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4278,7 +4278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemSelectionModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4308,7 +4308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemSelectionModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4338,7 +4338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4357,7 +4357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::select(const QItemSelection& selection0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "QItemSelectionModel::SelectionFlags"}; @@ -4376,7 +4376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::select(const QModelIndex& index0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4395,7 +4395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::setCurrentIndex(const QModelIndex& index0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4414,7 +4414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4726,7 +4726,7 @@ PythonQtShell_QKeyEventTransition::~PythonQtShell_QKeyEventTransition() { void PythonQtShell_QKeyEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4745,7 +4745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4764,7 +4764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4794,7 +4794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4854,7 +4854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4873,7 +4873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4936,7 +4936,7 @@ PythonQtShell_QLCDNumber::~PythonQtShell_QLCDNumber() { void PythonQtShell_QLCDNumber::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4955,7 +4955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4974,7 +4974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4993,7 +4993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5012,7 +5012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5031,7 +5031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5050,7 +5050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5080,7 +5080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5099,7 +5099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5118,7 +5118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5137,7 +5137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5156,7 +5156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5175,7 +5175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5205,7 +5205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5235,7 +5235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5254,7 +5254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5284,7 +5284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5303,7 +5303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5333,7 +5333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5363,7 +5363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5382,7 +5382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5401,7 +5401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5420,7 +5420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLCDNumber::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5450,7 +5450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5469,7 +5469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5488,7 +5488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5507,7 +5507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5537,7 +5537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLCDNumber::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5567,7 +5567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5586,7 +5586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5605,7 +5605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5624,7 +5624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5643,7 +5643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5662,7 +5662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5692,7 +5692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLCDNumber::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5722,7 +5722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5741,7 +5741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLCDNumber::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5771,7 +5771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5790,7 +5790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLCDNumber::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5820,7 +5820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5839,7 +5839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5858,7 +5858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5877,7 +5877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5980,7 +5980,7 @@ PythonQtShell_QLabel::~PythonQtShell_QLabel() { void PythonQtShell_QLabel::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5999,7 +5999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6018,7 +6018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6037,7 +6037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6056,7 +6056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::contextMenuEvent(QContextMenuEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6075,7 +6075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6094,7 +6094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6124,7 +6124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6143,7 +6143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6162,7 +6162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6181,7 +6181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6200,7 +6200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6219,7 +6219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6249,7 +6249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6279,7 +6279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::focusInEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6298,7 +6298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6328,7 +6328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::focusOutEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6347,7 +6347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6377,7 +6377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6407,7 +6407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6426,7 +6426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6445,7 +6445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6464,7 +6464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLabel::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6494,7 +6494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6513,7 +6513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6532,7 +6532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6551,7 +6551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6581,7 +6581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6600,7 +6600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6619,7 +6619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6638,7 +6638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6657,7 +6657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6676,7 +6676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6706,7 +6706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLabel::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6736,7 +6736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6755,7 +6755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLabel::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6785,7 +6785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6804,7 +6804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLabel::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6834,7 +6834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6853,7 +6853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6872,7 +6872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6891,7 +6891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7124,7 +7124,7 @@ PythonQtShell_QLayout::~PythonQtShell_QLayout() { void PythonQtShell_QLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -7143,7 +7143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7162,7 +7162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7192,7 +7192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7222,7 +7222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7241,7 +7241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7271,7 +7271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7301,7 +7301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7331,7 +7331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7361,7 +7361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7391,7 +7391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7421,7 +7421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -7451,7 +7451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7470,7 +7470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7500,7 +7500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7530,7 +7530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7560,7 +7560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7590,7 +7590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7620,7 +7620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7650,7 +7650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7669,7 +7669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7699,7 +7699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QLayout::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -7729,7 +7729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7759,7 +7759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7778,7 +7778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QLayout::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -8062,7 +8062,7 @@ PythonQtShell_QLayoutItem::~PythonQtShell_QLayoutItem() { QSizePolicy::ControlTypes PythonQtShell_QLayoutItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -8092,7 +8092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QLayoutItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -8122,7 +8122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QLayoutItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -8152,7 +8152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayoutItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8182,7 +8182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayoutItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8212,7 +8212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayoutItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8231,7 +8231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayoutItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8261,7 +8261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QLayoutItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -8291,7 +8291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8321,7 +8321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayoutItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8351,7 +8351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8381,7 +8381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayoutItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -8400,7 +8400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8430,7 +8430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QLayoutItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -8460,7 +8460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QLayoutItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -8585,7 +8585,7 @@ PythonQtShell_QLineEdit::~PythonQtShell_QLineEdit() { void PythonQtShell_QLineEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8604,7 +8604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8623,7 +8623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8642,7 +8642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8661,7 +8661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8680,7 +8680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8699,7 +8699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8729,7 +8729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8748,7 +8748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8767,7 +8767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8786,7 +8786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8805,7 +8805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8824,7 +8824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8854,7 +8854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8884,7 +8884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8903,7 +8903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8933,7 +8933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8952,7 +8952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8982,7 +8982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9012,7 +9012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9031,7 +9031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9050,7 +9050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9069,7 +9069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLineEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9099,7 +9099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9118,7 +9118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9137,7 +9137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9156,7 +9156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9186,7 +9186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9205,7 +9205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9224,7 +9224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9243,7 +9243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9262,7 +9262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9281,7 +9281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9311,7 +9311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLineEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9341,7 +9341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9360,7 +9360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLineEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9390,7 +9390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9409,7 +9409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLineEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9439,7 +9439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9458,7 +9458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9477,7 +9477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9496,7 +9496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9958,7 +9958,7 @@ PythonQtShell_QListView::~PythonQtShell_QListView() { void PythonQtShell_QListView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9977,7 +9977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9996,7 +9996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10015,7 +10015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -10034,7 +10034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10053,7 +10053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10072,7 +10072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10091,7 +10091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -10110,7 +10110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10129,7 +10129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -10148,7 +10148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10178,7 +10178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10197,7 +10197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10216,7 +10216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10235,7 +10235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10254,7 +10254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10273,7 +10273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10303,7 +10303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10322,7 +10322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10341,7 +10341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10371,7 +10371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10401,7 +10401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10420,7 +10420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10450,7 +10450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10469,7 +10469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10499,7 +10499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10529,7 +10529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10548,7 +10548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10578,7 +10578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10597,7 +10597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10616,7 +10616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QListView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10646,7 +10646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10665,7 +10665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10684,7 +10684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10714,7 +10714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10744,7 +10744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10763,7 +10763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10782,7 +10782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10801,7 +10801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10820,7 +10820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10850,7 +10850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10869,7 +10869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10888,7 +10888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10907,7 +10907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10926,7 +10926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10945,7 +10945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10975,7 +10975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QListView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11005,7 +11005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11024,7 +11024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QListView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11054,7 +11054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11073,7 +11073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11092,7 +11092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11111,7 +11111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11130,7 +11130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11149,7 +11149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11168,7 +11168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11187,7 +11187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QListView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11217,7 +11217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11236,7 +11236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QListView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11266,7 +11266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11285,7 +11285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11304,7 +11304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11323,7 +11323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11342,7 +11342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11361,7 +11361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QListView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11391,7 +11391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11410,7 +11410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11440,7 +11440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11470,7 +11470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11489,7 +11489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11508,7 +11508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11527,7 +11527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11546,7 +11546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11565,7 +11565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11584,7 +11584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11614,7 +11614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11633,7 +11633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11652,7 +11652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QListView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11682,7 +11682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11712,7 +11712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QListView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11742,7 +11742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QListView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11772,7 +11772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QListView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11802,7 +11802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12156,7 +12156,7 @@ PythonQtShell_QListWidget::~PythonQtShell_QListWidget() { void PythonQtShell_QListWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12175,7 +12175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12194,7 +12194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12213,7 +12213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -12232,7 +12232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12251,7 +12251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12270,7 +12270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12289,7 +12289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -12308,7 +12308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12327,7 +12327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -12346,7 +12346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12376,7 +12376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12395,7 +12395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12414,7 +12414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12433,7 +12433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12452,7 +12452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12471,7 +12471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::dropMimeData(int index0, const QMimeData* data1, Qt::DropAction action2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -12501,7 +12501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -12531,7 +12531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -12550,7 +12550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12569,7 +12569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12599,7 +12599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12629,7 +12629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12648,7 +12648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12678,7 +12678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12697,7 +12697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12727,7 +12727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12757,7 +12757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12776,7 +12776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12806,7 +12806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12825,7 +12825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12844,7 +12844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QListWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -12874,7 +12874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12893,7 +12893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12912,7 +12912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12942,7 +12942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12972,7 +12972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12991,7 +12991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13010,7 +13010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -13029,7 +13029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13048,7 +13048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13078,7 +13078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QListWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -13108,7 +13108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QListWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13138,7 +13138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13157,7 +13157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13176,7 +13176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13195,7 +13195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13214,7 +13214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13233,7 +13233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13263,7 +13263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QListWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13293,7 +13293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13312,7 +13312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QListWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13342,7 +13342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13361,7 +13361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13380,7 +13380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13399,7 +13399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13418,7 +13418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13437,7 +13437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -13456,7 +13456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13475,7 +13475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QListWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -13505,7 +13505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -13524,7 +13524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QListWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -13554,7 +13554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -13573,7 +13573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -13592,7 +13592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -13611,7 +13611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13630,7 +13630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QListWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13660,7 +13660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13679,7 +13679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13709,7 +13709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13739,7 +13739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -13758,7 +13758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QListWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13788,7 +13788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13807,7 +13807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13826,7 +13826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13845,7 +13845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13864,7 +13864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13883,7 +13883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13913,7 +13913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13932,7 +13932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13951,7 +13951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QListWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -13981,7 +13981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14011,7 +14011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QListWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14041,7 +14041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QListWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -14071,7 +14071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QListWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -14101,7 +14101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14320,7 +14320,7 @@ PythonQtShell_QListWidgetItem::~PythonQtShell_QListWidgetItem() { QListWidgetItem* PythonQtShell_QListWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QListWidgetItem*"}; @@ -14350,7 +14350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListWidgetItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -14380,7 +14380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidgetItem::__lt__(const QListWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QListWidgetItem&"}; @@ -14410,7 +14410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14429,7 +14429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::setBackgroundColor(const QColor& color0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setBackgroundColor"); + static PyObject* name = PyUnicode_FromString("setBackgroundColor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QColor&"}; @@ -14448,7 +14448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::setData(int role0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -14467,7 +14467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14679,7 +14679,7 @@ PythonQtShell_QMainWindow::~PythonQtShell_QMainWindow() { void PythonQtShell_QMainWindow::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14698,7 +14698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14717,7 +14717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14736,7 +14736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14755,7 +14755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14774,7 +14774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMenu* PythonQtShell_QMainWindow::createPopupMenu() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createPopupMenu"); + static PyObject* name = PyUnicode_FromString("createPopupMenu"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMenu*"}; @@ -14804,7 +14804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14823,7 +14823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14853,7 +14853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14872,7 +14872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14891,7 +14891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14910,7 +14910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14929,7 +14929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14948,7 +14948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14978,7 +14978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15008,7 +15008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15027,7 +15027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15057,7 +15057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15076,7 +15076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15106,7 +15106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15136,7 +15136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15155,7 +15155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15174,7 +15174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15193,7 +15193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMainWindow::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15223,7 +15223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15242,7 +15242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15261,7 +15261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15280,7 +15280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15310,7 +15310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMainWindow::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15340,7 +15340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15359,7 +15359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15378,7 +15378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15397,7 +15397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15416,7 +15416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15435,7 +15435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15465,7 +15465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMainWindow::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15495,7 +15495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15514,7 +15514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMainWindow::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15544,7 +15544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15563,7 +15563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMainWindow::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15593,7 +15593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15612,7 +15612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMainWindow::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15642,7 +15642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15661,7 +15661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15680,7 +15680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp index 732956cba..f35fc1b1d 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp @@ -589,7 +589,7 @@ PythonQtShell_QMdiArea::~PythonQtShell_QMdiArea() { void PythonQtShell_QMdiArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -608,7 +608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -627,7 +627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::childEvent(QChildEvent* childEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -646,7 +646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -665,7 +665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -684,7 +684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -703,7 +703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -733,7 +733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -752,7 +752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -771,7 +771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -790,7 +790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -809,7 +809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -828,7 +828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -858,7 +858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -888,7 +888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -907,7 +907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -937,7 +937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -956,7 +956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1016,7 +1016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1035,7 +1035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1054,7 +1054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1073,7 +1073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMdiArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1103,7 +1103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1122,7 +1122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1141,7 +1141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1160,7 +1160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1190,7 +1190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1209,7 +1209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1228,7 +1228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1247,7 +1247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1266,7 +1266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1285,7 +1285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1315,7 +1315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMdiArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1345,7 +1345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::paintEvent(QPaintEvent* paintEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1364,7 +1364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMdiArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1394,7 +1394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::resizeEvent(QResizeEvent* resizeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1413,7 +1413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1432,7 +1432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1451,7 +1451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMdiArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1481,7 +1481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1500,7 +1500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1519,7 +1519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::timerEvent(QTimerEvent* timerEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1538,7 +1538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1568,7 +1568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMdiArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1598,7 +1598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1802,7 +1802,7 @@ PythonQtShell_QMdiSubWindow::~PythonQtShell_QMdiSubWindow() { void PythonQtShell_QMdiSubWindow::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1821,7 +1821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::changeEvent(QEvent* changeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1840,7 +1840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::childEvent(QChildEvent* childEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1859,7 +1859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::closeEvent(QCloseEvent* closeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1878,7 +1878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::contextMenuEvent(QContextMenuEvent* contextMenuEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1897,7 +1897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1916,7 +1916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1946,7 +1946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1965,7 +1965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1984,7 +1984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2003,7 +2003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2022,7 +2022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2041,7 +2041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2071,7 +2071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2101,7 +2101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::focusInEvent(QFocusEvent* focusInEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2120,7 +2120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2150,7 +2150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::focusOutEvent(QFocusEvent* focusOutEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2169,7 +2169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2199,7 +2199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2229,7 +2229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::hideEvent(QHideEvent* hideEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2248,7 +2248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2267,7 +2267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2286,7 +2286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMdiSubWindow::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2316,7 +2316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::keyPressEvent(QKeyEvent* keyEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2335,7 +2335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2354,7 +2354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::leaveEvent(QEvent* leaveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2373,7 +2373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2403,7 +2403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseDoubleClickEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2422,7 +2422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseMoveEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2441,7 +2441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mousePressEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2460,7 +2460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseReleaseEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2479,7 +2479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::moveEvent(QMoveEvent* moveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2498,7 +2498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2528,7 +2528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMdiSubWindow::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2558,7 +2558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::paintEvent(QPaintEvent* paintEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2577,7 +2577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMdiSubWindow::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2607,7 +2607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::resizeEvent(QResizeEvent* resizeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2626,7 +2626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMdiSubWindow::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2656,7 +2656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2675,7 +2675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2694,7 +2694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::timerEvent(QTimerEvent* timerEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2713,7 +2713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2922,7 +2922,7 @@ PythonQtShell_QMenu::~PythonQtShell_QMenu() { void PythonQtShell_QMenu::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2941,7 +2941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2960,7 +2960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2979,7 +2979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2998,7 +2998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3017,7 +3017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3036,7 +3036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3066,7 +3066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3085,7 +3085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3104,7 +3104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3123,7 +3123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3142,7 +3142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3161,7 +3161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3191,7 +3191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3221,7 +3221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3240,7 +3240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3270,7 +3270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3289,7 +3289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3319,7 +3319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3349,7 +3349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3368,7 +3368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3387,7 +3387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3406,7 +3406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMenu::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3436,7 +3436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3455,7 +3455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3474,7 +3474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3493,7 +3493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3523,7 +3523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMenu::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3553,7 +3553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3572,7 +3572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3591,7 +3591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3610,7 +3610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3629,7 +3629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3648,7 +3648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3678,7 +3678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMenu::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3708,7 +3708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3727,7 +3727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMenu::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3757,7 +3757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3776,7 +3776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMenu::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3806,7 +3806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3825,7 +3825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3844,7 +3844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3863,7 +3863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4181,7 +4181,7 @@ PythonQtShell_QMenuBar::~PythonQtShell_QMenuBar() { void PythonQtShell_QMenuBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4200,7 +4200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4219,7 +4219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4238,7 +4238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4257,7 +4257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4276,7 +4276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4295,7 +4295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4325,7 +4325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4344,7 +4344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4363,7 +4363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4382,7 +4382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4401,7 +4401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4420,7 +4420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4450,7 +4450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4480,7 +4480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4499,7 +4499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4529,7 +4529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4548,7 +4548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4578,7 +4578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4608,7 +4608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4627,7 +4627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4646,7 +4646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4665,7 +4665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMenuBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4695,7 +4695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4714,7 +4714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4733,7 +4733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4752,7 +4752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4782,7 +4782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4801,7 +4801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4820,7 +4820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4839,7 +4839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4858,7 +4858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4877,7 +4877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4907,7 +4907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMenuBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4937,7 +4937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4956,7 +4956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMenuBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4986,7 +4986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5005,7 +5005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::setVisible(bool visible0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5024,7 +5024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMenuBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5054,7 +5054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5073,7 +5073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5092,7 +5092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5111,7 +5111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5335,7 +5335,7 @@ PythonQtShell_QMessageBox::~PythonQtShell_QMessageBox() { void PythonQtShell_QMessageBox::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5354,7 +5354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5373,7 +5373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5392,7 +5392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5411,7 +5411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5430,7 +5430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5449,7 +5449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5468,7 +5468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5498,7 +5498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5517,7 +5517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5536,7 +5536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5555,7 +5555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5574,7 +5574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5593,7 +5593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5612,7 +5612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5642,7 +5642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5672,7 +5672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5702,7 +5702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5721,7 +5721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5751,7 +5751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5770,7 +5770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5800,7 +5800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5830,7 +5830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5849,7 +5849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5868,7 +5868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5887,7 +5887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMessageBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5917,7 +5917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5936,7 +5936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5955,7 +5955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5974,7 +5974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6004,7 +6004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6023,7 +6023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6042,7 +6042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6061,7 +6061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6080,7 +6080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6099,7 +6099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6129,7 +6129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6148,7 +6148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMessageBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6178,7 +6178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6197,7 +6197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMessageBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6227,7 +6227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6246,7 +6246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6265,7 +6265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMessageBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6295,7 +6295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6314,7 +6314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6333,7 +6333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6352,7 +6352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6723,7 +6723,7 @@ PythonQtShell_QMouseEventTransition::~PythonQtShell_QMouseEventTransition() { void PythonQtShell_QMouseEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6742,7 +6742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6761,7 +6761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6791,7 +6791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6821,7 +6821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6851,7 +6851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6870,7 +6870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6963,7 +6963,7 @@ PythonQtShell_QMovie::~PythonQtShell_QMovie() { void PythonQtShell_QMovie::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6982,7 +6982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMovie::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7001,7 +7001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMovie::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7031,7 +7031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMovie::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7061,7 +7061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMovie::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7263,7 +7263,7 @@ PythonQtShell_QOffscreenSurface::~PythonQtShell_QOffscreenSurface() { void PythonQtShell_QOffscreenSurface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7282,7 +7282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOffscreenSurface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7301,7 +7301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOffscreenSurface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7331,7 +7331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOffscreenSurface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7361,7 +7361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurfaceFormat PythonQtShell_QOffscreenSurface::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -7391,7 +7391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QOffscreenSurface::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7421,7 +7421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QOffscreenSurface::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -7451,7 +7451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOffscreenSurface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7634,7 +7634,7 @@ PythonQtShell_QOpenGLContext::~PythonQtShell_QOpenGLContext() { void PythonQtShell_QOpenGLContext::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7653,7 +7653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLContext::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7672,7 +7672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLContext::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7702,7 +7702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLContext::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7732,7 +7732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLContext::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8808,7 +8808,7 @@ PythonQtShell_QOpenGLPaintDevice::~PythonQtShell_QOpenGLPaintDevice() { int PythonQtShell_QOpenGLPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8838,7 +8838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLPaintDevice::ensureActiveTarget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ensureActiveTarget"); + static PyObject* name = PyUnicode_FromString("ensureActiveTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8857,7 +8857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8876,7 +8876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QOpenGLPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8906,7 +8906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QOpenGLPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8936,7 +8936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QOpenGLPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8966,7 +8966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QOpenGLPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9084,7 +9084,7 @@ PythonQtShell_QOpenGLShader::~PythonQtShell_QOpenGLShader() { void PythonQtShell_QOpenGLShader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9103,7 +9103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9122,7 +9122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9152,7 +9152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9182,7 +9182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9261,7 +9261,7 @@ PythonQtShell_QOpenGLShaderProgram::~PythonQtShell_QOpenGLShaderProgram() { void PythonQtShell_QOpenGLShaderProgram::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9280,7 +9280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShaderProgram::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9299,7 +9299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9329,7 +9329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9359,7 +9359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::link() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9389,7 +9389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShaderProgram::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10348,7 +10348,7 @@ PythonQtShell_QOpenGLTimeMonitor::~PythonQtShell_QOpenGLTimeMonitor() { void PythonQtShell_QOpenGLTimeMonitor::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10367,7 +10367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimeMonitor::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10386,7 +10386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimeMonitor::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10416,7 +10416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimeMonitor::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10446,7 +10446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimeMonitor::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10530,7 +10530,7 @@ PythonQtShell_QOpenGLTimerQuery::~PythonQtShell_QOpenGLTimerQuery() { void PythonQtShell_QOpenGLTimerQuery::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10549,7 +10549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimerQuery::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10568,7 +10568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimerQuery::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10598,7 +10598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimerQuery::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10628,7 +10628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimerQuery::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10766,7 +10766,7 @@ PythonQtShell_QOpenGLVertexArrayObject::~PythonQtShell_QOpenGLVertexArrayObject( void PythonQtShell_QOpenGLVertexArrayObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10785,7 +10785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLVertexArrayObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10804,7 +10804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLVertexArrayObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10834,7 +10834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLVertexArrayObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10864,7 +10864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLVertexArrayObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11109,7 +11109,7 @@ PythonQtShell_QPageSetupDialog::~PythonQtShell_QPageSetupDialog() { void PythonQtShell_QPageSetupDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11128,7 +11128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11147,7 +11147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11166,7 +11166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11185,7 +11185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11204,7 +11204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11223,7 +11223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11242,7 +11242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11272,7 +11272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11291,7 +11291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11310,7 +11310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11329,7 +11329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11348,7 +11348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11367,7 +11367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11386,7 +11386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11416,7 +11416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11446,7 +11446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11476,7 +11476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11495,7 +11495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11525,7 +11525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11544,7 +11544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11574,7 +11574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11604,7 +11604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11623,7 +11623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11642,7 +11642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11661,7 +11661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPageSetupDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11691,7 +11691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11710,7 +11710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11729,7 +11729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11748,7 +11748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPageSetupDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11778,7 +11778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11797,7 +11797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11816,7 +11816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11835,7 +11835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11854,7 +11854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11873,7 +11873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPageSetupDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11903,7 +11903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11922,7 +11922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPageSetupDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11952,7 +11952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11971,7 +11971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPageSetupDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12001,7 +12001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12020,7 +12020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12039,7 +12039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPageSetupDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12069,7 +12069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12088,7 +12088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12107,7 +12107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12126,7 +12126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPageSetupDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp index 27d6b2ff1..db729b8bd 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp @@ -95,7 +95,7 @@ PythonQtShell_QPagedPaintDevice::~PythonQtShell_QPagedPaintDevice() { int PythonQtShell_QPagedPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -125,7 +125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -144,7 +144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPagedPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -174,7 +174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPagedPaintDevice::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -204,7 +204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPagedPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -234,7 +234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPagedPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -264,7 +264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setMargins(const QPagedPaintDevice::Margins& margins0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -283,7 +283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setPageSize(QPagedPaintDevice::PageSize size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -302,7 +302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -321,7 +321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPagedPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -441,7 +441,7 @@ PythonQtShell_QPaintDevice::~PythonQtShell_QPaintDevice() { int PythonQtShell_QPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -471,7 +471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -490,7 +490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -520,7 +520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -580,7 +580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -710,7 +710,7 @@ PythonQtShell_QPaintEngine::~PythonQtShell_QPaintEngine() { bool PythonQtShell_QPaintEngine::begin(QPaintDevice* pdev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("begin"); + static PyObject* name = PyUnicode_FromString("begin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QPaintDevice*"}; @@ -740,7 +740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPoint PythonQtShell_QPaintEngine::coordinateOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("coordinateOffset"); + static PyObject* name = PyUnicode_FromString("coordinateOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPoint"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawEllipse(const QRect& r0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -789,7 +789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawEllipse(const QRectF& r0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -808,7 +808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawImage(const QRectF& r0, const QImage& pm1, const QRectF& sr2, Qt::ImageConversionFlags flags3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawImage"); + static PyObject* name = PyUnicode_FromString("drawImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QImage&" , "const QRectF&" , "Qt::ImageConversionFlags"}; @@ -827,7 +827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawLines(const QLine* lines0, int lineCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLine*" , "int"}; @@ -846,7 +846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawLines(const QLineF* lines0, int lineCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLineF*" , "int"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPath(const QPainterPath& path0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPath"); + static PyObject* name = PyUnicode_FromString("drawPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPainterPath&"}; @@ -884,7 +884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPixmap(const QRectF& r0, const QPixmap& pm1, const QRectF& sr2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPixmap"); + static PyObject* name = PyUnicode_FromString("drawPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QRectF&"}; @@ -903,7 +903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPoints(const QPoint* points0, int pointCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int"}; @@ -922,7 +922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPoints(const QPointF* points0, int pointCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int"}; @@ -941,7 +941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPolygon(const QPoint* points0, int pointCount1, QPaintEngine::PolygonDrawMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -960,7 +960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPolygon(const QPointF* points0, int pointCount1, QPaintEngine::PolygonDrawMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -979,7 +979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawRects(const QRect* rects0, int rectCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect*" , "int"}; @@ -998,7 +998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawRects(const QRectF* rects0, int rectCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF*" , "int"}; @@ -1017,7 +1017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawTextItem(const QPointF& p0, const QTextItem& textItem1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawTextItem"); + static PyObject* name = PyUnicode_FromString("drawTextItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&" , "const QTextItem&"}; @@ -1036,7 +1036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawTiledPixmap(const QRectF& r0, const QPixmap& pixmap1, const QPointF& s2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawTiledPixmap"); + static PyObject* name = PyUnicode_FromString("drawTiledPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QPointF&"}; @@ -1055,7 +1055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPaintEngine::end() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("end"); + static PyObject* name = PyUnicode_FromString("end"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1085,7 +1085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine::Type PythonQtShell_QPaintEngine::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine::Type"}; @@ -1115,7 +1115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::updateState(const QPaintEngineState& state0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPaintEngineState&"}; @@ -2954,7 +2954,7 @@ PythonQtShell_QPanGesture::~PythonQtShell_QPanGesture() { void PythonQtShell_QPanGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2973,7 +2973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPanGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2992,7 +2992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPanGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3022,7 +3022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPanGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPanGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3116,7 +3116,7 @@ PythonQtShell_QPdfWriter::~PythonQtShell_QPdfWriter() { void PythonQtShell_QPdfWriter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3135,7 +3135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3154,7 +3154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPdfWriter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3184,7 +3184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3214,7 +3214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3244,7 +3244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3263,7 +3263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPdfWriter::metric(QPaintDevice::PaintDeviceMetric id0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3293,7 +3293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3323,7 +3323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPdfWriter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3353,7 +3353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPdfWriter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setMargins(const QPagedPaintDevice::Margins& m0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -3402,7 +3402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -3421,7 +3421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -3440,7 +3440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPdfWriter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3470,7 +3470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3563,7 +3563,7 @@ PythonQtShell_QPicture::~PythonQtShell_QPicture() { int PythonQtShell_QPicture::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3593,7 +3593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPicture::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3612,7 +3612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPicture::metric(QPaintDevice::PaintDeviceMetric m0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3642,7 +3642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPicture::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3672,7 +3672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPicture::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3702,7 +3702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPicture::setData(const char* data0, uint size1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*" , "uint"}; @@ -3721,7 +3721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPicture::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3845,7 +3845,7 @@ PythonQtShell_QPictureFormatPlugin::~PythonQtShell_QPictureFormatPlugin() { void PythonQtShell_QPictureFormatPlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3864,7 +3864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPictureFormatPlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3883,7 +3883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3913,7 +3913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3943,7 +3943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::installIOHandler(const QString& format0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("installIOHandler"); + static PyObject* name = PyUnicode_FromString("installIOHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3973,7 +3973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::loadPicture(const QString& format0, const QString& filename1, QPicture* pic2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadPicture"); + static PyObject* name = PyUnicode_FromString("loadPicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QPicture*"}; @@ -4003,7 +4003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::savePicture(const QString& format0, const QString& filename1, const QPicture& pic2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("savePicture"); + static PyObject* name = PyUnicode_FromString("savePicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QPicture&"}; @@ -4033,7 +4033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPictureFormatPlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4211,7 +4211,7 @@ PythonQtShell_QPinchGesture::~PythonQtShell_QPinchGesture() { void PythonQtShell_QPinchGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4230,7 +4230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPinchGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4249,7 +4249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPinchGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4279,7 +4279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPinchGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4309,7 +4309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPinchGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4533,7 +4533,7 @@ PythonQtShell_QPlainTextDocumentLayout::~PythonQtShell_QPlainTextDocumentLayout( QRectF PythonQtShell_QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock& block0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -4563,7 +4563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4582,7 +4582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4601,7 +4601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::documentChanged(int from0, int arg__2, int charsAdded2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -4620,7 +4620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QPlainTextDocumentLayout::documentSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -4650,7 +4650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::draw(QPainter* arg__1, const QAbstractTextDocumentLayout::PaintContext& arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -4669,7 +4669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::drawInlineObject(QPainter* painter0, const QRectF& rect1, QTextInlineObject object2, int posInDocument3, const QTextFormat& format4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -4688,7 +4688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextDocumentLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4718,7 +4718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextDocumentLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4748,7 +4748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QPlainTextDocumentLayout::frameBoundingRect(QTextFrame* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -4778,7 +4778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextDocumentLayout::hitTest(const QPointF& arg__1, Qt::HitTestAccuracy arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -4808,7 +4808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextDocumentLayout::pageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4838,7 +4838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::positionInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -4857,7 +4857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::resizeInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -4876,7 +4876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4960,7 +4960,7 @@ PythonQtShell_QPlainTextEdit::~PythonQtShell_QPlainTextEdit() { void PythonQtShell_QPlainTextEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4979,7 +4979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -5009,7 +5009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5028,7 +5028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5047,7 +5047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5066,7 +5066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5085,7 +5085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QPlainTextEdit::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -5115,7 +5115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5134,7 +5134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5164,7 +5164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -5183,7 +5183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5202,7 +5202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5221,7 +5221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5240,7 +5240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5259,7 +5259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5278,7 +5278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5308,7 +5308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5338,7 +5338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5357,7 +5357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5387,7 +5387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5406,7 +5406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5436,7 +5436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5466,7 +5466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5485,7 +5485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5504,7 +5504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5523,7 +5523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5553,7 +5553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -5572,7 +5572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5591,7 +5591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5610,7 +5610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5629,7 +5629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPlainTextEdit::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -5659,7 +5659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5689,7 +5689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5708,7 +5708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5727,7 +5727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5746,7 +5746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5765,7 +5765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5784,7 +5784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5814,7 +5814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPlainTextEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5844,7 +5844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5863,7 +5863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPlainTextEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5893,7 +5893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5912,7 +5912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5931,7 +5931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5950,7 +5950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPlainTextEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5980,7 +5980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5999,7 +5999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6018,7 +6018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6037,7 +6037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6067,7 +6067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPlainTextEdit::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6097,7 +6097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6888,7 +6888,7 @@ PythonQtShell_QPrintDialog::~PythonQtShell_QPrintDialog() { void PythonQtShell_QPrintDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6907,7 +6907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6926,7 +6926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6945,7 +6945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6964,7 +6964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6983,7 +6983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7002,7 +7002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7021,7 +7021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7051,7 +7051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7070,7 +7070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7089,7 +7089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7108,7 +7108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7127,7 +7127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7146,7 +7146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7165,7 +7165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7195,7 +7195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7225,7 +7225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7255,7 +7255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7274,7 +7274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7304,7 +7304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7323,7 +7323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7353,7 +7353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7383,7 +7383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7402,7 +7402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7421,7 +7421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7440,7 +7440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7470,7 +7470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7489,7 +7489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7508,7 +7508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7527,7 +7527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7557,7 +7557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7576,7 +7576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7595,7 +7595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7614,7 +7614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7633,7 +7633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7652,7 +7652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7682,7 +7682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7701,7 +7701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrintDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7731,7 +7731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7750,7 +7750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrintDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7780,7 +7780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7799,7 +7799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7818,7 +7818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrintDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7848,7 +7848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7867,7 +7867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7886,7 +7886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7905,7 +7905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7993,7 +7993,7 @@ PythonQtShell_QPrintEngine::~PythonQtShell_QPrintEngine() { bool PythonQtShell_QPrintEngine::abort() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8023,7 +8023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintEngine::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8053,7 +8053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintEngine::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8083,7 +8083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPrinter::PrinterState PythonQtShell_QPrintEngine::printerState() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("printerState"); + static PyObject* name = PyUnicode_FromString("printerState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPrinter::PrinterState"}; @@ -8113,7 +8113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintEngine::property(QPrintEngine::PrintEnginePropertyKey key0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QPrintEngine::PrintEnginePropertyKey"}; @@ -8143,7 +8143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintEngine::setProperty(QPrintEngine::PrintEnginePropertyKey key0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPrintEngine::PrintEnginePropertyKey" , "const QVariant&"}; @@ -8202,7 +8202,7 @@ PythonQtShell_QPrintPreviewDialog::~PythonQtShell_QPrintPreviewDialog() { void PythonQtShell_QPrintPreviewDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8221,7 +8221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8240,7 +8240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8259,7 +8259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8278,7 +8278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8297,7 +8297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8316,7 +8316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8335,7 +8335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8365,7 +8365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8384,7 +8384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8403,7 +8403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8422,7 +8422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8441,7 +8441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8460,7 +8460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8479,7 +8479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8509,7 +8509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8539,7 +8539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8569,7 +8569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8588,7 +8588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8618,7 +8618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8637,7 +8637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8667,7 +8667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8697,7 +8697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8716,7 +8716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8735,7 +8735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8754,7 +8754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintPreviewDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8784,7 +8784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8803,7 +8803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8822,7 +8822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8841,7 +8841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8871,7 +8871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8890,7 +8890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8909,7 +8909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8928,7 +8928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8947,7 +8947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8966,7 +8966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8996,7 +8996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9015,7 +9015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrintPreviewDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9045,7 +9045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9064,7 +9064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrintPreviewDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9094,7 +9094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9113,7 +9113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9132,7 +9132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrintPreviewDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9162,7 +9162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9181,7 +9181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9200,7 +9200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9219,7 +9219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9277,7 +9277,7 @@ PythonQtShell_QPrintPreviewWidget::~PythonQtShell_QPrintPreviewWidget() { void PythonQtShell_QPrintPreviewWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9296,7 +9296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9315,7 +9315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9334,7 +9334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9353,7 +9353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9372,7 +9372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9391,7 +9391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9421,7 +9421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9440,7 +9440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9459,7 +9459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9478,7 +9478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9497,7 +9497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9516,7 +9516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9546,7 +9546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9576,7 +9576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9595,7 +9595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9625,7 +9625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9644,7 +9644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9674,7 +9674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9704,7 +9704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9723,7 +9723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9742,7 +9742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9761,7 +9761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPrintPreviewWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9791,7 +9791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9810,7 +9810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9829,7 +9829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9848,7 +9848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrintPreviewWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9878,7 +9878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPrintPreviewWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9908,7 +9908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9927,7 +9927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9946,7 +9946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9965,7 +9965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9984,7 +9984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10003,7 +10003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrintPreviewWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10033,7 +10033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrintPreviewWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10063,7 +10063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10082,7 +10082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrintPreviewWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10112,7 +10112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10131,7 +10131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrintPreviewWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10161,7 +10161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10180,7 +10180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPrintPreviewWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10210,7 +10210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10229,7 +10229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10248,7 +10248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrintPreviewWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10316,7 +10316,7 @@ PythonQtShell_QPrinter::~PythonQtShell_QPrinter() { int PythonQtShell_QPrinter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10346,7 +10346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10365,7 +10365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPrinter::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10395,7 +10395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPrinter::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10425,7 +10425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPrinter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10455,7 +10455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPrinter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10485,7 +10485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::setMargins(const QPagedPaintDevice::Margins& m0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -10504,7 +10504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::setPageSize(QPagedPaintDevice::PageSize arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -10523,7 +10523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPrinter::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -10542,7 +10542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPrinter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11060,7 +11060,7 @@ PythonQtShell_QProgressBar::~PythonQtShell_QProgressBar() { void PythonQtShell_QProgressBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11079,7 +11079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11098,7 +11098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11117,7 +11117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11136,7 +11136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11155,7 +11155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11174,7 +11174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11204,7 +11204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11223,7 +11223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11242,7 +11242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11261,7 +11261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11280,7 +11280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11299,7 +11299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11329,7 +11329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11359,7 +11359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11378,7 +11378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11408,7 +11408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11427,7 +11427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11457,7 +11457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11487,7 +11487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11506,7 +11506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11525,7 +11525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11544,7 +11544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QProgressBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11574,7 +11574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11593,7 +11593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11612,7 +11612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11631,7 +11631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11661,7 +11661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11680,7 +11680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11699,7 +11699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11718,7 +11718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11737,7 +11737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11756,7 +11756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11786,7 +11786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QProgressBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11816,7 +11816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11835,7 +11835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QProgressBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11865,7 +11865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11884,7 +11884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QProgressBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11914,7 +11914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11933,7 +11933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11952,7 +11952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QProgressBar::text() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("text"); + static PyObject* name = PyUnicode_FromString("text"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -11982,7 +11982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12001,7 +12001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12135,7 +12135,7 @@ PythonQtShell_QProgressDialog::~PythonQtShell_QProgressDialog() { void PythonQtShell_QProgressDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12154,7 +12154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12173,7 +12173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12192,7 +12192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12211,7 +12211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12230,7 +12230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12249,7 +12249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12268,7 +12268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12298,7 +12298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12317,7 +12317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12336,7 +12336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12355,7 +12355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12374,7 +12374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12393,7 +12393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12412,7 +12412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12442,7 +12442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12472,7 +12472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12502,7 +12502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12521,7 +12521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12551,7 +12551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12570,7 +12570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12600,7 +12600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12630,7 +12630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12649,7 +12649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12668,7 +12668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12687,7 +12687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QProgressDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12717,7 +12717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12736,7 +12736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12755,7 +12755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12774,7 +12774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12804,7 +12804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12823,7 +12823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12842,7 +12842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12861,7 +12861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12880,7 +12880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12899,7 +12899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12929,7 +12929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12948,7 +12948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QProgressDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12978,7 +12978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12997,7 +12997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QProgressDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13027,7 +13027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13046,7 +13046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13065,7 +13065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QProgressDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13095,7 +13095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13114,7 +13114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13133,7 +13133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13152,7 +13152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp index 241dc5070..6af8f53cd 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp @@ -86,7 +86,7 @@ PythonQtShell_QProxyStyle::~PythonQtShell_QProxyStyle() { void PythonQtShell_QProxyStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -124,7 +124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawComplexControl(QStyle::ComplexControl control0, const QStyleOptionComplex* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -143,7 +143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -162,7 +162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -181,7 +181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -200,7 +200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawPrimitive(QStyle::PrimitiveElement element0, const QStyleOption* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -219,7 +219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProxyStyle::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -249,7 +249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProxyStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -279,7 +279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -309,7 +309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QProxyStyle::hitTestComplexControl(QStyle::ComplexControl control0, const QStyleOptionComplex* option1, const QPoint& pos2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -339,7 +339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -369,7 +369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -399,7 +399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::pixelMetric(QStyle::PixelMetric metric0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -429,7 +429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -448,7 +448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QPalette& pal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -467,7 +467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -486,7 +486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QProxyStyle::sizeFromContents(QStyle::ContentsType type0, const QStyleOption* option1, const QSize& size2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -516,7 +516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QProxyStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -546,7 +546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QProxyStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -576,7 +576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QProxyStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -606,7 +606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::styleHint(QStyle::StyleHint hint0, const QStyleOption* option1, const QWidget* widget2, QStyleHintReturn* returnData3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -666,7 +666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::subElementRect(QStyle::SubElement element0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -696,7 +696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -715,7 +715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::unpolish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -734,7 +734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::unpolish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -897,7 +897,7 @@ PythonQtShell_QPushButton::~PythonQtShell_QPushButton() { void PythonQtShell_QPushButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -916,7 +916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -935,7 +935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -954,7 +954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -973,7 +973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -992,7 +992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1011,7 +1011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1030,7 +1030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1060,7 +1060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1079,7 +1079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1098,7 +1098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1117,7 +1117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1136,7 +1136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1155,7 +1155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1185,7 +1185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1215,7 +1215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1234,7 +1234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1264,7 +1264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1283,7 +1283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1313,7 +1313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1343,7 +1343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1362,7 +1362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -1392,7 +1392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1411,7 +1411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1430,7 +1430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPushButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1460,7 +1460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1479,7 +1479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1498,7 +1498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1517,7 +1517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1547,7 +1547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1566,7 +1566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1585,7 +1585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1623,7 +1623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1642,7 +1642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1672,7 +1672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1691,7 +1691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPushButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1721,7 +1721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPushButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1789,7 +1789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPushButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1819,7 +1819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1838,7 +1838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1857,7 +1857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1876,7 +1876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2293,7 +2293,7 @@ PythonQtShell_QRadioButton::~PythonQtShell_QRadioButton() { void PythonQtShell_QRadioButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2312,7 +2312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2331,7 +2331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2350,7 +2350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2369,7 +2369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2388,7 +2388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2407,7 +2407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2426,7 +2426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2456,7 +2456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2475,7 +2475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2494,7 +2494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2513,7 +2513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2532,7 +2532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2551,7 +2551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2581,7 +2581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2611,7 +2611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2630,7 +2630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2660,7 +2660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2679,7 +2679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2709,7 +2709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2739,7 +2739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2758,7 +2758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::hitButton(const QPoint& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -2788,7 +2788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2807,7 +2807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2826,7 +2826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QRadioButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2856,7 +2856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2875,7 +2875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2894,7 +2894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2913,7 +2913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2943,7 +2943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2962,7 +2962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2981,7 +2981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3000,7 +3000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3019,7 +3019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3038,7 +3038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3068,7 +3068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3087,7 +3087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QRadioButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3117,7 +3117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3136,7 +3136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QRadioButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3166,7 +3166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3185,7 +3185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QRadioButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3215,7 +3215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3234,7 +3234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3253,7 +3253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3272,7 +3272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3543,7 +3543,7 @@ PythonQtShell_QRegExpValidator::~PythonQtShell_QRegExpValidator() { void PythonQtShell_QRegExpValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3562,7 +3562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3581,7 +3581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegExpValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3611,7 +3611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegExpValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3641,7 +3641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3660,7 +3660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3679,7 +3679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QRegExpValidator::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3738,7 +3738,7 @@ PythonQtShell_QRegularExpressionValidator::~PythonQtShell_QRegularExpressionVali void PythonQtShell_QRegularExpressionValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3757,7 +3757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegularExpressionValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3776,7 +3776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegularExpressionValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3806,7 +3806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegularExpressionValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3836,7 +3836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegularExpressionValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3855,7 +3855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegularExpressionValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3874,7 +3874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QRegularExpressionValidator::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3948,7 +3948,7 @@ PythonQtShell_QRubberBand::~PythonQtShell_QRubberBand() { void PythonQtShell_QRubberBand::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3967,7 +3967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3986,7 +3986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4005,7 +4005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4024,7 +4024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4043,7 +4043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4062,7 +4062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4092,7 +4092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4111,7 +4111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4130,7 +4130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4149,7 +4149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4168,7 +4168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4187,7 +4187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4217,7 +4217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4247,7 +4247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4266,7 +4266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4296,7 +4296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4315,7 +4315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4345,7 +4345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4375,7 +4375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4394,7 +4394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4413,7 +4413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4432,7 +4432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QRubberBand::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4462,7 +4462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4481,7 +4481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4500,7 +4500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4519,7 +4519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4549,7 +4549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QRubberBand::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4579,7 +4579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4598,7 +4598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4617,7 +4617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4636,7 +4636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4655,7 +4655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4674,7 +4674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4704,7 +4704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QRubberBand::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4734,7 +4734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4753,7 +4753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QRubberBand::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4783,7 +4783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4802,7 +4802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QRubberBand::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4832,7 +4832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4851,7 +4851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QRubberBand::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4881,7 +4881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4900,7 +4900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4919,7 +4919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5175,7 +5175,7 @@ PythonQtShell_QScrollArea::~PythonQtShell_QScrollArea() { void PythonQtShell_QScrollArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5194,7 +5194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5213,7 +5213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5232,7 +5232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5251,7 +5251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5270,7 +5270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5289,7 +5289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5319,7 +5319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5338,7 +5338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5357,7 +5357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5376,7 +5376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5444,7 +5444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5474,7 +5474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5493,7 +5493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5523,7 +5523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5542,7 +5542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5572,7 +5572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5602,7 +5602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5621,7 +5621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5640,7 +5640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5659,7 +5659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QScrollArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5689,7 +5689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5708,7 +5708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5727,7 +5727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5746,7 +5746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5776,7 +5776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5795,7 +5795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5814,7 +5814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5833,7 +5833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5852,7 +5852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5871,7 +5871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5901,7 +5901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QScrollArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5931,7 +5931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5950,7 +5950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QScrollArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5980,7 +5980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5999,7 +5999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -6018,7 +6018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6037,7 +6037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QScrollArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6067,7 +6067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6086,7 +6086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6105,7 +6105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6124,7 +6124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6154,7 +6154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QScrollArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6184,7 +6184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6293,7 +6293,7 @@ PythonQtShell_QScrollBar::~PythonQtShell_QScrollBar() { void PythonQtShell_QScrollBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6312,7 +6312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6331,7 +6331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6350,7 +6350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6369,7 +6369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6388,7 +6388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6407,7 +6407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6437,7 +6437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6456,7 +6456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6475,7 +6475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6494,7 +6494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6513,7 +6513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6532,7 +6532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6562,7 +6562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6592,7 +6592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6611,7 +6611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6641,7 +6641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6660,7 +6660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6690,7 +6690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6720,7 +6720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6739,7 +6739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6758,7 +6758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6777,7 +6777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QScrollBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6807,7 +6807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6826,7 +6826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6845,7 +6845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6864,7 +6864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6894,7 +6894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QScrollBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6924,7 +6924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6943,7 +6943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6962,7 +6962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6981,7 +6981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7000,7 +7000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7019,7 +7019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7049,7 +7049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QScrollBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7079,7 +7079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7098,7 +7098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QScrollBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7128,7 +7128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7147,7 +7147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QScrollBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7177,7 +7177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7196,7 +7196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7215,7 +7215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7234,7 +7234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7612,7 +7612,7 @@ PythonQtShell_QShortcut::~PythonQtShell_QShortcut() { void PythonQtShell_QShortcut::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7631,7 +7631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QShortcut::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7650,7 +7650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QShortcut::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7680,7 +7680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QShortcut::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7710,7 +7710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QShortcut::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7839,7 +7839,7 @@ PythonQtShell_QSizeGrip::~PythonQtShell_QSizeGrip() { void PythonQtShell_QSizeGrip::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7858,7 +7858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7877,7 +7877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7896,7 +7896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7915,7 +7915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7934,7 +7934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7953,7 +7953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7983,7 +7983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8002,7 +8002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8021,7 +8021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8040,7 +8040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8059,7 +8059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8078,7 +8078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8108,7 +8108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8138,7 +8138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8157,7 +8157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8187,7 +8187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8206,7 +8206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8236,7 +8236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8266,7 +8266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::hideEvent(QHideEvent* hideEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8285,7 +8285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8304,7 +8304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8323,7 +8323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSizeGrip::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8353,7 +8353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8372,7 +8372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8391,7 +8391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8410,7 +8410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8440,7 +8440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSizeGrip::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8470,7 +8470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8489,7 +8489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8508,7 +8508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8527,7 +8527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseReleaseEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8546,7 +8546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::moveEvent(QMoveEvent* moveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8565,7 +8565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8595,7 +8595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSizeGrip::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8625,7 +8625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8644,7 +8644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSizeGrip::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8674,7 +8674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8693,7 +8693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSizeGrip::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8723,7 +8723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8742,7 +8742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8761,7 +8761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8780,7 +8780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8864,7 +8864,7 @@ PythonQtShell_QSlider::~PythonQtShell_QSlider() { void PythonQtShell_QSlider::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8883,7 +8883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8902,7 +8902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8921,7 +8921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8940,7 +8940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8959,7 +8959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8978,7 +8978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9008,7 +9008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9027,7 +9027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9046,7 +9046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9065,7 +9065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9084,7 +9084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9103,7 +9103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9133,7 +9133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9163,7 +9163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9182,7 +9182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9212,7 +9212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9231,7 +9231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9261,7 +9261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9291,7 +9291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9310,7 +9310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9329,7 +9329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9348,7 +9348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9378,7 +9378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9397,7 +9397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9416,7 +9416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9435,7 +9435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9465,7 +9465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9484,7 +9484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9503,7 +9503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9522,7 +9522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9541,7 +9541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9560,7 +9560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9590,7 +9590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSlider::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9620,7 +9620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::paintEvent(QPaintEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9639,7 +9639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSlider::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9669,7 +9669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9688,7 +9688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSlider::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9718,7 +9718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9737,7 +9737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9756,7 +9756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9775,7 +9775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9868,7 +9868,7 @@ PythonQtShell_QSortFilterProxyModel::~PythonQtShell_QSortFilterProxyModel() { QModelIndex PythonQtShell_QSortFilterProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -9898,7 +9898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -9928,7 +9928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -9958,7 +9958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9977,7 +9977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSortFilterProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -10007,7 +10007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10026,7 +10026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSortFilterProxyModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -10056,7 +10056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -10086,7 +10086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10116,7 +10116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10146,7 +10146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -10165,7 +10165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::filterAcceptsColumn(int source_column0, const QModelIndex& source_parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("filterAcceptsColumn"); + static PyObject* name = PyUnicode_FromString("filterAcceptsColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -10195,7 +10195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::filterAcceptsRow(int source_row0, const QModelIndex& source_parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("filterAcceptsRow"); + static PyObject* name = PyUnicode_FromString("filterAcceptsRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -10225,7 +10225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSortFilterProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -10255,7 +10255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10285,7 +10285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSortFilterProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -10315,7 +10315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -10345,7 +10345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10375,7 +10375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10405,7 +10405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSortFilterProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -10435,7 +10435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::lessThan(const QModelIndex& left0, const QModelIndex& right1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lessThan"); + static PyObject* name = PyUnicode_FromString("lessThan"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QModelIndex&"}; @@ -10465,7 +10465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -10495,7 +10495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection& sourceSelection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -10525,7 +10525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionToSource(const QItemSelection& proxySelection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -10555,7 +10555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -10585,7 +10585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSortFilterProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -10615,7 +10615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSortFilterProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -10645,7 +10645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSortFilterProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -10675,7 +10675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -10705,7 +10705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -10735,7 +10735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -10765,7 +10765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10795,7 +10795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10825,7 +10825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10844,7 +10844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSortFilterProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -10874,7 +10874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSortFilterProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -10904,7 +10904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -10934,7 +10934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -10964,7 +10964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -10994,7 +10994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11013,7 +11013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -11043,7 +11043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -11062,7 +11062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSortFilterProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -11092,7 +11092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11122,7 +11122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -11152,7 +11152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -11182,7 +11182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11471,7 +11471,7 @@ PythonQtShell_QSound::~PythonQtShell_QSound() { void PythonQtShell_QSound::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11490,7 +11490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSound::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11509,7 +11509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSound::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11539,7 +11539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSound::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11569,7 +11569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSound::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11628,7 +11628,7 @@ PythonQtShell_QSpacerItem::~PythonQtShell_QSpacerItem() { QSizePolicy::ControlTypes PythonQtShell_QSpacerItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -11658,7 +11658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QSpacerItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -11688,7 +11688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QSpacerItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -11718,7 +11718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpacerItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11748,7 +11748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpacerItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11778,7 +11778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpacerItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11797,7 +11797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpacerItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11827,7 +11827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QSpacerItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -11857,7 +11857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11887,7 +11887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpacerItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11917,7 +11917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11947,7 +11947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpacerItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -11966,7 +11966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11996,7 +11996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QSpacerItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -12026,7 +12026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QSpacerItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -12111,7 +12111,7 @@ PythonQtShell_QSpinBox::~PythonQtShell_QSpinBox() { void PythonQtShell_QSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12130,7 +12130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12149,7 +12149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12168,7 +12168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12187,7 +12187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12206,7 +12206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12225,7 +12225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12244,7 +12244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12274,7 +12274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12293,7 +12293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12312,7 +12312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12331,7 +12331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12350,7 +12350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12369,7 +12369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12399,7 +12399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12429,7 +12429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::fixup(QString& str0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -12448,7 +12448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12467,7 +12467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12497,7 +12497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12516,7 +12516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12546,7 +12546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12576,7 +12576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12595,7 +12595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12614,7 +12614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12633,7 +12633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12663,7 +12663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12682,7 +12682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12701,7 +12701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12720,7 +12720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12750,7 +12750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12769,7 +12769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12788,7 +12788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12807,7 +12807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12826,7 +12826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12845,7 +12845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12875,7 +12875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12905,7 +12905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12924,7 +12924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12954,7 +12954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12973,7 +12973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13003,7 +13003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13022,7 +13022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13041,7 +13041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -13071,7 +13071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13090,7 +13090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSpinBox::textFromValue(int val0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -13120,7 +13120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13139,7 +13139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -13169,7 +13169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::valueFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -13199,7 +13199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13328,7 +13328,7 @@ PythonQtShell_QSplashScreen::~PythonQtShell_QSplashScreen() { void PythonQtShell_QSplashScreen::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13347,7 +13347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13366,7 +13366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13385,7 +13385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13404,7 +13404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13423,7 +13423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13442,7 +13442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13472,7 +13472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13491,7 +13491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13510,7 +13510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13529,7 +13529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::drawContents(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawContents"); + static PyObject* name = PyUnicode_FromString("drawContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13548,7 +13548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13567,7 +13567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13586,7 +13586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13616,7 +13616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13646,7 +13646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13665,7 +13665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13695,7 +13695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13714,7 +13714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13744,7 +13744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13774,7 +13774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13793,7 +13793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13812,7 +13812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13831,7 +13831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplashScreen::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13861,7 +13861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13880,7 +13880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13899,7 +13899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13918,7 +13918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13948,7 +13948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplashScreen::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13978,7 +13978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13997,7 +13997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14016,7 +14016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14035,7 +14035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14054,7 +14054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14073,7 +14073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14103,7 +14103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplashScreen::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14133,7 +14133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14152,7 +14152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplashScreen::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14182,7 +14182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14201,7 +14201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplashScreen::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14231,7 +14231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14250,7 +14250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplashScreen::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14280,7 +14280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14299,7 +14299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14318,7 +14318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14386,7 +14386,7 @@ PythonQtShell_QSplitter::~PythonQtShell_QSplitter() { void PythonQtShell_QSplitter::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14405,7 +14405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14424,7 +14424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14443,7 +14443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14462,7 +14462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14481,7 +14481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSplitterHandle* PythonQtShell_QSplitter::createHandle() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createHandle"); + static PyObject* name = PyUnicode_FromString("createHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSplitterHandle*"}; @@ -14511,7 +14511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14530,7 +14530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14560,7 +14560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14579,7 +14579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14598,7 +14598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14617,7 +14617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14636,7 +14636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14655,7 +14655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14685,7 +14685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14715,7 +14715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14734,7 +14734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14764,7 +14764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14783,7 +14783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14813,7 +14813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14843,7 +14843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14862,7 +14862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14881,7 +14881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14900,7 +14900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplitter::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14930,7 +14930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14949,7 +14949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14968,7 +14968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14987,7 +14987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15017,7 +15017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15036,7 +15036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15055,7 +15055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15074,7 +15074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15093,7 +15093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15112,7 +15112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15142,7 +15142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplitter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15172,7 +15172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15191,7 +15191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplitter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15221,7 +15221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15240,7 +15240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplitter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15270,7 +15270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15289,7 +15289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15308,7 +15308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15327,7 +15327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15530,7 +15530,7 @@ PythonQtShell_QSplitterHandle::~PythonQtShell_QSplitterHandle() { void PythonQtShell_QSplitterHandle::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15549,7 +15549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15568,7 +15568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15587,7 +15587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15606,7 +15606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15625,7 +15625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15644,7 +15644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15674,7 +15674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -15693,7 +15693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -15712,7 +15712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -15731,7 +15731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -15750,7 +15750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15769,7 +15769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15799,7 +15799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15829,7 +15829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15848,7 +15848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15878,7 +15878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15897,7 +15897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15927,7 +15927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15957,7 +15957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15976,7 +15976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15995,7 +15995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16014,7 +16014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplitterHandle::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16044,7 +16044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16063,7 +16063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16082,7 +16082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16101,7 +16101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16131,7 +16131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplitterHandle::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16161,7 +16161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16180,7 +16180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16199,7 +16199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16218,7 +16218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16237,7 +16237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16256,7 +16256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16286,7 +16286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplitterHandle::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16316,7 +16316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16335,7 +16335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplitterHandle::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16365,7 +16365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16384,7 +16384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplitterHandle::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16414,7 +16414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16433,7 +16433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16452,7 +16452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16471,7 +16471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp index a5f2fbd1f..79822a179 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp @@ -61,7 +61,7 @@ PythonQtShell_QStackedLayout::~PythonQtShell_QStackedLayout() { void PythonQtShell_QStackedLayout::addItem(QLayoutItem* item0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -80,7 +80,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -99,7 +99,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QStackedLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -129,7 +129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -159,7 +159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -178,7 +178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -208,7 +208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -238,7 +238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QStackedLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -268,7 +268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStackedLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -298,7 +298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -328,7 +328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -347,7 +347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -377,7 +377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QStackedLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -407,7 +407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QStackedLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -437,7 +437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -467,7 +467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -497,7 +497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::setGeometry(const QRect& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -516,7 +516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QStackedLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -546,7 +546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -668,7 +668,7 @@ PythonQtShell_QStackedWidget::~PythonQtShell_QStackedWidget() { void PythonQtShell_QStackedWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -687,7 +687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -706,7 +706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -725,7 +725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -744,7 +744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -763,7 +763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -782,7 +782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -812,7 +812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -831,7 +831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -850,7 +850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -869,7 +869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -888,7 +888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -907,7 +907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -937,7 +937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1016,7 +1016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1035,7 +1035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1065,7 +1065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1095,7 +1095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1114,7 +1114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1133,7 +1133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1152,7 +1152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStackedWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1182,7 +1182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1201,7 +1201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1220,7 +1220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1239,7 +1239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1269,7 +1269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1299,7 +1299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1318,7 +1318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1337,7 +1337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1356,7 +1356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1375,7 +1375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1394,7 +1394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1424,7 +1424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QStackedWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1454,7 +1454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1473,7 +1473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QStackedWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1503,7 +1503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1522,7 +1522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QStackedWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1552,7 +1552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1571,7 +1571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1590,7 +1590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1609,7 +1609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1683,7 +1683,7 @@ PythonQtShell_QStandardItem::~PythonQtShell_QStandardItem() { QStandardItem* PythonQtShell_QStandardItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStandardItem*"}; @@ -1713,7 +1713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -1743,7 +1743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItem::__lt__(const QStandardItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QStandardItem&"}; @@ -1773,7 +1773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -1792,7 +1792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::setData(const QVariant& value0, int role1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&" , "int"}; @@ -1811,7 +1811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1841,7 +1841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -2286,7 +2286,7 @@ PythonQtShell_QStandardItemModel::~PythonQtShell_QStandardItemModel() { QModelIndex PythonQtShell_QStandardItemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2316,7 +2316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2346,7 +2346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2376,7 +2376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2395,7 +2395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2425,7 +2425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2444,7 +2444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2474,7 +2474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2504,7 +2504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2534,7 +2534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2564,7 +2564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2583,7 +2583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QStandardItemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2613,7 +2613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2643,7 +2643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2673,7 +2673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2703,7 +2703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2733,7 +2733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2763,7 +2763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QStandardItemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2793,7 +2793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QStandardItemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2823,7 +2823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QStandardItemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2853,7 +2853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QStandardItemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2883,7 +2883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2913,7 +2913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2943,7 +2943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2973,7 +2973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QStandardItemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -3082,7 +3082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3112,7 +3112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -3142,7 +3142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -3172,7 +3172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -3202,7 +3202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3232,7 +3232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -3251,7 +3251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStandardItemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -3281,7 +3281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3311,7 +3311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStandardItemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3341,7 +3341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStandardItemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3371,7 +3371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3768,7 +3768,7 @@ PythonQtShell_QStatusBar::~PythonQtShell_QStatusBar() { void PythonQtShell_QStatusBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3787,7 +3787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3806,7 +3806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3825,7 +3825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3844,7 +3844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3863,7 +3863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3882,7 +3882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3912,7 +3912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3931,7 +3931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3950,7 +3950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3969,7 +3969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3988,7 +3988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4007,7 +4007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4037,7 +4037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4067,7 +4067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4086,7 +4086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4116,7 +4116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4135,7 +4135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4165,7 +4165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4195,7 +4195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4214,7 +4214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4233,7 +4233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4252,7 +4252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStatusBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4282,7 +4282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4301,7 +4301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4320,7 +4320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4339,7 +4339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4369,7 +4369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStatusBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4399,7 +4399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4418,7 +4418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4437,7 +4437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4456,7 +4456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4475,7 +4475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4494,7 +4494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4524,7 +4524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QStatusBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4554,7 +4554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4573,7 +4573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QStatusBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4603,7 +4603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4622,7 +4622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QStatusBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4652,7 +4652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4671,7 +4671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStatusBar::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4701,7 +4701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4720,7 +4720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4739,7 +4739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4849,7 +4849,7 @@ PythonQtShell_QStringListModel::~PythonQtShell_QStringListModel() { QModelIndex PythonQtShell_QStringListModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -4879,7 +4879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -4909,7 +4909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -4939,7 +4939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4958,7 +4958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4977,7 +4977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStringListModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5007,7 +5007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5037,7 +5037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5067,7 +5067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5097,7 +5097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5116,7 +5116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QStringListModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -5146,7 +5146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStringListModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -5176,7 +5176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStringListModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -5206,7 +5206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5236,7 +5236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5266,7 +5266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QStringListModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -5296,7 +5296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QStringListModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -5326,7 +5326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QStringListModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -5356,7 +5356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QStringListModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5386,7 +5386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5416,7 +5416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5446,7 +5446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5476,7 +5476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5506,7 +5506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5525,7 +5525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QStringListModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -5555,7 +5555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStringListModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5585,7 +5585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -5615,7 +5615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -5645,7 +5645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -5675,7 +5675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStringListModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -5705,7 +5705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -5724,7 +5724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStringListModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -5754,7 +5754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5784,7 +5784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStringListModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -5814,7 +5814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStringListModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -5844,7 +5844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5932,7 +5932,7 @@ PythonQtShell_QStyle::~PythonQtShell_QStyle() { void PythonQtShell_QStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5951,7 +5951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5970,7 +5970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QPainter* p2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -5989,7 +5989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -6008,7 +6008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -6027,7 +6027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -6046,7 +6046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawPrimitive(QStyle::PrimitiveElement pe0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -6065,7 +6065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6095,7 +6095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6125,7 +6125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -6155,7 +6155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QStyle::hitTestComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, const QPoint& pt2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -6185,7 +6185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -6215,7 +6215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::itemTextRect(const QFontMetrics& fm0, const QRect& r1, int flags2, bool enabled3, const QString& text4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemTextRect"); + static PyObject* name = PyUnicode_FromString("itemTextRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QFontMetrics&" , "const QRect&" , "int" , "bool" , "const QString&"}; @@ -6245,7 +6245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -6275,7 +6275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::pixelMetric(QStyle::PixelMetric metric0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -6305,7 +6305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QApplication* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -6324,7 +6324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QPalette& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -6343,7 +6343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QWidget* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6362,7 +6362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStyle::sizeFromContents(QStyle::ContentsType ct0, const QStyleOption* opt1, const QSize& contentsSize2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -6392,7 +6392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -6422,7 +6422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -6452,7 +6452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -6482,7 +6482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::styleHint(QStyle::StyleHint stylehint0, const QStyleOption* opt1, const QWidget* widget2, QStyleHintReturn* returnData3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -6512,7 +6512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -6542,7 +6542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::subElementRect(QStyle::SubElement subElement0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -6572,7 +6572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6591,7 +6591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::unpolish(QApplication* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -6610,7 +6610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::unpolish(QWidget* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp index 14c91632e..487001007 100644 --- a/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp @@ -412,7 +412,7 @@ PythonQtShell_QStylePlugin::~PythonQtShell_QStylePlugin() { void PythonQtShell_QStylePlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -431,7 +431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle* PythonQtShell_QStylePlugin::create(const QString& key0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle*" , "const QString&"}; @@ -461,7 +461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStylePlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -480,7 +480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStylePlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -510,7 +510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStylePlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -540,7 +540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStylePlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -574,7 +574,7 @@ PythonQtShell_QStyledItemDelegate::~PythonQtShell_QStyledItemDelegate() { void PythonQtShell_QStyledItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -593,7 +593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QStyledItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -623,7 +623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -642,7 +642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -661,7 +661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QStyledItemDelegate::displayText(const QVariant& value0, const QLocale& locale1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("displayText"); + static PyObject* name = PyUnicode_FromString("displayText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QVariant&" , "const QLocale&"}; @@ -691,7 +691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -721,7 +721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -751,7 +751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -781,7 +781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -811,7 +811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::initStyleOption(QStyleOptionViewItem* option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOptionViewItem*" , "const QModelIndex&"}; @@ -830,7 +830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -849,7 +849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QStyledItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -879,7 +879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -898,7 +898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -917,7 +917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStyledItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -947,7 +947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -966,7 +966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -1055,7 +1055,7 @@ PythonQtShell_QSurface::~PythonQtShell_QSurface() { QSurfaceFormat PythonQtShell_QSurface::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -1085,7 +1085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSurface::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1115,7 +1115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPlatformSurface* PythonQtShell_QSurface::surfaceHandle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceHandle"); + static PyObject* name = PyUnicode_FromString("surfaceHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPlatformSurface*"}; @@ -1145,7 +1145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QSurface::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -1431,7 +1431,7 @@ PythonQtShell_QSwipeGesture::~PythonQtShell_QSwipeGesture() { void PythonQtShell_QSwipeGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1450,7 +1450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSwipeGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1469,7 +1469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSwipeGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1499,7 +1499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSwipeGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1529,7 +1529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSwipeGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1578,7 +1578,7 @@ PythonQtShell_QSyntaxHighlighter::~PythonQtShell_QSyntaxHighlighter() { void PythonQtShell_QSyntaxHighlighter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1597,7 +1597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1616,7 +1616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSyntaxHighlighter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1646,7 +1646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSyntaxHighlighter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1676,7 +1676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::highlightBlock(const QString& text0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("highlightBlock"); + static PyObject* name = PyUnicode_FromString("highlightBlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1695,7 +1695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1793,7 +1793,7 @@ PythonQtShell_QSystemTrayIcon::~PythonQtShell_QSystemTrayIcon() { void PythonQtShell_QSystemTrayIcon::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1812,7 +1812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSystemTrayIcon::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSystemTrayIcon::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1861,7 +1861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSystemTrayIcon::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1891,7 +1891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSystemTrayIcon::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1979,7 +1979,7 @@ PythonQtShell_QTabBar::~PythonQtShell_QTabBar() { void PythonQtShell_QTabBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1998,7 +1998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2017,7 +2017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2036,7 +2036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2055,7 +2055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2074,7 +2074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2093,7 +2093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2123,7 +2123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2142,7 +2142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2161,7 +2161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2180,7 +2180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2199,7 +2199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2218,7 +2218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2248,7 +2248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2278,7 +2278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2297,7 +2297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2327,7 +2327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2346,7 +2346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2376,7 +2376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2406,7 +2406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2425,7 +2425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2444,7 +2444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2463,7 +2463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTabBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2493,7 +2493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2512,7 +2512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2531,7 +2531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2550,7 +2550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2580,7 +2580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTabBar::minimumTabSizeHint(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumTabSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumTabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2610,7 +2610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2629,7 +2629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2648,7 +2648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2667,7 +2667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2686,7 +2686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2705,7 +2705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2735,7 +2735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTabBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2765,7 +2765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2784,7 +2784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTabBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2814,7 +2814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTabBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2863,7 +2863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2882,7 +2882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2901,7 +2901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabLayoutChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabLayoutChange"); + static PyObject* name = PyUnicode_FromString("tabLayoutChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2920,7 +2920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2939,7 +2939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTabBar::tabSizeHint(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabSizeHint"); + static PyObject* name = PyUnicode_FromString("tabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2969,7 +2969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2988,7 +2988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3007,7 +3007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3361,7 +3361,7 @@ PythonQtShell_QTabWidget::~PythonQtShell_QTabWidget() { void PythonQtShell_QTabWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3380,7 +3380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3399,7 +3399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3418,7 +3418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3437,7 +3437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3456,7 +3456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3475,7 +3475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3505,7 +3505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3524,7 +3524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3543,7 +3543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3562,7 +3562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3581,7 +3581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3600,7 +3600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3630,7 +3630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3660,7 +3660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3679,7 +3679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3709,7 +3709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3728,7 +3728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3758,7 +3758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::heightForWidth(int width0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3788,7 +3788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3807,7 +3807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3826,7 +3826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3845,7 +3845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTabWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3875,7 +3875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3894,7 +3894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3913,7 +3913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3932,7 +3932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3962,7 +3962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3981,7 +3981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4000,7 +4000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4019,7 +4019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4038,7 +4038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4057,7 +4057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4087,7 +4087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTabWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4117,7 +4117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4136,7 +4136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTabWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4166,7 +4166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4185,7 +4185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTabWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4215,7 +4215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4234,7 +4234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4253,7 +4253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4272,7 +4272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4291,7 +4291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4310,7 +4310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4609,7 +4609,7 @@ PythonQtShell_QTableView::~PythonQtShell_QTableView() { void PythonQtShell_QTableView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4628,7 +4628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4647,7 +4647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4666,7 +4666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -4685,7 +4685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4704,7 +4704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4723,7 +4723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4742,7 +4742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -4761,7 +4761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4780,7 +4780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4799,7 +4799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4829,7 +4829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4848,7 +4848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4867,7 +4867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4886,7 +4886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4905,7 +4905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4924,7 +4924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4954,7 +4954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4973,7 +4973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4992,7 +4992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5022,7 +5022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5052,7 +5052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5071,7 +5071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5101,7 +5101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5120,7 +5120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5150,7 +5150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5180,7 +5180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5199,7 +5199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5229,7 +5229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5248,7 +5248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5267,7 +5267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTableView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -5297,7 +5297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5316,7 +5316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5335,7 +5335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5365,7 +5365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5433,7 +5433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5452,7 +5452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5471,7 +5471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5501,7 +5501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5520,7 +5520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5539,7 +5539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5558,7 +5558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5577,7 +5577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5596,7 +5596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5626,7 +5626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTableView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5656,7 +5656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5675,7 +5675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTableView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5705,7 +5705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5724,7 +5724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5743,7 +5743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5762,7 +5762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5781,7 +5781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5800,7 +5800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5819,7 +5819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5838,7 +5838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTableView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5868,7 +5868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5887,7 +5887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTableView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5917,7 +5917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5936,7 +5936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5955,7 +5955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5974,7 +5974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5993,7 +5993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6012,7 +6012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTableView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6042,7 +6042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6061,7 +6061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6091,7 +6091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6121,7 +6121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -6140,7 +6140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6159,7 +6159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6178,7 +6178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6197,7 +6197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6216,7 +6216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6235,7 +6235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6265,7 +6265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6284,7 +6284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6303,7 +6303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTableView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -6333,7 +6333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6363,7 +6363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTableView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6393,7 +6393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTableView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -6423,7 +6423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTableView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6453,7 +6453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp b/generated_cpp_53/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp index ca5d580ae..b6990c543 100644 --- a/generated_cpp_53/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +++ b/generated_cpp_53/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp @@ -53,7 +53,7 @@ PythonQtShell_QBitmap::~PythonQtShell_QBitmap() { int PythonQtShell_QBitmap::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -83,7 +83,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBitmap::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -113,7 +113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QBitmap::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1409,7 +1409,7 @@ PythonQtShell_QImage::~PythonQtShell_QImage() { int PythonQtShell_QImage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1439,7 +1439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImage::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1488,7 +1488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QImage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1518,7 +1518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QImage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1548,7 +1548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QImage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2732,7 +2732,7 @@ PythonQtShell_QPixmap::~PythonQtShell_QPixmap() { int PythonQtShell_QPixmap::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2762,7 +2762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPixmap::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2781,7 +2781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPixmap::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2811,7 +2811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPixmap::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2841,7 +2841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPixmap::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2871,7 +2871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPixmap::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp b/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp index a8086023b..50fbbdf32 100644 --- a/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +++ b/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp @@ -78,7 +78,7 @@ PythonQtShell_QAbstractVideoBuffer::~PythonQtShell_QAbstractVideoBuffer() { QVariant PythonQtShell_QAbstractVideoBuffer::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -108,7 +108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { uchar* PythonQtShell_QAbstractVideoBuffer::map(QAbstractVideoBuffer::MapMode mode0, int* numBytes1, int* bytesPerLine2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("map"); + static PyObject* name = PyUnicode_FromString("map"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"uchar*" , "QAbstractVideoBuffer::MapMode" , "int*" , "int*"}; @@ -138,7 +138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractVideoBuffer::MapMode PythonQtShell_QAbstractVideoBuffer::mapMode() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapMode"); + static PyObject* name = PyUnicode_FromString("mapMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoBuffer::MapMode"}; @@ -168,7 +168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoBuffer::release() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -187,7 +187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoBuffer::unmap() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unmap"); + static PyObject* name = PyUnicode_FromString("unmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -246,7 +246,7 @@ PythonQtShell_QAbstractVideoSurface::~PythonQtShell_QAbstractVideoSurface() { void PythonQtShell_QAbstractVideoSurface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -265,7 +265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -284,7 +284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -314,7 +314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -344,7 +344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::isFormatSupported(const QVideoSurfaceFormat& format0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVideoSurfaceFormat PythonQtShell_QAbstractVideoSurface::nearestFormat(const QVideoSurfaceFormat& format0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nearestFormat"); + static PyObject* name = PyUnicode_FromString("nearestFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoSurfaceFormat" , "const QVideoSurfaceFormat&"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::present(const QVideoFrame& frame0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("present"); + static PyObject* name = PyUnicode_FromString("present"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoFrame&"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::start(const QVideoSurfaceFormat& format0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::stop() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractVideoSurface::supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedPixelFormats"); + static PyObject* name = PyUnicode_FromString("supportedPixelFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAbstractVideoBuffer::HandleType"}; @@ -513,7 +513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -677,7 +677,7 @@ PythonQtShell_QAudioDecoder::~PythonQtShell_QAudioDecoder() { QMultimedia::AvailabilityStatus PythonQtShell_QAudioDecoder::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -707,7 +707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -737,7 +737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -756,7 +756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QAudioDecoder::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -1360,7 +1360,7 @@ PythonQtShell_QAudioInput::~PythonQtShell_QAudioInput() { void PythonQtShell_QAudioInput::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1379,7 +1379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioInput::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1398,7 +1398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioInput::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioInput::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioInput::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1586,7 +1586,7 @@ PythonQtShell_QAudioOutput::~PythonQtShell_QAudioOutput() { void PythonQtShell_QAudioOutput::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1605,7 +1605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioOutput::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1624,7 +1624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioOutput::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1654,7 +1654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioOutput::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1684,7 +1684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioOutput::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1822,7 +1822,7 @@ PythonQtShell_QAudioProbe::~PythonQtShell_QAudioProbe() { void PythonQtShell_QAudioProbe::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1841,7 +1841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioProbe::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioProbe::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1890,7 +1890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioProbe::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1920,7 +1920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioProbe::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1964,7 +1964,7 @@ PythonQtShell_QAudioRecorder::~PythonQtShell_QAudioRecorder() { void PythonQtShell_QAudioRecorder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1983,7 +1983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioRecorder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2002,7 +2002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2032,7 +2032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2062,7 +2062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QAudioRecorder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2092,7 +2092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioRecorder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2171,7 +2171,7 @@ PythonQtShell_QCamera::~PythonQtShell_QCamera() { QMultimedia::AvailabilityStatus PythonQtShell_QCamera::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -2201,7 +2201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -2231,7 +2231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2250,7 +2250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2299,7 +2299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2329,7 +2329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2359,7 +2359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QCamera::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -2389,7 +2389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2408,7 +2408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -2772,7 +2772,7 @@ PythonQtShell_QCameraImageCapture::~PythonQtShell_QCameraImageCapture() { void PythonQtShell_QCameraImageCapture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2791,7 +2791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraImageCapture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2810,7 +2810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2840,7 +2840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2870,7 +2870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QCameraImageCapture::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2900,7 +2900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::setMediaObject(QMediaObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2930,7 +2930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraImageCapture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3192,7 +3192,7 @@ PythonQtShell_QCameraViewfinder::~PythonQtShell_QCameraViewfinder() { void PythonQtShell_QCameraViewfinder::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3211,7 +3211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3230,7 +3230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3249,7 +3249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3268,7 +3268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3287,7 +3287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3306,7 +3306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3336,7 +3336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3355,7 +3355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3374,7 +3374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3393,7 +3393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3412,7 +3412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3431,7 +3431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3461,7 +3461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3491,7 +3491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3510,7 +3510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3540,7 +3540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3559,7 +3559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3589,7 +3589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3619,7 +3619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3638,7 +3638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3657,7 +3657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3676,7 +3676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCameraViewfinder::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3706,7 +3706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3725,7 +3725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3744,7 +3744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3763,7 +3763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QCameraViewfinder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -3793,7 +3793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3823,7 +3823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCameraViewfinder::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3853,7 +3853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3872,7 +3872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3891,7 +3891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3910,7 +3910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3929,7 +3929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::moveEvent(QMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3948,7 +3948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3978,7 +3978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCameraViewfinder::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4008,7 +4008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4027,7 +4027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCameraViewfinder::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4057,7 +4057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4076,7 +4076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4106,7 +4106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCameraViewfinder::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4136,7 +4136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4155,7 +4155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4174,7 +4174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4193,7 +4193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4232,7 +4232,7 @@ PythonQtShell_QGraphicsVideoItem::~PythonQtShell_QGraphicsVideoItem() { void PythonQtShell_QGraphicsVideoItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4251,7 +4251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsVideoItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4270,7 +4270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4300,7 +4300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4330,7 +4330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QGraphicsVideoItem::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4360,7 +4360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4390,7 +4390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsVideoItem::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4569,7 +4569,7 @@ PythonQtShell_QMediaBindableInterface::~PythonQtShell_QMediaBindableInterface() QMediaObject* PythonQtShell_QMediaBindableInterface::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4599,7 +4599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaBindableInterface::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4724,7 +4724,7 @@ PythonQtShell_QMediaControl::~PythonQtShell_QMediaControl() { void PythonQtShell_QMediaControl::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4743,7 +4743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaControl::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4762,7 +4762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaControl::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4792,7 +4792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaControl::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4822,7 +4822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaControl::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4851,7 +4851,7 @@ PythonQtShell_QMediaObject::~PythonQtShell_QMediaObject() { QMultimedia::AvailabilityStatus PythonQtShell_QMediaObject::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -4881,7 +4881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -4911,7 +4911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4930,7 +4930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4949,7 +4949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4979,7 +4979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5009,7 +5009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5039,7 +5039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QMediaObject::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -5069,7 +5069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5088,7 +5088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5177,7 +5177,7 @@ PythonQtShell_QMediaPlayer::~PythonQtShell_QMediaPlayer() { QMultimedia::AvailabilityStatus PythonQtShell_QMediaPlayer::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -5207,7 +5207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -5237,7 +5237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5256,7 +5256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5275,7 +5275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5305,7 +5305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5335,7 +5335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5365,7 +5365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QMediaPlayer::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5573,7 +5573,7 @@ PythonQtShell_QMediaPlaylist::~PythonQtShell_QMediaPlaylist() { void PythonQtShell_QMediaPlaylist::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlaylist::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5641,7 +5641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5671,7 +5671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QMediaPlaylist::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5701,7 +5701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5731,7 +5731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlaylist::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5890,7 +5890,7 @@ PythonQtShell_QMediaRecorder::~PythonQtShell_QMediaRecorder() { void PythonQtShell_QMediaRecorder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5909,7 +5909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaRecorder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5928,7 +5928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5958,7 +5958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5988,7 +5988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QMediaRecorder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -6018,7 +6018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -6048,7 +6048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaRecorder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp b/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp index b6a7dbefb..afb8b44b4 100644 --- a/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +++ b/generated_cpp_53/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp @@ -58,7 +58,7 @@ PythonQtShell_QMediaService::~PythonQtShell_QMediaService() { void PythonQtShell_QMediaService::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -77,7 +77,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -96,7 +96,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaService::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -126,7 +126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaService::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -156,7 +156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::releaseControl(QMediaControl* control0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("releaseControl"); + static PyObject* name = PyUnicode_FromString("releaseControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaControl*"}; @@ -175,7 +175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaControl* PythonQtShell_QMediaService::requestControl(const char* name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("requestControl"); + static PyObject* name = PyUnicode_FromString("requestControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaControl*" , "const char*"}; @@ -205,7 +205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -430,7 +430,7 @@ PythonQtShell_QRadioData::~PythonQtShell_QRadioData() { void PythonQtShell_QRadioData::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -449,7 +449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioData::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -468,7 +468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -498,7 +498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -528,7 +528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QRadioData::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -558,7 +558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::setMediaObject(QMediaObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -588,7 +588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioData::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -672,7 +672,7 @@ PythonQtShell_QRadioTuner::~PythonQtShell_QRadioTuner() { QMultimedia::AvailabilityStatus PythonQtShell_QRadioTuner::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -702,7 +702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -732,7 +732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -751,7 +751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -800,7 +800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -830,7 +830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -860,7 +860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QRadioTuner::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -909,7 +909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -1028,7 +1028,7 @@ PythonQtShell_QSoundEffect::~PythonQtShell_QSoundEffect() { void PythonQtShell_QSoundEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSoundEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1066,7 +1066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSoundEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1096,7 +1096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSoundEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1126,7 +1126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSoundEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1519,7 +1519,7 @@ PythonQtShell_QVideoProbe::~PythonQtShell_QVideoProbe() { void PythonQtShell_QVideoProbe::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1538,7 +1538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoProbe::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1557,7 +1557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoProbe::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1587,7 +1587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoProbe::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1617,7 +1617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoProbe::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1812,7 +1812,7 @@ PythonQtShell_QVideoWidget::~PythonQtShell_QVideoWidget() { void PythonQtShell_QVideoWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1926,7 +1926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1956,7 +1956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1975,7 +1975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1994,7 +1994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2013,7 +2013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2032,7 +2032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2051,7 +2051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2081,7 +2081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2111,7 +2111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2130,7 +2130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2160,7 +2160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2179,7 +2179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2209,7 +2209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2239,7 +2239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2258,7 +2258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2277,7 +2277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2296,7 +2296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QVideoWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2326,7 +2326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2345,7 +2345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2364,7 +2364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2383,7 +2383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QVideoWidget::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2413,7 +2413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2443,7 +2443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVideoWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2473,7 +2473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2492,7 +2492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2511,7 +2511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2530,7 +2530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2549,7 +2549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::moveEvent(QMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2568,7 +2568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2598,7 +2598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QVideoWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2628,7 +2628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2647,7 +2647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QVideoWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2677,7 +2677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2696,7 +2696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2726,7 +2726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QVideoWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2756,7 +2756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2775,7 +2775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2794,7 +2794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2813,7 +2813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network0.cpp b/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network0.cpp index 5d3529ddc..9d8b90a62 100644 --- a/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +++ b/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network0.cpp @@ -47,7 +47,7 @@ PythonQtShell_QAbstractNetworkCache::~PythonQtShell_QAbstractNetworkCache() { qint64 PythonQtShell_QAbstractNetworkCache::cacheSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -77,7 +77,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -96,7 +96,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -115,7 +115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -134,7 +134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QAbstractNetworkCache::data(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -164,7 +164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -194,7 +194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -224,7 +224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::insert(QIODevice* device0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -243,7 +243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkCacheMetaData PythonQtShell_QAbstractNetworkCache::metaData(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -273,7 +273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QAbstractNetworkCache::prepare(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -303,7 +303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::remove(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -333,7 +333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -352,7 +352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -421,7 +421,7 @@ PythonQtShell_QAbstractSocket::~PythonQtShell_QAbstractSocket() { bool PythonQtShell_QAbstractSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -451,7 +451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -511,7 +511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -541,7 +541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -655,7 +655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -685,7 +685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -715,7 +715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -745,7 +745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -944,7 +944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -963,7 +963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -982,7 +982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1042,7 +1042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1091,7 +1091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1121,7 +1121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1151,7 +1151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1181,7 +1181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1728,7 +1728,7 @@ PythonQtShell_QHttpMultiPart::~PythonQtShell_QHttpMultiPart() { void PythonQtShell_QHttpMultiPart::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1747,7 +1747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHttpMultiPart::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1766,7 +1766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHttpMultiPart::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1796,7 +1796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHttpMultiPart::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1826,7 +1826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHttpMultiPart::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1939,7 +1939,7 @@ PythonQtShell_QLocalServer::~PythonQtShell_QLocalServer() { void PythonQtShell_QLocalServer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1958,7 +1958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1977,7 +1977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2007,7 +2007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2037,7 +2037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::hasPendingConnections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2067,7 +2067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::incomingConnection(quintptr socketDescriptor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "quintptr"}; @@ -2086,7 +2086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLocalSocket* PythonQtShell_QLocalServer::nextPendingConnection() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLocalSocket*"}; @@ -2116,7 +2116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2225,7 +2225,7 @@ PythonQtShell_QLocalSocket::~PythonQtShell_QLocalSocket() { bool PythonQtShell_QLocalSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2255,7 +2255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2285,7 +2285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2315,7 +2315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2345,7 +2345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2364,7 +2364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2383,7 +2383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2402,7 +2402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2432,7 +2432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2462,7 +2462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2492,7 +2492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::open(QIODevice::OpenMode openMode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2522,7 +2522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2552,7 +2552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::readData(char* arg__1, qint64 arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2582,7 +2582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2612,7 +2612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2642,7 +2642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2672,7 +2672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2702,7 +2702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2721,7 +2721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2751,7 +2751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2781,7 +2781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::writeData(const char* arg__1, qint64 arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2946,7 +2946,7 @@ PythonQtShell_QNetworkAccessManager::~PythonQtShell_QNetworkAccessManager() { void PythonQtShell_QNetworkAccessManager::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkReply* PythonQtShell_QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation op0, const QNetworkRequest& request1, QIODevice* outgoingData2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createRequest"); + static PyObject* name = PyUnicode_FromString("createRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkReply*" , "QNetworkAccessManager::Operation" , "const QNetworkRequest&" , "QIODevice*"}; @@ -2995,7 +2995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkAccessManager::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3014,7 +3014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkAccessManager::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3044,7 +3044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkAccessManager::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3074,7 +3074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkAccessManager::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3493,7 +3493,7 @@ PythonQtShell_QNetworkConfigurationManager::~PythonQtShell_QNetworkConfiguration void PythonQtShell_QNetworkConfigurationManager::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3512,7 +3512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkConfigurationManager::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3531,7 +3531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkConfigurationManager::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3561,7 +3561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkConfigurationManager::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3591,7 +3591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkConfigurationManager::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3772,7 +3772,7 @@ PythonQtShell_QNetworkCookieJar::~PythonQtShell_QNetworkCookieJar() { void PythonQtShell_QNetworkCookieJar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3791,7 +3791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QNetworkCookieJar::cookiesForUrl(const QUrl& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cookiesForUrl"); + static PyObject* name = PyUnicode_FromString("cookiesForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QUrl&"}; @@ -3821,7 +3821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkCookieJar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3840,7 +3840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::deleteCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteCookie"); + static PyObject* name = PyUnicode_FromString("deleteCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -3870,7 +3870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3900,7 +3900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3930,7 +3930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::insertCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertCookie"); + static PyObject* name = PyUnicode_FromString("insertCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -3960,7 +3960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::setCookiesFromUrl(const QList& cookieList0, const QUrl& url1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCookiesFromUrl"); + static PyObject* name = PyUnicode_FromString("setCookiesFromUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QList&" , "const QUrl&"}; @@ -3990,7 +3990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkCookieJar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4009,7 +4009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::updateCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCookie"); + static PyObject* name = PyUnicode_FromString("updateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4039,7 +4039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::validateCookie(const QNetworkCookie& cookie0, const QUrl& url1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validateCookie"); + static PyObject* name = PyUnicode_FromString("validateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&" , "const QUrl&"}; @@ -4119,7 +4119,7 @@ PythonQtShell_QNetworkDiskCache::~PythonQtShell_QNetworkDiskCache() { qint64 PythonQtShell_QNetworkDiskCache::cacheSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4149,7 +4149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4168,7 +4168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4187,7 +4187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4206,7 +4206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QNetworkDiskCache::data(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -4236,7 +4236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4266,7 +4266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4296,7 +4296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkDiskCache::expire() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expire"); + static PyObject* name = PyUnicode_FromString("expire"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4326,7 +4326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::insert(QIODevice* device0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -4345,7 +4345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkCacheMetaData PythonQtShell_QNetworkDiskCache::metaData(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -4375,7 +4375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QNetworkDiskCache::prepare(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -4405,7 +4405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::remove(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -4435,7 +4435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4454,7 +4454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -4776,7 +4776,7 @@ PythonQtShell_QNetworkProxyFactory::~PythonQtShell_QNetworkProxyFactory() { QList PythonQtShell_QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryProxy"); + static PyObject* name = PyUnicode_FromString("queryProxy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QNetworkProxyQuery&"}; @@ -4960,7 +4960,7 @@ PythonQtShell_QNetworkReply::~PythonQtShell_QNetworkReply() { void PythonQtShell_QNetworkReply::abort() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4979,7 +4979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5009,7 +5009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5039,7 +5039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5069,7 +5069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5099,7 +5099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5118,7 +5118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5137,7 +5137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5156,7 +5156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5186,7 +5186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5216,7 +5216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::ignoreSslErrors() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignoreSslErrors"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrors"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5235,7 +5235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::ignoreSslErrorsImplementation(const QList& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignoreSslErrorsImplementation"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrorsImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -5254,7 +5254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5284,7 +5284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5314,7 +5314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5344,7 +5344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5374,7 +5374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5404,7 +5404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5434,7 +5434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5464,7 +5464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -5483,7 +5483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::setSslConfigurationImplementation(const QSslConfiguration& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("setSslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSslConfiguration&"}; @@ -5502,7 +5502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5532,7 +5532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::sslConfigurationImplementation(QSslConfiguration& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("sslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSslConfiguration&"}; @@ -5551,7 +5551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5570,7 +5570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5600,7 +5600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5630,7 +5630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5920,7 +5920,7 @@ PythonQtShell_QNetworkSession::~PythonQtShell_QNetworkSession() { void PythonQtShell_QNetworkSession::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5939,7 +5939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::connectNotify(const QMetaMethod& signal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -5958,7 +5958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5977,7 +5977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::disconnectNotify(const QMetaMethod& signal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -5996,7 +5996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkSession::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6026,7 +6026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkSession::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6056,7 +6056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network1.cpp b/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network1.cpp index 5907ae9ff..9be69d79c 100644 --- a/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +++ b/generated_cpp_53/com_trolltech_qt_network/com_trolltech_qt_network1.cpp @@ -122,7 +122,7 @@ PythonQtShell_QSslSocket::~PythonQtShell_QSslSocket() { bool PythonQtShell_QSslSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -152,7 +152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -261,7 +261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -280,7 +280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode openMode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -318,7 +318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -337,7 +337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -367,7 +367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -397,7 +397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -427,7 +427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -457,7 +457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -487,7 +487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -517,7 +517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -547,7 +547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -577,7 +577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -596,7 +596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -626,7 +626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -645,7 +645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -664,7 +664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -694,7 +694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSslSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -724,7 +724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -743,7 +743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -803,7 +803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -863,7 +863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1249,7 +1249,7 @@ PythonQtShell_QTcpServer::~PythonQtShell_QTcpServer() { void PythonQtShell_QTcpServer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1268,7 +1268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpServer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1287,7 +1287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1317,7 +1317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1347,7 +1347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::hasPendingConnections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1377,7 +1377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QTcpSocket* PythonQtShell_QTcpServer::nextPendingConnection() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTcpSocket*"}; @@ -1407,7 +1407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpServer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1521,7 +1521,7 @@ PythonQtShell_QTcpSocket::~PythonQtShell_QTcpSocket() { bool PythonQtShell_QTcpSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1551,7 +1551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1581,7 +1581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1611,7 +1611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1641,7 +1641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1660,7 +1660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1679,7 +1679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -1698,7 +1698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -1717,7 +1717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1736,7 +1736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1755,7 +1755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1785,7 +1785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1815,7 +1815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1845,7 +1845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1875,7 +1875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1905,7 +1905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1935,7 +1935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1965,7 +1965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1995,7 +1995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2014,7 +2014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2044,7 +2044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2063,7 +2063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2082,7 +2082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2112,7 +2112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTcpSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2142,7 +2142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2161,7 +2161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2191,7 +2191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2221,7 +2221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2251,7 +2251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2281,7 +2281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2321,7 +2321,7 @@ PythonQtShell_QUdpSocket::~PythonQtShell_QUdpSocket() { bool PythonQtShell_QUdpSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2351,7 +2351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2381,7 +2381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2411,7 +2411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2441,7 +2441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2460,7 +2460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2479,7 +2479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -2498,7 +2498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -2517,7 +2517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2536,7 +2536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2555,7 +2555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2585,7 +2585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2615,7 +2615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2645,7 +2645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2675,7 +2675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2705,7 +2705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2735,7 +2735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2765,7 +2765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2795,7 +2795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2814,7 +2814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2844,7 +2844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2863,7 +2863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2882,7 +2882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2912,7 +2912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QUdpSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2942,7 +2942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2961,7 +2961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2991,7 +2991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3021,7 +3021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3051,7 +3051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3081,7 +3081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_53/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp b/generated_cpp_53/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp index 92192afaa..485e2f155 100644 --- a/generated_cpp_53/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +++ b/generated_cpp_53/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp @@ -228,7 +228,7 @@ PythonQtShell_QGLContext::~PythonQtShell_QGLContext() { bool PythonQtShell_QGLContext::chooseContext(const QGLContext* shareContext0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("chooseContext"); + static PyObject* name = PyUnicode_FromString("chooseContext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -258,7 +258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLContext::create(const QGLContext* shareContext0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -288,7 +288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::doneCurrent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doneCurrent"); + static PyObject* name = PyUnicode_FromString("doneCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -307,7 +307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::makeCurrent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("makeCurrent"); + static PyObject* name = PyUnicode_FromString("makeCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -326,7 +326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::swapBuffers() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("swapBuffers"); + static PyObject* name = PyUnicode_FromString("swapBuffers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -845,7 +845,7 @@ PythonQtShell_QGLFramebufferObject::~PythonQtShell_QGLFramebufferObject() { int PythonQtShell_QGLFramebufferObject::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -875,7 +875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLFramebufferObject::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -894,7 +894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLFramebufferObject::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -924,7 +924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLFramebufferObject::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -954,7 +954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLFramebufferObject::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -984,7 +984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLFramebufferObject::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1714,7 +1714,7 @@ PythonQtShell_QGLPixelBuffer::~PythonQtShell_QGLPixelBuffer() { int PythonQtShell_QGLPixelBuffer::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1744,7 +1744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLPixelBuffer::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1763,7 +1763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLPixelBuffer::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLPixelBuffer::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1823,7 +1823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLPixelBuffer::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1853,7 +1853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLPixelBuffer::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2007,7 +2007,7 @@ PythonQtShell_QGLShader::~PythonQtShell_QGLShader() { void PythonQtShell_QGLShader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2026,7 +2026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2045,7 +2045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2075,7 +2075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2105,7 +2105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2188,7 +2188,7 @@ PythonQtShell_QGLShaderProgram::~PythonQtShell_QGLShaderProgram() { void PythonQtShell_QGLShaderProgram::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2207,7 +2207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShaderProgram::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2226,7 +2226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2256,7 +2256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2286,7 +2286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::link() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2316,7 +2316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShaderProgram::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2889,7 +2889,7 @@ PythonQtShell_QGLWidget::~PythonQtShell_QGLWidget() { void PythonQtShell_QGLWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2908,7 +2908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2927,7 +2927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2946,7 +2946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3071,7 +3071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3090,7 +3090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3109,7 +3109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3128,7 +3128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3188,7 +3188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3237,7 +3237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::glDraw() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("glDraw"); + static PyObject* name = PyUnicode_FromString("glDraw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3275,7 +3275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::glInit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("glInit"); + static PyObject* name = PyUnicode_FromString("glInit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3294,7 +3294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3324,7 +3324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3354,7 +3354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3373,7 +3373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3392,7 +3392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initializeGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3411,7 +3411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initializeOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializeOverlayGL"); + static PyObject* name = PyUnicode_FromString("initializeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3430,7 +3430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3449,7 +3449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGLWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3479,7 +3479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3498,7 +3498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3517,7 +3517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGLWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3596,7 +3596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3615,7 +3615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3634,7 +3634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3653,7 +3653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3672,7 +3672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3691,7 +3691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3721,7 +3721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3751,7 +3751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3770,7 +3770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3789,7 +3789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintOverlayGL"); + static PyObject* name = PyUnicode_FromString("paintOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3808,7 +3808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3838,7 +3838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3857,7 +3857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeGL(int w0, int h1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3876,7 +3876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeOverlayGL(int w0, int h1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeOverlayGL"); + static PyObject* name = PyUnicode_FromString("resizeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3895,7 +3895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3925,7 +3925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3944,7 +3944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGLWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3974,7 +3974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3993,7 +3993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4012,7 +4012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::updateGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGL"); + static PyObject* name = PyUnicode_FromString("updateGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4031,7 +4031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::updateOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateOverlayGL"); + static PyObject* name = PyUnicode_FromString("updateOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4050,7 +4050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp b/generated_cpp_53/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp index 20b1362d0..88809b92a 100644 --- a/generated_cpp_53/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +++ b/generated_cpp_53/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp @@ -276,7 +276,7 @@ PythonQtShell_QSqlDriver::~PythonQtShell_QSqlDriver() { bool PythonQtShell_QSqlDriver::beginTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginTransaction"); + static PyObject* name = PyUnicode_FromString("beginTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -306,7 +306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::cancelQuery() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cancelQuery"); + static PyObject* name = PyUnicode_FromString("cancelQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -336,7 +336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -355,7 +355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::commitTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitTransaction"); + static PyObject* name = PyUnicode_FromString("commitTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlResult* PythonQtShell_QSqlDriver::createResult() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createResult"); + static PyObject* name = PyUnicode_FromString("createResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlResult*"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -453,7 +453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::escapeIdentifier(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("escapeIdentifier"); + static PyObject* name = PyUnicode_FromString("escapeIdentifier"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -513,7 +513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -543,7 +543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::formatValue(const QSqlField& field0, bool trimStrings1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("formatValue"); + static PyObject* name = PyUnicode_FromString("formatValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QSqlField&" , "bool"}; @@ -573,7 +573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlDriver::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -603,7 +603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::hasFeature(QSqlDriver::DriverFeature f0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QSqlDriver::DriverFeature"}; @@ -633,7 +633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::isIdentifierEscaped(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIdentifierEscaped"); + static PyObject* name = PyUnicode_FromString("isIdentifierEscaped"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::isOpen() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isOpen"); + static PyObject* name = PyUnicode_FromString("isOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -693,7 +693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::open(const QString& db0, const QString& user1, const QString& password2, const QString& host3, int port4, const QString& connOpts5) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "int" , "const QString&"}; @@ -723,7 +723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlIndex PythonQtShell_QSqlDriver::primaryIndex(const QString& tableName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("primaryIndex"); + static PyObject* name = PyUnicode_FromString("primaryIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlIndex" , "const QString&"}; @@ -753,7 +753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlRecord PythonQtShell_QSqlDriver::record(const QString& tableName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord" , "const QString&"}; @@ -783,7 +783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::rollbackTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rollbackTransaction"); + static PyObject* name = PyUnicode_FromString("rollbackTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -813,7 +813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setLastError(const QSqlError& e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -832,7 +832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setOpen(bool o0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOpen"); + static PyObject* name = PyUnicode_FromString("setOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -851,7 +851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setOpenError(bool e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOpenError"); + static PyObject* name = PyUnicode_FromString("setOpenError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -870,7 +870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::sqlStatement(QSqlDriver::StatementType type0, const QString& tableName1, const QSqlRecord& rec2, bool preparedStatement3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sqlStatement"); + static PyObject* name = PyUnicode_FromString("sqlStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QSqlDriver::StatementType" , "const QString&" , "const QSqlRecord&" , "bool"}; @@ -900,7 +900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::stripDelimiters(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stripDelimiters"); + static PyObject* name = PyUnicode_FromString("stripDelimiters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -930,7 +930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::subscribeToNotification(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subscribeToNotification"); + static PyObject* name = PyUnicode_FromString("subscribeToNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -960,7 +960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlDriver::subscribedToNotifications() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subscribedToNotifications"); + static PyObject* name = PyUnicode_FromString("subscribedToNotifications"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -990,7 +990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlDriver::tables(QSql::TableType tableType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tables"); + static PyObject* name = PyUnicode_FromString("tables"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QSql::TableType"}; @@ -1020,7 +1020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1039,7 +1039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::unsubscribeFromNotification(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unsubscribeFromNotification"); + static PyObject* name = PyUnicode_FromString("unsubscribeFromNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1219,7 +1219,7 @@ PythonQtShell_QSqlDriverCreatorBase::~PythonQtShell_QSqlDriverCreatorBase() { QSqlDriver* PythonQtShell_QSqlDriverCreatorBase::createObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlDriver*"}; @@ -1770,7 +1770,7 @@ PythonQtShell_QSqlQueryModel::~PythonQtShell_QSqlQueryModel() { QModelIndex PythonQtShell_QSqlQueryModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1800,7 +1800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1830,7 +1830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1879,7 +1879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1898,7 +1898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlQueryModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1928,7 +1928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1947,7 +1947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlQueryModel::data(const QModelIndex& item0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1977,7 +1977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2007,7 +2007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2037,7 +2037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2067,7 +2067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2086,7 +2086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlQueryModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2116,7 +2116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlQueryModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2146,7 +2146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2176,7 +2176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2206,7 +2206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2236,7 +2236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2266,7 +2266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlQueryModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2296,7 +2296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlQueryModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2326,7 +2326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlQueryModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2356,7 +2356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlQueryModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2386,7 +2386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2416,7 +2416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2446,7 +2446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2465,7 +2465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2495,7 +2495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2525,7 +2525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2544,7 +2544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlQueryModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2574,7 +2574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlQueryModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2604,7 +2604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2634,7 +2634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2664,7 +2664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2694,7 +2694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2724,7 +2724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2743,7 +2743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlQueryModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2773,7 +2773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2803,7 +2803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2863,7 +2863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3224,7 +3224,7 @@ PythonQtShell_QSqlRelationalTableModel::~PythonQtShell_QSqlRelationalTableModel( QModelIndex PythonQtShell_QSqlRelationalTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3254,7 +3254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3284,7 +3284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3314,7 +3314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3333,7 +3333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3352,7 +3352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlRelationalTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3382,7 +3382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3401,7 +3401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlRelationalTableModel::data(const QModelIndex& item0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3431,7 +3431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::deleteRowFromTable(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3461,7 +3461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3491,7 +3491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3521,7 +3521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3551,7 +3551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3570,7 +3570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlRelationalTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3600,7 +3600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlRelationalTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3630,7 +3630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3660,7 +3660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3690,7 +3690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3720,7 +3720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertRowIntoTable(const QSqlRecord& values0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -3750,7 +3750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3780,7 +3780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlRelationalTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3810,7 +3810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlRelationalTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3840,7 +3840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlRelationalTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3870,7 +3870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlRelationalTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3900,7 +3900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3930,7 +3930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3960,7 +3960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlRelationalTableModel::orderByClause() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3990,7 +3990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4009,7 +4009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlTableModel* PythonQtShell_QSqlRelationalTableModel::relationModel(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("relationModel"); + static PyObject* name = PyUnicode_FromString("relationModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlTableModel*" , "int"}; @@ -4039,7 +4039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4069,7 +4069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4099,7 +4099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4118,7 +4118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::revertRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4137,7 +4137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlRelationalTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4167,7 +4167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlRelationalTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4197,7 +4197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::select() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4227,7 +4227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::selectRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4257,7 +4257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlRelationalTableModel::selectStatement() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4287,7 +4287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setData(const QModelIndex& item0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4317,7 +4317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -4336,7 +4336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setFilter(const QString& filter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4355,7 +4355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4385,7 +4385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4415,7 +4415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setRelation(int column0, const QSqlRelation& relation1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRelation"); + static PyObject* name = PyUnicode_FromString("setRelation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QSqlRelation&"}; @@ -4434,7 +4434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setSort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4453,7 +4453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setTable(const QString& tableName0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4472,7 +4472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4502,7 +4502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4521,7 +4521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlRelationalTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4551,7 +4551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4581,7 +4581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4611,7 +4611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4641,7 +4641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4660,7 +4660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::updateRowInTable(int row0, const QSqlRecord& values1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; @@ -4775,7 +4775,7 @@ PythonQtShell_QSqlResult::~PythonQtShell_QSqlResult() { void PythonQtShell_QSqlResult::bindValue(const QString& placeholder0, const QVariant& val1, QSql::ParamType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&" , "QSql::ParamType"}; @@ -4794,7 +4794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::bindValue(int pos0, const QVariant& val1, QSql::ParamType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&" , "QSql::ParamType"}; @@ -4813,7 +4813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::data(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::detachFromResultSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("detachFromResultSet"); + static PyObject* name = PyUnicode_FromString("detachFromResultSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4862,7 +4862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4892,7 +4892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::execBatch(bool arrayBind0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("execBatch"); + static PyObject* name = PyUnicode_FromString("execBatch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4922,7 +4922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetch(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetch"); + static PyObject* name = PyUnicode_FromString("fetch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4952,7 +4952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchFirst() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchFirst"); + static PyObject* name = PyUnicode_FromString("fetchFirst"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4982,7 +4982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchLast() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchLast"); + static PyObject* name = PyUnicode_FromString("fetchLast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5012,7 +5012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchNext() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchNext"); + static PyObject* name = PyUnicode_FromString("fetchNext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5042,7 +5042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchPrevious() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchPrevious"); + static PyObject* name = PyUnicode_FromString("fetchPrevious"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5072,7 +5072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5102,7 +5102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::isNull(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isNull"); + static PyObject* name = PyUnicode_FromString("isNull"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5132,7 +5132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::lastInsertId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lastInsertId"); + static PyObject* name = PyUnicode_FromString("lastInsertId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5162,7 +5162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::nextResult() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextResult"); + static PyObject* name = PyUnicode_FromString("nextResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5192,7 +5192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlResult::numRowsAffected() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("numRowsAffected"); + static PyObject* name = PyUnicode_FromString("numRowsAffected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5222,7 +5222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::prepare(const QString& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5252,7 +5252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlRecord PythonQtShell_QSqlResult::record() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord"}; @@ -5282,7 +5282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::reset(const QString& sqlquery0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5312,7 +5312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::savePrepare(const QString& sqlquery0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("savePrepare"); + static PyObject* name = PyUnicode_FromString("savePrepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5342,7 +5342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setActive(bool a0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5361,7 +5361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setAt(int at0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setAt"); + static PyObject* name = PyUnicode_FromString("setAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5380,7 +5380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setForwardOnly(bool forward0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setForwardOnly"); + static PyObject* name = PyUnicode_FromString("setForwardOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5399,7 +5399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setLastError(const QSqlError& e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -5418,7 +5418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setNumericalPrecisionPolicy(QSql::NumericalPrecisionPolicy policy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setNumericalPrecisionPolicy"); + static PyObject* name = PyUnicode_FromString("setNumericalPrecisionPolicy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSql::NumericalPrecisionPolicy"}; @@ -5437,7 +5437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setQuery(const QString& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setQuery"); + static PyObject* name = PyUnicode_FromString("setQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5456,7 +5456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setSelect(bool s0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelect"); + static PyObject* name = PyUnicode_FromString("setSelect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5475,7 +5475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlResult::size() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5505,7 +5505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::virtual_hook(int id0, void* data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -5784,7 +5784,7 @@ PythonQtShell_QSqlTableModel::~PythonQtShell_QSqlTableModel() { QModelIndex PythonQtShell_QSqlTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5814,7 +5814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5844,7 +5844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5874,7 +5874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5893,7 +5893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5912,7 +5912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5942,7 +5942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5961,7 +5961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlTableModel::data(const QModelIndex& idx0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5991,7 +5991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::deleteRowFromTable(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6021,7 +6021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6051,7 +6051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6081,7 +6081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6111,7 +6111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6130,7 +6130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6160,7 +6160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6190,7 +6190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6220,7 +6220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6250,7 +6250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6280,7 +6280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertRowIntoTable(const QSqlRecord& values0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -6310,7 +6310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6340,7 +6340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6370,7 +6370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6400,7 +6400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6430,7 +6430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6460,7 +6460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6490,7 +6490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6520,7 +6520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlTableModel::orderByClause() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6550,7 +6550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6569,7 +6569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6599,7 +6599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6629,7 +6629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6648,7 +6648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::revertRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6667,7 +6667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -6697,7 +6697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6727,7 +6727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::select() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6757,7 +6757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::selectRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6787,7 +6787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlTableModel::selectStatement() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6817,7 +6817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -6847,7 +6847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -6866,7 +6866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setFilter(const QString& filter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6885,7 +6885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -6915,7 +6915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -6945,7 +6945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setSort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -6964,7 +6964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setTable(const QString& tableName0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6983,7 +6983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7013,7 +7013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7032,7 +7032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7062,7 +7062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7092,7 +7092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7122,7 +7122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7152,7 +7152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7171,7 +7171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::updateRowInTable(int row0, const QSqlRecord& values1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; diff --git a/generated_cpp_53/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp b/generated_cpp_53/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp index c1d75b588..6206c1605 100644 --- a/generated_cpp_53/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +++ b/generated_cpp_53/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp @@ -56,7 +56,7 @@ PythonQtShell_QGraphicsSvgItem::~PythonQtShell_QGraphicsSvgItem() { QRectF PythonQtShell_QGraphicsSvgItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -86,7 +86,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -124,7 +124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsSvgItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -154,7 +154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsSvgItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -184,7 +184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -203,7 +203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -222,7 +222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsSvgItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -321,7 +321,7 @@ PythonQtShell_QSvgGenerator::~PythonQtShell_QSvgGenerator() { int PythonQtShell_QSvgGenerator::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -351,7 +351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgGenerator::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -370,7 +370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgGenerator::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -400,7 +400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSvgGenerator::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -430,7 +430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSvgGenerator::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -460,7 +460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSvgGenerator::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -590,7 +590,7 @@ PythonQtShell_QSvgRenderer::~PythonQtShell_QSvgRenderer() { void PythonQtShell_QSvgRenderer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -609,7 +609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgRenderer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -628,7 +628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgRenderer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -658,7 +658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgRenderer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgRenderer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -804,7 +804,7 @@ PythonQtShell_QSvgWidget::~PythonQtShell_QSvgWidget() { void PythonQtShell_QSvgWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -823,7 +823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -861,7 +861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -880,7 +880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -899,7 +899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -948,7 +948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1005,7 +1005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1024,7 +1024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1043,7 +1043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1073,7 +1073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1103,7 +1103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1122,7 +1122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1152,7 +1152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1171,7 +1171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1201,7 +1201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1231,7 +1231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1250,7 +1250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1269,7 +1269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1288,7 +1288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSvgWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1318,7 +1318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1337,7 +1337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1356,7 +1356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1375,7 +1375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1405,7 +1405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSvgWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1435,7 +1435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1454,7 +1454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1473,7 +1473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1492,7 +1492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1511,7 +1511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1530,7 +1530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1560,7 +1560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSvgWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1590,7 +1590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1609,7 +1609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSvgWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1639,7 +1639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1658,7 +1658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSvgWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1688,7 +1688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1707,7 +1707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1726,7 +1726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1745,7 +1745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp b/generated_cpp_53/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp index dc615eb2a..72e8861ae 100644 --- a/generated_cpp_53/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +++ b/generated_cpp_53/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp @@ -24,7 +24,7 @@ PythonQtShell_QUiLoader::~PythonQtShell_QUiLoader() { void PythonQtShell_QUiLoader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -43,7 +43,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAction* PythonQtShell_QUiLoader::createAction(QObject* parent0, const QString& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createAction"); + static PyObject* name = PyUnicode_FromString("createAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAction*" , "QObject*" , "const QString&"}; @@ -73,7 +73,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QActionGroup* PythonQtShell_QUiLoader::createActionGroup(QObject* parent0, const QString& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createActionGroup"); + static PyObject* name = PyUnicode_FromString("createActionGroup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QActionGroup*" , "QObject*" , "const QString&"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QUiLoader::createLayout(const QString& className0, QObject* parent1, const QString& name2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createLayout"); + static PyObject* name = PyUnicode_FromString("createLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*" , "const QString&" , "QObject*" , "const QString&"}; @@ -133,7 +133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QUiLoader::createWidget(const QString& className0, QWidget* parent1, const QString& name2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "const QString&" , "QWidget*" , "const QString&"}; @@ -163,7 +163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUiLoader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUiLoader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUiLoader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUiLoader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp b/generated_cpp_53/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp index da0c91ad0..1bb2334d6 100644 --- a/generated_cpp_53/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +++ b/generated_cpp_53/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp @@ -69,7 +69,7 @@ PythonQtShell_QGraphicsWebView::~PythonQtShell_QGraphicsWebView() { void PythonQtShell_QGraphicsWebView::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -88,7 +88,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -107,7 +107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -126,7 +126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -145,7 +145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -164,7 +164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -183,7 +183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -202,7 +202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -221,7 +221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -240,7 +240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -270,7 +270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -300,7 +300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -319,7 +319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -349,7 +349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -368,7 +368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -387,7 +387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -406,7 +406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -425,7 +425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -444,7 +444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -463,7 +463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -482,7 +482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -501,7 +501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -520,7 +520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -583,7 +583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -602,7 +602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -621,7 +621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -640,7 +640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -659,7 +659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -678,7 +678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -697,7 +697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -716,7 +716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::paint(QPainter* arg__1, const QStyleOptionGraphicsItem* options1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -754,7 +754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -803,7 +803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -822,7 +822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::sceneEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -852,7 +852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -871,7 +871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsWebView::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -958,7 +958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -977,7 +977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -996,7 +996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1015,7 +1015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1045,7 +1045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsWebView::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2109,7 +2109,7 @@ PythonQtShell_QWebHistoryInterface::~PythonQtShell_QWebHistoryInterface() { void PythonQtShell_QWebHistoryInterface::addHistoryEntry(const QString& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addHistoryEntry"); + static PyObject* name = PyUnicode_FromString("addHistoryEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2128,7 +2128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2147,7 +2147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2166,7 +2166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2196,7 +2196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2226,7 +2226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::historyContains(const QString& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("historyContains"); + static PyObject* name = PyUnicode_FromString("historyContains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2256,7 +2256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2451,7 +2451,7 @@ PythonQtShell_QWebInspector::~PythonQtShell_QWebInspector() { void PythonQtShell_QWebInspector::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2470,7 +2470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2489,7 +2489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2508,7 +2508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2527,7 +2527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2546,7 +2546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2565,7 +2565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2595,7 +2595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2614,7 +2614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2633,7 +2633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2652,7 +2652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2671,7 +2671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2690,7 +2690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2720,7 +2720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2750,7 +2750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2769,7 +2769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2799,7 +2799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2818,7 +2818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2848,7 +2848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2878,7 +2878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2897,7 +2897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2916,7 +2916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2935,7 +2935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWebInspector::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3022,7 +3022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWebInspector::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3082,7 +3082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3101,7 +3101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3120,7 +3120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3139,7 +3139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3177,7 +3177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWebInspector::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3237,7 +3237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWebInspector::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3286,7 +3286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3305,7 +3305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWebInspector::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3335,7 +3335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3354,7 +3354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3373,7 +3373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3392,7 +3392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3461,7 +3461,7 @@ PythonQtShell_QWebPage::~PythonQtShell_QWebPage() { bool PythonQtShell_QWebPage::acceptNavigationRequest(QWebFrame* frame0, const QNetworkRequest& request1, QWebPage::NavigationType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("acceptNavigationRequest"); + static PyObject* name = PyUnicode_FromString("acceptNavigationRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QNetworkRequest&" , "QWebPage::NavigationType"}; @@ -3491,7 +3491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3510,7 +3510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QWebPage::chooseFile(QWebFrame* originatingFrame0, const QString& oldFile1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("chooseFile"); + static PyObject* name = PyUnicode_FromString("chooseFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QWebFrame*" , "const QString&"}; @@ -3540,7 +3540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWebPage::createPlugin(const QString& classid0, const QUrl& url1, const QStringList& paramNames2, const QStringList& paramValues3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createPlugin"); + static PyObject* name = PyUnicode_FromString("createPlugin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -3570,7 +3570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWebPage* PythonQtShell_QWebPage::createWindow(QWebPage::WebWindowType type0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebPage*" , "QWebPage::WebWindowType"}; @@ -3600,7 +3600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3619,7 +3619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3649,7 +3649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3679,7 +3679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::extension(QWebPage::Extension extension0, const QWebPage::ExtensionOption* option1, QWebPage::ExtensionReturn* output2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension" , "const QWebPage::ExtensionOption*" , "QWebPage::ExtensionReturn*"}; @@ -3709,7 +3709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::javaScriptAlert(QWebFrame* originatingFrame0, const QString& msg1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptAlert"); + static PyObject* name = PyUnicode_FromString("javaScriptAlert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebFrame*" , "const QString&"}; @@ -3728,7 +3728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::javaScriptConfirm(QWebFrame* originatingFrame0, const QString& msg1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptConfirm"); + static PyObject* name = PyUnicode_FromString("javaScriptConfirm"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&"}; @@ -3758,7 +3758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::javaScriptConsoleMessage(const QString& message0, int lineNumber1, const QString& sourceID2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptConsoleMessage"); + static PyObject* name = PyUnicode_FromString("javaScriptConsoleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "int" , "const QString&"}; @@ -3777,7 +3777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::javaScriptPrompt(QWebFrame* originatingFrame0, const QString& msg1, const QString& defaultValue2, QString* result3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptPrompt"); + static PyObject* name = PyUnicode_FromString("javaScriptPrompt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&" , "const QString&" , "QString*"}; @@ -3807,7 +3807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::shouldInterruptJavaScript() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shouldInterruptJavaScript"); + static PyObject* name = PyUnicode_FromString("shouldInterruptJavaScript"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3837,7 +3837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::supportsExtension(QWebPage::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension"}; @@ -3867,7 +3867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3886,7 +3886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::triggerAction(QWebPage::WebAction action0, bool checked1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("triggerAction"); + static PyObject* name = PyUnicode_FromString("triggerAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebPage::WebAction" , "bool"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QWebPage::userAgentForUrl(const QUrl& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("userAgentForUrl"); + static PyObject* name = PyUnicode_FromString("userAgentForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QUrl&"}; @@ -4290,7 +4290,7 @@ PythonQtShell_QWebPluginFactory::~PythonQtShell_QWebPluginFactory() { void PythonQtShell_QWebPluginFactory::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4309,7 +4309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWebPluginFactory::create(const QString& mimeType0, const QUrl& arg__2, const QStringList& argumentNames2, const QStringList& argumentValues3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -4339,7 +4339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4358,7 +4358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4388,7 +4388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4418,7 +4418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::extension(QWebPluginFactory::Extension extension0, const QWebPluginFactory::ExtensionOption* option1, QWebPluginFactory::ExtensionReturn* output2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension" , "const QWebPluginFactory::ExtensionOption*" , "QWebPluginFactory::ExtensionReturn*"}; @@ -4448,7 +4448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QWebPluginFactory::plugins() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("plugins"); + static PyObject* name = PyUnicode_FromString("plugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4478,7 +4478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::refreshPlugins() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("refreshPlugins"); + static PyObject* name = PyUnicode_FromString("refreshPlugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4497,7 +4497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::supportsExtension(QWebPluginFactory::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension"}; @@ -4527,7 +4527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4913,7 +4913,7 @@ PythonQtShell_QWebView::~PythonQtShell_QWebView() { void PythonQtShell_QWebView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4932,7 +4932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4951,7 +4951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4970,7 +4970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4989,7 +4989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5008,7 +5008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWebView* PythonQtShell_QWebView::createWindow(QWebPage::WebWindowType type0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebView*" , "QWebPage::WebWindowType"}; @@ -5038,7 +5038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5057,7 +5057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5087,7 +5087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5106,7 +5106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5125,7 +5125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5144,7 +5144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5163,7 +5163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5182,7 +5182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5212,7 +5212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5242,7 +5242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5261,7 +5261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5291,7 +5291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5310,7 +5310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5340,7 +5340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5370,7 +5370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5389,7 +5389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5408,7 +5408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5427,7 +5427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWebView::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5457,7 +5457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5476,7 +5476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5495,7 +5495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5514,7 +5514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5544,7 +5544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWebView::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5574,7 +5574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5593,7 +5593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5612,7 +5612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5631,7 +5631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5650,7 +5650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5669,7 +5669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5699,7 +5699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWebView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5729,7 +5729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5748,7 +5748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWebView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5778,7 +5778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5797,7 +5797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWebView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5827,7 +5827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5846,7 +5846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5865,7 +5865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5884,7 +5884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_53/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp b/generated_cpp_53/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp index 35c6945c1..5c2346b77 100644 --- a/generated_cpp_53/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +++ b/generated_cpp_53/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp @@ -1155,7 +1155,7 @@ PythonQtShell_QXmlContentHandler::~PythonQtShell_QXmlContentHandler() { bool PythonQtShell_QXmlContentHandler::characters(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1185,7 +1185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1215,7 +1215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1245,7 +1245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1275,7 +1275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlContentHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1305,7 +1305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1335,7 +1335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& target0, const QString& data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1365,7 +1365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -1384,7 +1384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1414,7 +1414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1444,7 +1444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2, const QXmlAttributes& atts3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -1474,7 +1474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefix0, const QString& uri1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1574,7 +1574,7 @@ PythonQtShell_QXmlDTDHandler::~PythonQtShell_QXmlDTDHandler() { QString PythonQtShell_QXmlDTDHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1634,7 +1634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2, const QString& notationName3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1689,7 +1689,7 @@ PythonQtShell_QXmlDeclHandler::~PythonQtShell_QXmlDeclHandler() { bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName0, const QString& aName1, const QString& type2, const QString& valueDefault3, const QString& value4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1719,7 +1719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlDeclHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1749,7 +1749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1779,7 +1779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1839,7 +1839,7 @@ PythonQtShell_QXmlDefaultHandler::~PythonQtShell_QXmlDefaultHandler() { bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName0, const QString& aName1, const QString& type2, const QString& valueDefault3, const QString& value4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1899,7 +1899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1929,7 +1929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1959,7 +1959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endDTD() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1989,7 +1989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2019,7 +2019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2049,7 +2049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2079,7 +2079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2109,7 +2109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2139,7 +2139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlDefaultHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2169,7 +2169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2199,7 +2199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2229,7 +2229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2259,7 +2259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2289,7 +2289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2319,7 +2319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& target0, const QString& data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2349,7 +2349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId0, const QString& systemId1, QXmlInputSource*& ret2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2379,7 +2379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -2398,7 +2398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2428,7 +2428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2458,7 +2458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2488,7 +2488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2518,7 +2518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2, const QXmlAttributes& atts3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -2548,7 +2548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2578,7 +2578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefix0, const QString& uri1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2608,7 +2608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2, const QString& notationName3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -2638,7 +2638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2818,7 +2818,7 @@ PythonQtShell_QXmlEntityResolver::~PythonQtShell_QXmlEntityResolver() { QString PythonQtShell_QXmlEntityResolver::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2848,7 +2848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId0, const QString& systemId1, QXmlInputSource*& ret2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2898,7 +2898,7 @@ PythonQtShell_QXmlErrorHandler::~PythonQtShell_QXmlErrorHandler() { bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2928,7 +2928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlErrorHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2958,7 +2958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2988,7 +2988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3048,7 +3048,7 @@ PythonQtShell_QXmlInputSource::~PythonQtShell_QXmlInputSource() { QString PythonQtShell_QXmlInputSource::data() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3078,7 +3078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::fetchData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchData"); + static PyObject* name = PyUnicode_FromString("fetchData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3097,7 +3097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data0, bool beginning1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fromRawData"); + static PyObject* name = PyUnicode_FromString("fromRawData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"}; @@ -3127,7 +3127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QChar PythonQtShell_QXmlInputSource::next() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("next"); + static PyObject* name = PyUnicode_FromString("next"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QChar"}; @@ -3157,7 +3157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3176,7 +3176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QByteArray&"}; @@ -3195,7 +3195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::setData(const QString& dat0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3263,7 +3263,7 @@ PythonQtShell_QXmlLexicalHandler::~PythonQtShell_QXmlLexicalHandler() { bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3293,7 +3293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3323,7 +3323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endDTD() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3353,7 +3353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlLexicalHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3413,7 +3413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3443,7 +3443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -3473,7 +3473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3553,7 +3553,7 @@ PythonQtShell_QXmlLocator::~PythonQtShell_QXmlLocator() { int PythonQtShell_QXmlLocator::columnNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnNumber"); + static PyObject* name = PyUnicode_FromString("columnNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3583,7 +3583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QXmlLocator::lineNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lineNumber"); + static PyObject* name = PyUnicode_FromString("lineNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3668,7 +3668,7 @@ PythonQtShell_QXmlReader::~PythonQtShell_QXmlReader() { QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -3698,7 +3698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -3728,7 +3728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -3758,7 +3758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -3788,7 +3788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::feature(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -3848,7 +3848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::hasFeature(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3878,7 +3878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::hasProperty(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3908,7 +3908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -3938,7 +3938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -3968,7 +3968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -3998,7 +3998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void* PythonQtShell_QXmlReader::property(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4028,7 +4028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4047,7 +4047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4066,7 +4066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4085,7 +4085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4104,7 +4104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4123,7 +4123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setFeature(const QString& name0, bool value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4142,7 +4142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4161,7 +4161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setProperty(const QString& name0, void* value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; @@ -4290,7 +4290,7 @@ PythonQtShell_QXmlSimpleReader::~PythonQtShell_QXmlSimpleReader() { QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -4320,7 +4320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -4350,7 +4350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -4380,7 +4380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -4410,7 +4410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -4440,7 +4440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::feature(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -4470,7 +4470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4500,7 +4500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4530,7 +4530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4560,7 +4560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4590,7 +4590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4620,7 +4620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0, bool incremental1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"}; @@ -4650,7 +4650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parseContinue() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parseContinue"); + static PyObject* name = PyUnicode_FromString("parseContinue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void* PythonQtShell_QXmlSimpleReader::property(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4710,7 +4710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4729,7 +4729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4748,7 +4748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4767,7 +4767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4786,7 +4786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4805,7 +4805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name0, bool value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name0, void* value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; diff --git a/generated_cpp_53/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp b/generated_cpp_53/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp index 213033aa9..382c2e94c 100644 --- a/generated_cpp_53/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +++ b/generated_cpp_53/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp @@ -32,7 +32,7 @@ PythonQtShell_QAbstractMessageHandler::~PythonQtShell_QAbstractMessageHandler() void PythonQtShell_QAbstractMessageHandler::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -51,7 +51,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -70,7 +70,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractMessageHandler::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -100,7 +100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractMessageHandler::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -130,7 +130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::handleMessage(QtMsgType type0, const QString& description1, const QUrl& identifier2, const QSourceLocation& sourceLocation3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handleMessage"); + static PyObject* name = PyUnicode_FromString("handleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QtMsgType" , "const QString&" , "const QUrl&" , "const QSourceLocation&"}; @@ -149,7 +149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -188,7 +188,7 @@ PythonQtShell_QAbstractUriResolver::~PythonQtShell_QAbstractUriResolver() { void PythonQtShell_QAbstractUriResolver::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -207,7 +207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractUriResolver::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -226,7 +226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractUriResolver::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -256,7 +256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractUriResolver::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -286,7 +286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractUriResolver::resolve(const QUrl& relative0, const QUrl& baseURI1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolve"); + static PyObject* name = PyUnicode_FromString("resolve"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "const QUrl&"}; @@ -316,7 +316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractUriResolver::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -350,7 +350,7 @@ PythonQtShell_QAbstractXmlNodeModel::~PythonQtShell_QAbstractXmlNodeModel() { QVector PythonQtShell_QAbstractXmlNodeModel::attributes(const QXmlNodeModelIndex& element0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -380,7 +380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractXmlNodeModel::baseUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -410,7 +410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::DocumentOrder PythonQtShell_QAbstractXmlNodeModel::compareOrder(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -440,7 +440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractXmlNodeModel::documentUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -470,7 +470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::elementById(const QXmlName& NCName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -500,7 +500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -530,7 +530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::NodeKind PythonQtShell_QAbstractXmlNodeModel::kind(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlName PythonQtShell_QAbstractXmlNodeModel::name(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -590,7 +590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -620,7 +620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { short PythonQtShell_QAbstractXmlNodeModel::namespaceForPrefix(const QXmlNodeModelIndex& ni0, const short prefix1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -650,7 +650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::nextFromSimpleAxis(QAbstractXmlNodeModel::SimpleAxis axis0, const QXmlNodeModelIndex& origin1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -680,7 +680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractXmlNodeModel::nodesByIdref(const QXmlName& NCName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -710,7 +710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::root(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -740,7 +740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QAbstractXmlNodeModel::stringValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractXmlNodeModel::typedValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -895,7 +895,7 @@ PythonQtShell_QAbstractXmlReceiver::~PythonQtShell_QAbstractXmlReceiver() { void PythonQtShell_QAbstractXmlReceiver::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -933,7 +933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -952,7 +952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -971,7 +971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -990,7 +990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1009,7 +1009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1028,7 +1028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::namespaceBinding(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::processingInstruction(const QXmlName& target0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1066,7 +1066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1085,7 +1085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1104,7 +1104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1123,7 +1123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1221,7 +1221,7 @@ PythonQtShell_QSimpleXmlNodeModel::~PythonQtShell_QSimpleXmlNodeModel() { QVector PythonQtShell_QSimpleXmlNodeModel::attributes(const QXmlNodeModelIndex& element0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1251,7 +1251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex& node0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1281,7 +1281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::DocumentOrder PythonQtShell_QSimpleXmlNodeModel::compareOrder(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1311,7 +1311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QSimpleXmlNodeModel::documentUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1341,7 +1341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::elementById(const QXmlName& id0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -1371,7 +1371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::NodeKind PythonQtShell_QSimpleXmlNodeModel::kind(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -1401,7 +1401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlName PythonQtShell_QSimpleXmlNodeModel::name(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -1431,7 +1431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1461,7 +1461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::nextFromSimpleAxis(QAbstractXmlNodeModel::SimpleAxis axis0, const QXmlNodeModelIndex& origin1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -1491,7 +1491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QSimpleXmlNodeModel::nodesByIdref(const QXmlName& idref0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -1521,7 +1521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::root(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -1551,7 +1551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex& node0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -1581,7 +1581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSimpleXmlNodeModel::typedValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1717,7 +1717,7 @@ PythonQtShell_QXmlFormatter::~PythonQtShell_QXmlFormatter() { void PythonQtShell_QXmlFormatter::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1736,7 +1736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1755,7 +1755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1774,7 +1774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1812,7 +1812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::namespaceBinding(const QXmlName& nb0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::processingInstruction(const QXmlName& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1926,7 +1926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1945,7 +1945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2510,7 +2510,7 @@ PythonQtShell_QXmlSerializer::~PythonQtShell_QXmlSerializer() { void PythonQtShell_QXmlSerializer::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2529,7 +2529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -2548,7 +2548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2567,7 +2567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2586,7 +2586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2605,7 +2605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2624,7 +2624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2643,7 +2643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::namespaceBinding(const QXmlName& nb0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2662,7 +2662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::processingInstruction(const QXmlName& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2681,7 +2681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2700,7 +2700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2719,7 +2719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2738,7 +2738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; diff --git a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core0.cpp b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core0.cpp index 437322749..af2d36770 100644 --- a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +++ b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core0.cpp @@ -52,7 +52,7 @@ PythonQtShell_QAbstractAnimation::~PythonQtShell_QAbstractAnimation() { void PythonQtShell_QAbstractAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -71,7 +71,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -90,7 +90,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -120,7 +120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -150,7 +150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -180,7 +180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -199,7 +199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -218,7 +218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -237,7 +237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -341,7 +341,7 @@ PythonQtShell_QAbstractItemModel::~PythonQtShell_QAbstractItemModel() { QModelIndex PythonQtShell_QAbstractItemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -371,7 +371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -401,7 +401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -431,7 +431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -450,7 +450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -480,7 +480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -499,7 +499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -529,7 +529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -559,7 +559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -589,7 +589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -619,7 +619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -638,7 +638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractItemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -668,7 +668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -698,7 +698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -728,7 +728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -758,7 +758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -788,7 +788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -818,7 +818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractItemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -848,7 +848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractItemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -878,7 +878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractItemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -908,7 +908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractItemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -938,7 +938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -968,7 +968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -998,7 +998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1028,7 +1028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1058,7 +1058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1088,7 +1088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1107,7 +1107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractItemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -1137,7 +1137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1167,7 +1167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1197,7 +1197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1227,7 +1227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1257,7 +1257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1287,7 +1287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1306,7 +1306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1336,7 +1336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1366,7 +1366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1396,7 +1396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1426,7 +1426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1770,7 +1770,7 @@ PythonQtShell_QAbstractListModel::~PythonQtShell_QAbstractListModel() { QModelIndex PythonQtShell_QAbstractListModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1800,7 +1800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1830,7 +1830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1879,7 +1879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1898,7 +1898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractListModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1928,7 +1928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1958,7 +1958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1988,7 +1988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2018,7 +2018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2037,7 +2037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractListModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2067,7 +2067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractListModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2097,7 +2097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractListModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2127,7 +2127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2157,7 +2157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2187,7 +2187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractListModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2217,7 +2217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractListModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2247,7 +2247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractListModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2277,7 +2277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractListModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2307,7 +2307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2337,7 +2337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2367,7 +2367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2397,7 +2397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2427,7 +2427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2446,7 +2446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractListModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2476,7 +2476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractListModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2506,7 +2506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2536,7 +2536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2566,7 +2566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2596,7 +2596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractListModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2626,7 +2626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2645,7 +2645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractListModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2675,7 +2675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractListModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2705,7 +2705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractListModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2735,7 +2735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractListModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2765,7 +2765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractListModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2814,7 +2814,7 @@ PythonQtShell_QAbstractState::~PythonQtShell_QAbstractState() { void PythonQtShell_QAbstractState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2852,7 +2852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2882,7 +2882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2912,7 +2912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2931,7 +2931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3009,7 +3009,7 @@ PythonQtShell_QAbstractTransition::~PythonQtShell_QAbstractTransition() { void PythonQtShell_QAbstractTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3028,7 +3028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3047,7 +3047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3077,7 +3077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3107,7 +3107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3137,7 +3137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3156,7 +3156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3245,7 +3245,7 @@ PythonQtShell_QAnimationGroup::~PythonQtShell_QAnimationGroup() { void PythonQtShell_QAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3264,7 +3264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3283,7 +3283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3313,7 +3313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3343,7 +3343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3373,7 +3373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3392,7 +3392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3411,7 +3411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3430,7 +3430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3565,7 +3565,7 @@ PythonQtShell_QBuffer::~PythonQtShell_QBuffer() { bool PythonQtShell_QBuffer::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3595,7 +3595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3625,7 +3625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3655,7 +3655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3685,7 +3685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3704,7 +3704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3723,7 +3723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3742,7 +3742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3772,7 +3772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3802,7 +3802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3832,7 +3832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::open(QIODevice::OpenMode openMode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3862,7 +3862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3892,7 +3892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3922,7 +3922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3952,7 +3952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3982,7 +3982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::seek(qint64 off0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4012,7 +4012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4042,7 +4042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBuffer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4061,7 +4061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4091,7 +4091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBuffer::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4121,7 +4121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QBuffer::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5592,7 +5592,7 @@ PythonQtShell_QEventLoop::~PythonQtShell_QEventLoop() { void PythonQtShell_QEventLoop::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventLoop::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5630,7 +5630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventLoop::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5660,7 +5660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventLoop::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5690,7 +5690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventLoop::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5754,7 +5754,7 @@ PythonQtShell_QEventTransition::~PythonQtShell_QEventTransition() { void PythonQtShell_QEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5773,7 +5773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5792,7 +5792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5822,7 +5822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5852,7 +5852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5882,7 +5882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5901,7 +5901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5969,7 +5969,7 @@ PythonQtShell_QFactoryInterface::~PythonQtShell_QFactoryInterface() { QStringList PythonQtShell_QFactoryInterface::keys() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keys"); + static PyObject* name = PyUnicode_FromString("keys"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6014,7 +6014,7 @@ PythonQtShell_QFile::~PythonQtShell_QFile() { bool PythonQtShell_QFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6044,7 +6044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6074,7 +6074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6104,7 +6104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6134,7 +6134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6153,7 +6153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6172,7 +6172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6191,7 +6191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6221,7 +6221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6251,7 +6251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFile::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6281,7 +6281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6311,7 +6311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -6341,7 +6341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -6371,7 +6371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6401,7 +6401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6431,7 +6431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6461,7 +6461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6491,7 +6491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6521,7 +6521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6551,7 +6551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -6581,7 +6581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6611,7 +6611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6630,7 +6630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6660,7 +6660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6690,7 +6690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -6867,7 +6867,7 @@ PythonQtShell_QFileDevice::~PythonQtShell_QFileDevice() { bool PythonQtShell_QFileDevice::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6897,7 +6897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6927,7 +6927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6957,7 +6957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6987,7 +6987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7006,7 +7006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7025,7 +7025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7044,7 +7044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7074,7 +7074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7104,7 +7104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFileDevice::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7134,7 +7134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7164,7 +7164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -7194,7 +7194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QFileDevice::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -7224,7 +7224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7254,7 +7254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -7284,7 +7284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -7314,7 +7314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7344,7 +7344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7374,7 +7374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7404,7 +7404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -7434,7 +7434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7464,7 +7464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDevice::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7483,7 +7483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7513,7 +7513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDevice::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7543,7 +7543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QFileDevice::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core1.cpp b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core1.cpp index 63d6ddd16..e8e03d422 100644 --- a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +++ b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core1.cpp @@ -53,7 +53,7 @@ PythonQtShell_QFileSelector::~PythonQtShell_QFileSelector() { void PythonQtShell_QFileSelector::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -72,7 +72,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSelector::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -91,7 +91,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSelector::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -121,7 +121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSelector::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -151,7 +151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSelector::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -205,7 +205,7 @@ PythonQtShell_QFileSystemWatcher::~PythonQtShell_QFileSystemWatcher() { void PythonQtShell_QFileSystemWatcher::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -224,7 +224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemWatcher::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -243,7 +243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemWatcher::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -273,7 +273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemWatcher::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -303,7 +303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemWatcher::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -366,7 +366,7 @@ PythonQtShell_QFinalState::~PythonQtShell_QFinalState() { void PythonQtShell_QFinalState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -385,7 +385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFinalState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFinalState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -502,7 +502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFinalState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -546,7 +546,7 @@ PythonQtShell_QHistoryState::~PythonQtShell_QHistoryState() { void PythonQtShell_QHistoryState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -565,7 +565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -584,7 +584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHistoryState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -614,7 +614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHistoryState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -644,7 +644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -682,7 +682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHistoryState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -750,7 +750,7 @@ PythonQtShell_QIODevice::~PythonQtShell_QIODevice() { bool PythonQtShell_QIODevice::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -780,7 +780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -810,7 +810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -840,7 +840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -870,7 +870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -889,7 +889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -908,7 +908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -927,7 +927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -957,7 +957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -987,7 +987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1017,7 +1017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1077,7 +1077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1107,7 +1107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1137,7 +1137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1167,7 +1167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1197,7 +1197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1227,7 +1227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIODevice::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1246,7 +1246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1276,7 +1276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIODevice::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1306,7 +1306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QIODevice::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1520,7 +1520,7 @@ PythonQtShell_QIdentityProxyModel::~PythonQtShell_QIdentityProxyModel() { QModelIndex PythonQtShell_QIdentityProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1550,7 +1550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1580,7 +1580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1610,7 +1610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1629,7 +1629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QIdentityProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1659,7 +1659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1678,7 +1678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QIdentityProxyModel::data(const QModelIndex& proxyIndex0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1708,7 +1708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1738,7 +1738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1768,7 +1768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1798,7 +1798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1817,7 +1817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QIdentityProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -1847,7 +1847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1877,7 +1877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QIdentityProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1937,7 +1937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1967,7 +1967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1997,7 +1997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QIdentityProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2027,7 +2027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2057,7 +2057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionFromSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -2087,7 +2087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionToSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -2117,7 +2117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2147,7 +2147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QIdentityProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2177,7 +2177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QIdentityProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2207,7 +2207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QIdentityProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2237,7 +2237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2267,7 +2267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2297,7 +2297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2327,7 +2327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2357,7 +2357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2387,7 +2387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2406,7 +2406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QIdentityProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2436,7 +2436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QIdentityProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2466,7 +2466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2496,7 +2496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2526,7 +2526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2556,7 +2556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -2575,7 +2575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QIdentityProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2605,7 +2605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2624,7 +2624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QIdentityProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2654,7 +2654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIdentityProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2684,7 +2684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2714,7 +2714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2744,7 +2744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIdentityProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3418,7 +3418,7 @@ PythonQtShell_QLibrary::~PythonQtShell_QLibrary() { void PythonQtShell_QLibrary::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3437,7 +3437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLibrary::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3456,7 +3456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLibrary::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3486,7 +3486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLibrary::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3516,7 +3516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLibrary::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4420,7 +4420,7 @@ PythonQtShell_QMimeData::~PythonQtShell_QMimeData() { void PythonQtShell_QMimeData::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4439,7 +4439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMimeData::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4458,7 +4458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4488,7 +4488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4518,7 +4518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QMimeData::formats() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("formats"); + static PyObject* name = PyUnicode_FromString("formats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4548,7 +4548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMimeData::hasFormat(const QString& mimetype0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFormat"); + static PyObject* name = PyUnicode_FromString("hasFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4578,7 +4578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMimeData::retrieveData(const QString& mimetype0, QVariant::Type preferredType1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("retrieveData"); + static PyObject* name = PyUnicode_FromString("retrieveData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "QVariant::Type"}; @@ -4608,7 +4608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMimeData::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5019,7 +5019,7 @@ PythonQtShell_QObject::~PythonQtShell_QObject() { void PythonQtShell_QObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5038,7 +5038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5057,7 +5057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5087,7 +5087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5117,7 +5117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5266,7 +5266,7 @@ PythonQtShell_QParallelAnimationGroup::~PythonQtShell_QParallelAnimationGroup() void PythonQtShell_QParallelAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5285,7 +5285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5304,7 +5304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QParallelAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5334,7 +5334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QParallelAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5364,7 +5364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QParallelAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5394,7 +5394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5413,7 +5413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateCurrentTime(int currentTime0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5432,7 +5432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -5451,7 +5451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QParallelAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; diff --git a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core2.cpp b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core2.cpp index d36761ec3..423cd0a6a 100644 --- a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +++ b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core2.cpp @@ -51,7 +51,7 @@ PythonQtShell_QPauseAnimation::~PythonQtShell_QPauseAnimation() { void PythonQtShell_QPauseAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -70,7 +70,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -89,7 +89,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPauseAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -119,7 +119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPauseAnimation::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -149,7 +149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPauseAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -179,7 +179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -198,7 +198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -217,7 +217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -236,7 +236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPauseAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -395,7 +395,7 @@ PythonQtShell_QProcess::~PythonQtShell_QProcess() { bool PythonQtShell_QProcess::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -425,7 +425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -455,7 +455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -485,7 +485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -515,7 +515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -534,7 +534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -553,7 +553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -572,7 +572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -602,7 +602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -632,7 +632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -662,7 +662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -692,7 +692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -722,7 +722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -752,7 +752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -782,7 +782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -812,7 +812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::setupChildProcess() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupChildProcess"); + static PyObject* name = PyUnicode_FromString("setupChildProcess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -861,7 +861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -891,7 +891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProcess::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -910,7 +910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -940,7 +940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProcess::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -970,7 +970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QProcess::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1360,7 +1360,7 @@ PythonQtShell_QPropertyAnimation::~PythonQtShell_QPropertyAnimation() { void PythonQtShell_QPropertyAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1379,7 +1379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1398,7 +1398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPropertyAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPropertyAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPropertyAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1488,7 +1488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPropertyAnimation::interpolated(const QVariant& from0, const QVariant& to1, qreal progress2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -1518,7 +1518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1537,7 +1537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1556,7 +1556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateCurrentValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1575,7 +1575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -1594,7 +1594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPropertyAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2091,7 +2091,7 @@ PythonQtShell_QRunnable::~PythonQtShell_QRunnable() { void PythonQtShell_QRunnable::run() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2135,7 +2135,7 @@ PythonQtShell_QSaveFile::~PythonQtShell_QSaveFile() { bool PythonQtShell_QSaveFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2165,7 +2165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2195,7 +2195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2225,7 +2225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2255,7 +2255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSaveFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2274,7 +2274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSaveFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2293,7 +2293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2323,7 +2323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2353,7 +2353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSaveFile::fileName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2383,7 +2383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2413,7 +2413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2443,7 +2443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QSaveFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -2473,7 +2473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2503,7 +2503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2533,7 +2533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2563,7 +2563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2593,7 +2593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2623,7 +2623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2653,7 +2653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -2683,7 +2683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2713,7 +2713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSaveFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2732,7 +2732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2762,7 +2762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSaveFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2792,7 +2792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSaveFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2911,7 +2911,7 @@ PythonQtShell_QSequentialAnimationGroup::~PythonQtShell_QSequentialAnimationGrou void PythonQtShell_QSequentialAnimationGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2930,7 +2930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2949,7 +2949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSequentialAnimationGroup::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2979,7 +2979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSequentialAnimationGroup::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3009,7 +3009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSequentialAnimationGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3039,7 +3039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3058,7 +3058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3077,7 +3077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3096,7 +3096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSequentialAnimationGroup::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3165,7 +3165,7 @@ PythonQtShell_QSettings::~PythonQtShell_QSettings() { void PythonQtShell_QSettings::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3184,7 +3184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSettings::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3203,7 +3203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSettings::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3233,7 +3233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSettings::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3263,7 +3263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSettings::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3468,7 +3468,7 @@ PythonQtShell_QSharedMemory::~PythonQtShell_QSharedMemory() { void PythonQtShell_QSharedMemory::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3487,7 +3487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSharedMemory::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3506,7 +3506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSharedMemory::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSharedMemory::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSharedMemory::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3674,7 +3674,7 @@ PythonQtShell_QSignalMapper::~PythonQtShell_QSignalMapper() { void PythonQtShell_QSignalMapper::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3693,7 +3693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalMapper::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3712,7 +3712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalMapper::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3742,7 +3742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalMapper::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3772,7 +3772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalMapper::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3846,7 +3846,7 @@ PythonQtShell_QSignalTransition::~PythonQtShell_QSignalTransition() { void PythonQtShell_QSignalTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3865,7 +3865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3884,7 +3884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3914,7 +3914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3944,7 +3944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSignalTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3974,7 +3974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3993,7 +3993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSignalTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4125,7 +4125,7 @@ PythonQtShell_QState::~PythonQtShell_QState() { void PythonQtShell_QState::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4144,7 +4144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4163,7 +4163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QState::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4193,7 +4193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QState::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4223,7 +4223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4242,7 +4242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4261,7 +4261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QState::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4369,7 +4369,7 @@ PythonQtShell_QStateMachine::~PythonQtShell_QStateMachine() { void PythonQtShell_QStateMachine::beginMicrostep(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginMicrostep"); + static PyObject* name = PyUnicode_FromString("beginMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4388,7 +4388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::beginSelectTransitions(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginSelectTransitions"); + static PyObject* name = PyUnicode_FromString("beginSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4407,7 +4407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4426,7 +4426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4445,7 +4445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::endMicrostep(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endMicrostep"); + static PyObject* name = PyUnicode_FromString("endMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4464,7 +4464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::endSelectTransitions(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endSelectTransitions"); + static PyObject* name = PyUnicode_FromString("endSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4483,7 +4483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStateMachine::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4513,7 +4513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStateMachine::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4543,7 +4543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::onEntry(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4562,7 +4562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::onExit(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4581,7 +4581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStateMachine::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4936,7 +4936,7 @@ PythonQtShell_QTemporaryFile::~PythonQtShell_QTemporaryFile() { bool PythonQtShell_QTemporaryFile::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4966,7 +4966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4996,7 +4996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5026,7 +5026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5056,7 +5056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5075,7 +5075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5094,7 +5094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5113,7 +5113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5143,7 +5143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5173,7 +5173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5203,7 +5203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::open(QIODevice::OpenMode flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5233,7 +5233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QFileDevice::Permissions PythonQtShell_QTemporaryFile::permissions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -5263,7 +5263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5293,7 +5293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5323,7 +5323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5353,7 +5353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5383,7 +5383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::resize(qint64 sz0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5413,7 +5413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::seek(qint64 offset0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5443,7 +5443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::setPermissions(QFileDevice::Permissions permissionSpec0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -5473,7 +5473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5503,7 +5503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTemporaryFile::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5522,7 +5522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5552,7 +5552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTemporaryFile::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5582,7 +5582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTemporaryFile::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core3.cpp b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core3.cpp index 111c078d4..1b84a4796 100644 --- a/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +++ b/generated_cpp_54/com_trolltech_qt_core/com_trolltech_qt_core3.cpp @@ -41,7 +41,7 @@ PythonQtShell_QTextCodec::~PythonQtShell_QTextCodec() { QList PythonQtShell_QTextCodec::aliases() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("aliases"); + static PyObject* name = PyUnicode_FromString("aliases"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -71,7 +71,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QTextCodec::convertFromUnicode(const QChar* in0, int length1, QTextCodec::ConverterState* state2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("convertFromUnicode"); + static PyObject* name = PyUnicode_FromString("convertFromUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QChar*" , "int" , "QTextCodec::ConverterState*"}; @@ -101,7 +101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTextCodec::convertToUnicode(const char* in0, int length1, QTextCodec::ConverterState* state2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("convertToUnicode"); + static PyObject* name = PyUnicode_FromString("convertToUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "int" , "QTextCodec::ConverterState*"}; @@ -131,7 +131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextCodec::mibEnum() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mibEnum"); + static PyObject* name = PyUnicode_FromString("mibEnum"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -161,7 +161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QTextCodec::name() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -619,7 +619,7 @@ PythonQtShell_QThreadPool::~PythonQtShell_QThreadPool() { void PythonQtShell_QThreadPool::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -638,7 +638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QThreadPool::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -657,7 +657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QThreadPool::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -687,7 +687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QThreadPool::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -717,7 +717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QThreadPool::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -806,7 +806,7 @@ PythonQtShell_QTimeLine::~PythonQtShell_QTimeLine() { void PythonQtShell_QTimeLine::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -825,7 +825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeLine::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -844,7 +844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeLine::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -874,7 +874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeLine::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -904,7 +904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeLine::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -923,7 +923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qreal PythonQtShell_QTimeLine::valueForTime(int msec0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueForTime"); + static PyObject* name = PyUnicode_FromString("valueForTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal" , "int"}; @@ -1257,7 +1257,7 @@ PythonQtShell_QTimer::~PythonQtShell_QTimer() { void PythonQtShell_QTimer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1276,7 +1276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1295,7 +1295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1325,7 +1325,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1355,7 +1355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1459,7 +1459,7 @@ PythonQtShell_QTranslator::~PythonQtShell_QTranslator() { void PythonQtShell_QTranslator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1478,7 +1478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTranslator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1497,7 +1497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1527,7 +1527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1557,7 +1557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTranslator::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1587,7 +1587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTranslator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1606,7 +1606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTranslator::translate(const char* context0, const char* sourceText1, const char* disambiguation2, int n3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("translate"); + static PyObject* name = PyUnicode_FromString("translate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "const char*" , "const char*" , "int"}; @@ -1908,7 +1908,7 @@ PythonQtShell_QVariantAnimation::~PythonQtShell_QVariantAnimation() { void PythonQtShell_QVariantAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1927,7 +1927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1946,7 +1946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVariantAnimation::duration() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1976,7 +1976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVariantAnimation::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2006,7 +2006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVariantAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2036,7 +2036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QVariantAnimation::interpolated(const QVariant& from0, const QVariant& to1, qreal progress2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -2066,7 +2066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2085,7 +2085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateCurrentTime(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2104,7 +2104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateCurrentValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2123,7 +2123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateDirection(QAbstractAnimation::Direction direction0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -2142,7 +2142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVariantAnimation::updateState(QAbstractAnimation::State newState0, QAbstractAnimation::State oldState1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2287,7 +2287,7 @@ PythonQtShell_QXmlStreamEntityResolver::~PythonQtShell_QXmlStreamEntityResolver( QString PythonQtShell_QXmlStreamEntityResolver::resolveEntity(const QString& publicId0, const QString& systemId1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "const QString&"}; @@ -2317,7 +2317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlStreamEntityResolver::resolveUndeclaredEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveUndeclaredEntity"); + static PyObject* name = PyUnicode_FromString("resolveUndeclaredEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp index e37155cca..ea55d95b4 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp @@ -113,7 +113,7 @@ PythonQtShell_QAbstractButton::~PythonQtShell_QAbstractButton() { void PythonQtShell_QAbstractButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -132,7 +132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -151,7 +151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -170,7 +170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -189,7 +189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -208,7 +208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -227,7 +227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -246,7 +246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -276,7 +276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -295,7 +295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -314,7 +314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -333,7 +333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -352,7 +352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -371,7 +371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -401,7 +401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -431,7 +431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -450,7 +450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -480,7 +480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -499,7 +499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -529,7 +529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -559,7 +559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -578,7 +578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -608,7 +608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -627,7 +627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -646,7 +646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -676,7 +676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -695,7 +695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -714,7 +714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -733,7 +733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -763,7 +763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractButton::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -793,7 +793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -812,7 +812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -831,7 +831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -850,7 +850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -869,7 +869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -888,7 +888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -937,7 +937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1016,7 +1016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1035,7 +1035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1065,7 +1065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1084,7 +1084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractButton::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1114,7 +1114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1133,7 +1133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1152,7 +1152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1356,7 +1356,7 @@ PythonQtShell_QAbstractGraphicsShapeItem::~PythonQtShell_QAbstractGraphicsShapeI void PythonQtShell_QAbstractGraphicsShapeItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1375,7 +1375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QAbstractGraphicsShapeItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1405,7 +1405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1435,7 +1435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1465,7 +1465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1495,7 +1495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1514,7 +1514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1533,7 +1533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1552,7 +1552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1571,7 +1571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1590,7 +1590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1620,7 +1620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1639,7 +1639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1658,7 +1658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1677,7 +1677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1696,7 +1696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1715,7 +1715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1734,7 +1734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1764,7 +1764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1794,7 +1794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractGraphicsShapeItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -1827,7 +1827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1846,7 +1846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1865,7 +1865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1884,7 +1884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1903,7 +1903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1922,7 +1922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1941,7 +1941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1971,7 +1971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1990,7 +1990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2020,7 +2020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2050,7 +2050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2069,7 +2069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2099,7 +2099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractGraphicsShapeItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2129,7 +2129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractGraphicsShapeItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2159,7 +2159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractGraphicsShapeItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2218,7 +2218,7 @@ PythonQtShell_QAbstractItemDelegate::~PythonQtShell_QAbstractItemDelegate() { void PythonQtShell_QAbstractItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2237,7 +2237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QAbstractItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2267,7 +2267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2286,7 +2286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2305,7 +2305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2335,7 +2335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2365,7 +2365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2395,7 +2395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2425,7 +2425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2444,7 +2444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -2474,7 +2474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2493,7 +2493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -2512,7 +2512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2542,7 +2542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2561,7 +2561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2640,7 +2640,7 @@ PythonQtShell_QAbstractItemView::~PythonQtShell_QAbstractItemView() { void PythonQtShell_QAbstractItemView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2659,7 +2659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2678,7 +2678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2697,7 +2697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -2716,7 +2716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2735,7 +2735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2754,7 +2754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2773,7 +2773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -2792,7 +2792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2811,7 +2811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -2830,7 +2830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2860,7 +2860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2879,7 +2879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2898,7 +2898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2917,7 +2917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2936,7 +2936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2955,7 +2955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -2985,7 +2985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3004,7 +3004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3023,7 +3023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3053,7 +3053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3083,7 +3083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3102,7 +3102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3132,7 +3132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3151,7 +3151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3181,7 +3181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3211,7 +3211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3230,7 +3230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3260,7 +3260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3279,7 +3279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3298,7 +3298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemView::indexAt(const QPoint& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3328,7 +3328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3347,7 +3347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3366,7 +3366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3396,7 +3396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3426,7 +3426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3445,7 +3445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3464,7 +3464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3483,7 +3483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3502,7 +3502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3532,7 +3532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3551,7 +3551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3570,7 +3570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3589,7 +3589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3608,7 +3608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractItemView::moveCursor(QAbstractItemView::CursorAction cursorAction0, Qt::KeyboardModifiers modifiers1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -3638,7 +3638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3657,7 +3657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3687,7 +3687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractItemView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3717,7 +3717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3736,7 +3736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractItemView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3766,7 +3766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3785,7 +3785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3804,7 +3804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -3823,7 +3823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -3842,7 +3842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3861,7 +3861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -3880,7 +3880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3899,7 +3899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractItemView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -3929,7 +3929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -3948,7 +3948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QAbstractItemView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -3978,7 +3978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -3997,7 +3997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4016,7 +4016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4035,7 +4035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4054,7 +4054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4073,7 +4073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractItemView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4103,7 +4103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4122,7 +4122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4152,7 +4152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4182,7 +4182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4201,7 +4201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4220,7 +4220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4239,7 +4239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4258,7 +4258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4277,7 +4277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4296,7 +4296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractItemView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4326,7 +4326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4345,7 +4345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4364,7 +4364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QAbstractItemView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4394,7 +4394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractItemView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4424,7 +4424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractItemView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4454,7 +4454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QAbstractItemView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -4484,7 +4484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QAbstractItemView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -4514,7 +4514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractItemView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5118,7 +5118,7 @@ PythonQtShell_QAbstractProxyModel::~PythonQtShell_QAbstractProxyModel() { QModelIndex PythonQtShell_QAbstractProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5148,7 +5148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5178,7 +5178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5208,7 +5208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5227,7 +5227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5257,7 +5257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5276,7 +5276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractProxyModel::data(const QModelIndex& proxyIndex0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5306,7 +5306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5336,7 +5336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5366,7 +5366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5396,7 +5396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5415,7 +5415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -5445,7 +5445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5475,7 +5475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -5505,7 +5505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -5535,7 +5535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5565,7 +5565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5595,7 +5595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -5625,7 +5625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5655,7 +5655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionFromSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -5685,7 +5685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionToSource(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -5715,7 +5715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5745,7 +5745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -5775,7 +5775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -5805,7 +5805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5835,7 +5835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5865,7 +5865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -5895,7 +5895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5925,7 +5925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5955,7 +5955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -5985,7 +5985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6004,7 +6004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -6034,7 +6034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6064,7 +6064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -6094,7 +6094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -6124,7 +6124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -6154,7 +6154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -6173,7 +6173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6203,7 +6203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -6222,7 +6222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -6252,7 +6252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6282,7 +6282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -6312,7 +6312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -6342,7 +6342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6511,7 +6511,7 @@ PythonQtShell_QAbstractScrollArea::~PythonQtShell_QAbstractScrollArea() { void PythonQtShell_QAbstractScrollArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6530,7 +6530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6549,7 +6549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6568,7 +6568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6587,7 +6587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6606,7 +6606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6625,7 +6625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6655,7 +6655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6674,7 +6674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6693,7 +6693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6712,7 +6712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6731,7 +6731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6750,7 +6750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6780,7 +6780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6810,7 +6810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6829,7 +6829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6859,7 +6859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6878,7 +6878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6908,7 +6908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6938,7 +6938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6957,7 +6957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6976,7 +6976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6995,7 +6995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractScrollArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7025,7 +7025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7044,7 +7044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7063,7 +7063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7082,7 +7082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7112,7 +7112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7131,7 +7131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7150,7 +7150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7169,7 +7169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7188,7 +7188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7207,7 +7207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7237,7 +7237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractScrollArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7267,7 +7267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7286,7 +7286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractScrollArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7316,7 +7316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7335,7 +7335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7354,7 +7354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7373,7 +7373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractScrollArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7403,7 +7403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7422,7 +7422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7441,7 +7441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7460,7 +7460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractScrollArea::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7490,7 +7490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractScrollArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7520,7 +7520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractScrollArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7749,7 +7749,7 @@ PythonQtShell_QAbstractSlider::~PythonQtShell_QAbstractSlider() { void PythonQtShell_QAbstractSlider::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7768,7 +7768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7787,7 +7787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7806,7 +7806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7825,7 +7825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7844,7 +7844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7863,7 +7863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7893,7 +7893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7912,7 +7912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7931,7 +7931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7950,7 +7950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7969,7 +7969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7988,7 +7988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8018,7 +8018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8048,7 +8048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8067,7 +8067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8097,7 +8097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8116,7 +8116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8146,7 +8146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8176,7 +8176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8195,7 +8195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8214,7 +8214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8233,7 +8233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8263,7 +8263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8282,7 +8282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8301,7 +8301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8320,7 +8320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8350,7 +8350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractSlider::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8380,7 +8380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8399,7 +8399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8418,7 +8418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8437,7 +8437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8456,7 +8456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8475,7 +8475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSlider::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8505,7 +8505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractSlider::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8535,7 +8535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8554,7 +8554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractSlider::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8584,7 +8584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8603,7 +8603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractSlider::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8633,7 +8633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8652,7 +8652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractSlider::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8682,7 +8682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::sliderChange(QAbstractSlider::SliderChange change0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -8701,7 +8701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8720,7 +8720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8739,7 +8739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSlider::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8908,7 +8908,7 @@ PythonQtShell_QAbstractSpinBox::~PythonQtShell_QAbstractSpinBox() { void PythonQtShell_QAbstractSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8927,7 +8927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8946,7 +8946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8965,7 +8965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8984,7 +8984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9003,7 +9003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9022,7 +9022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9041,7 +9041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9071,7 +9071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9090,7 +9090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9109,7 +9109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9128,7 +9128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9147,7 +9147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9166,7 +9166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9196,7 +9196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9226,7 +9226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -9245,7 +9245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9264,7 +9264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9294,7 +9294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9313,7 +9313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9343,7 +9343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9373,7 +9373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9392,7 +9392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9411,7 +9411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9430,7 +9430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9460,7 +9460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9479,7 +9479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9498,7 +9498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9517,7 +9517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9547,7 +9547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9566,7 +9566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9585,7 +9585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9604,7 +9604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9623,7 +9623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9642,7 +9642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9672,7 +9672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QAbstractSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9702,7 +9702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9721,7 +9721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QAbstractSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9751,7 +9751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9770,7 +9770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QAbstractSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9800,7 +9800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9819,7 +9819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9838,7 +9838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QAbstractSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -9868,7 +9868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9887,7 +9887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9906,7 +9906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QAbstractSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -9936,7 +9936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10220,7 +10220,7 @@ PythonQtShell_QAbstractTableModel::~PythonQtShell_QAbstractTableModel() { QModelIndex PythonQtShell_QAbstractTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -10250,7 +10250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -10280,7 +10280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10310,7 +10310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10329,7 +10329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -10359,7 +10359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10378,7 +10378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractTableModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -10408,7 +10408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -10438,7 +10438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10468,7 +10468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10498,7 +10498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -10517,7 +10517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QAbstractTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -10547,7 +10547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -10577,7 +10577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -10607,7 +10607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10637,7 +10637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10667,7 +10667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QAbstractTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -10697,7 +10697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -10727,7 +10727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QAbstractTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -10757,7 +10757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QAbstractTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -10787,7 +10787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -10817,7 +10817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -10847,7 +10847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10877,7 +10877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -10907,7 +10907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10926,7 +10926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QAbstractTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -10956,7 +10956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -10986,7 +10986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -11016,7 +11016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -11046,7 +11046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -11076,7 +11076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QAbstractTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -11106,7 +11106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -11125,7 +11125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QAbstractTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -11155,7 +11155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11185,7 +11185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -11215,7 +11215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -11245,7 +11245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11294,7 +11294,7 @@ PythonQtShell_QAbstractTextDocumentLayout::~PythonQtShell_QAbstractTextDocumentL QRectF PythonQtShell_QAbstractTextDocumentLayout::blockBoundingRect(const QTextBlock& block0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -11324,7 +11324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11343,7 +11343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11362,7 +11362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::documentChanged(int from0, int charsRemoved1, int charsAdded2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -11381,7 +11381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QAbstractTextDocumentLayout::documentSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -11411,7 +11411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::draw(QPainter* painter0, const QAbstractTextDocumentLayout::PaintContext& context1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -11430,7 +11430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::drawInlineObject(QPainter* painter0, const QRectF& rect1, QTextInlineObject object2, int posInDocument3, const QTextFormat& format4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -11449,7 +11449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTextDocumentLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11479,7 +11479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractTextDocumentLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11509,7 +11509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QAbstractTextDocumentLayout::frameBoundingRect(QTextFrame* frame0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -11539,7 +11539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTextDocumentLayout::hitTest(const QPointF& point0, Qt::HitTestAccuracy accuracy1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -11569,7 +11569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QAbstractTextDocumentLayout::pageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11599,7 +11599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::positionInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -11618,7 +11618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::resizeInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -11637,7 +11637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractTextDocumentLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11813,7 +11813,7 @@ PythonQtShell_QAction::~PythonQtShell_QAction() { void PythonQtShell_QAction::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11832,7 +11832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAction::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11851,7 +11851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAction::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11881,7 +11881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAction::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11911,7 +11911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAction::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12204,7 +12204,7 @@ PythonQtShell_QActionGroup::~PythonQtShell_QActionGroup() { void PythonQtShell_QActionGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12223,7 +12223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QActionGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12242,7 +12242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QActionGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12272,7 +12272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QActionGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12302,7 +12302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QActionGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12674,7 +12674,7 @@ PythonQtShell_QBoxLayout::~PythonQtShell_QBoxLayout() { void PythonQtShell_QBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -12693,7 +12693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12712,7 +12712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -12742,7 +12742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12772,7 +12772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12791,7 +12791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12821,7 +12821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12851,7 +12851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -12881,7 +12881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -12911,7 +12911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -12941,7 +12941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12960,7 +12960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12990,7 +12990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13020,7 +13020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -13050,7 +13050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13080,7 +13080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13110,7 +13110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -13129,7 +13129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13159,7 +13159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13353,7 +13353,7 @@ PythonQtShell_QButtonGroup::~PythonQtShell_QButtonGroup() { void PythonQtShell_QButtonGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13372,7 +13372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QButtonGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13391,7 +13391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QButtonGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13421,7 +13421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QButtonGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13451,7 +13451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QButtonGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13530,7 +13530,7 @@ PythonQtShell_QCalendarWidget::~PythonQtShell_QCalendarWidget() { void PythonQtShell_QCalendarWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13549,7 +13549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13568,7 +13568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13587,7 +13587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13606,7 +13606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13625,7 +13625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13644,7 +13644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13674,7 +13674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13693,7 +13693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13712,7 +13712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13731,7 +13731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13750,7 +13750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13769,7 +13769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13799,7 +13799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13829,7 +13829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13848,7 +13848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13878,7 +13878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13897,7 +13897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13927,7 +13927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13957,7 +13957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13976,7 +13976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13995,7 +13995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14014,7 +14014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCalendarWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14044,7 +14044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14063,7 +14063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14082,7 +14082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14101,7 +14101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCalendarWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14131,7 +14131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCalendarWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14161,7 +14161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14180,7 +14180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14199,7 +14199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14218,7 +14218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14237,7 +14237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14256,7 +14256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCalendarWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14286,7 +14286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::paintCell(QPainter* painter0, const QRect& rect1, const QDate& date2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintCell"); + static PyObject* name = PyUnicode_FromString("paintCell"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QDate&"}; @@ -14305,7 +14305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCalendarWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14335,7 +14335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14354,7 +14354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCalendarWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14384,7 +14384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14403,7 +14403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCalendarWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14433,7 +14433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14452,7 +14452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCalendarWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14482,7 +14482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14501,7 +14501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14520,7 +14520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCalendarWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14739,7 +14739,7 @@ PythonQtShell_QCheckBox::~PythonQtShell_QCheckBox() { void PythonQtShell_QCheckBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14758,7 +14758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14777,7 +14777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14796,7 +14796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14815,7 +14815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14834,7 +14834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14853,7 +14853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14872,7 +14872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14902,7 +14902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14921,7 +14921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14940,7 +14940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14959,7 +14959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14978,7 +14978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14997,7 +14997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15027,7 +15027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15057,7 +15057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15076,7 +15076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15106,7 +15106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15125,7 +15125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15155,7 +15155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15185,7 +15185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15204,7 +15204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -15234,7 +15234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15253,7 +15253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15272,7 +15272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCheckBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15302,7 +15302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15321,7 +15321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15340,7 +15340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15359,7 +15359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCheckBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15389,7 +15389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15408,7 +15408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15427,7 +15427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15446,7 +15446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15465,7 +15465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15484,7 +15484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCheckBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15514,7 +15514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15533,7 +15533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCheckBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15563,7 +15563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15582,7 +15582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCheckBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15612,7 +15612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15631,7 +15631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCheckBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15661,7 +15661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15680,7 +15680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15699,7 +15699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15718,7 +15718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCheckBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15899,7 +15899,7 @@ PythonQtShell_QColorDialog::~PythonQtShell_QColorDialog() { void PythonQtShell_QColorDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15918,7 +15918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15937,7 +15937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15956,7 +15956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15975,7 +15975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15994,7 +15994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16013,7 +16013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16032,7 +16032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16062,7 +16062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16081,7 +16081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16100,7 +16100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16119,7 +16119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16138,7 +16138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16157,7 +16157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16176,7 +16176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16206,7 +16206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16236,7 +16236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16266,7 +16266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16285,7 +16285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16315,7 +16315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16334,7 +16334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16364,7 +16364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16394,7 +16394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16413,7 +16413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16432,7 +16432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16451,7 +16451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QColorDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16481,7 +16481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16500,7 +16500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16519,7 +16519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16538,7 +16538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColorDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16568,7 +16568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16587,7 +16587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16606,7 +16606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16625,7 +16625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16644,7 +16644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16663,7 +16663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColorDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16693,7 +16693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16712,7 +16712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QColorDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16742,7 +16742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16761,7 +16761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QColorDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16791,7 +16791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16810,7 +16810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16829,7 +16829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QColorDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16859,7 +16859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16878,7 +16878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16897,7 +16897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16916,7 +16916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColorDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17044,7 +17044,7 @@ PythonQtShell_QColumnView::~PythonQtShell_QColumnView() { void PythonQtShell_QColumnView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17063,7 +17063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17082,7 +17082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17101,7 +17101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -17120,7 +17120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17139,7 +17139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -17158,7 +17158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17177,7 +17177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractItemView* PythonQtShell_QColumnView::createColumn(const QModelIndex& rootIndex0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createColumn"); + static PyObject* name = PyUnicode_FromString("createColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractItemView*" , "const QModelIndex&"}; @@ -17207,7 +17207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -17226,7 +17226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17245,7 +17245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -17264,7 +17264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17294,7 +17294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17313,7 +17313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17332,7 +17332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17351,7 +17351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17370,7 +17370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17389,7 +17389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -17419,7 +17419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -17438,7 +17438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17457,7 +17457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17487,7 +17487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17517,7 +17517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17536,7 +17536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17566,7 +17566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17585,7 +17585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17615,7 +17615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17645,7 +17645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17664,7 +17664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17694,7 +17694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17713,7 +17713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17732,7 +17732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QColumnView::indexAt(const QPoint& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -17762,7 +17762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17781,7 +17781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17800,7 +17800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QColumnView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17830,7 +17830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -17860,7 +17860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17879,7 +17879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17898,7 +17898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -17917,7 +17917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17936,7 +17936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17966,7 +17966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17985,7 +17985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18004,7 +18004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18023,7 +18023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18042,7 +18042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18061,7 +18061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18091,7 +18091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QColumnView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18121,7 +18121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18140,7 +18140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QColumnView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18170,7 +18170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18189,7 +18189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18208,7 +18208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -18227,7 +18227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -18246,7 +18246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -18265,7 +18265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -18284,7 +18284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18303,7 +18303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QColumnView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -18333,7 +18333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -18352,7 +18352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QColumnView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -18382,7 +18382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -18401,7 +18401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -18420,7 +18420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -18439,7 +18439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -18458,7 +18458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -18477,7 +18477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QColumnView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18507,7 +18507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18526,7 +18526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18556,7 +18556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18586,7 +18586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -18605,7 +18605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18624,7 +18624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18643,7 +18643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18662,7 +18662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18681,7 +18681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18700,7 +18700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QColumnView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18730,7 +18730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18749,7 +18749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -18768,7 +18768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QColumnView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -18798,7 +18798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QColumnView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -18828,7 +18828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QColumnView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18858,7 +18858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QColumnView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -18888,7 +18888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QColumnView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -18918,7 +18918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QColumnView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -19077,7 +19077,7 @@ PythonQtShell_QComboBox::~PythonQtShell_QComboBox() { void PythonQtShell_QComboBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -19096,7 +19096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19115,7 +19115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -19134,7 +19134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -19153,7 +19153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -19172,7 +19172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19191,7 +19191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19221,7 +19221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -19240,7 +19240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -19259,7 +19259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -19278,7 +19278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -19297,7 +19297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19316,7 +19316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19346,7 +19346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -19376,7 +19376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19395,7 +19395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19425,7 +19425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19444,7 +19444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19474,7 +19474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19504,7 +19504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::hideEvent(QHideEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19523,7 +19523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::hidePopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19542,7 +19542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19561,7 +19561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19580,7 +19580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19610,7 +19610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19629,7 +19629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19648,7 +19648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19667,7 +19667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19697,7 +19697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19716,7 +19716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19735,7 +19735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19754,7 +19754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19773,7 +19773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19792,7 +19792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QComboBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19822,7 +19822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QComboBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19852,7 +19852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19871,7 +19871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QComboBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19901,7 +19901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19920,7 +19920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QComboBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19950,7 +19950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19969,7 +19969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::showPopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19988,7 +19988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -20007,7 +20007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -20026,7 +20026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QComboBox::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -20430,7 +20430,7 @@ PythonQtShell_QCommandLinkButton::~PythonQtShell_QCommandLinkButton() { void PythonQtShell_QCommandLinkButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -20449,7 +20449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20468,7 +20468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20487,7 +20487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20506,7 +20506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -20525,7 +20525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -20544,7 +20544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20563,7 +20563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20593,7 +20593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -20612,7 +20612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -20631,7 +20631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -20650,7 +20650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -20669,7 +20669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20688,7 +20688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20718,7 +20718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -20748,7 +20748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20767,7 +20767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -20797,7 +20797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20816,7 +20816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -20846,7 +20846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20876,7 +20876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -20895,7 +20895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -20925,7 +20925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -20944,7 +20944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -20963,7 +20963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCommandLinkButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -20993,7 +20993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21012,7 +21012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21031,7 +21031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21050,7 +21050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommandLinkButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -21080,7 +21080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21099,7 +21099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21118,7 +21118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21137,7 +21137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21156,7 +21156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -21175,7 +21175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommandLinkButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -21205,7 +21205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21224,7 +21224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCommandLinkButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -21254,7 +21254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -21273,7 +21273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCommandLinkButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -21303,7 +21303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -21322,7 +21322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCommandLinkButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -21352,7 +21352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -21371,7 +21371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -21390,7 +21390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -21409,7 +21409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommandLinkButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -21481,7 +21481,7 @@ PythonQtShell_QCommonStyle::~PythonQtShell_QCommonStyle() { void PythonQtShell_QCommonStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -21500,7 +21500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21519,7 +21519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -21538,7 +21538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -21557,7 +21557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -21576,7 +21576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -21595,7 +21595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -21614,7 +21614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommonStyle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -21644,7 +21644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCommonStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -21674,7 +21674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -21704,7 +21704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QCommonStyle::hitTestComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, const QPoint& pt2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -21734,7 +21734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -21764,7 +21764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -21794,7 +21794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::pixelMetric(QStyle::PixelMetric m0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -21824,7 +21824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -21843,7 +21843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QPalette& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -21862,7 +21862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::polish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -21881,7 +21881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCommonStyle::sizeFromContents(QStyle::ContentsType ct0, const QStyleOption* opt1, const QSize& contentsSize2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -21911,7 +21911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QCommonStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -21941,7 +21941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QCommonStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -21971,7 +21971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QCommonStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -22001,7 +22001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCommonStyle::styleHint(QStyle::StyleHint sh0, const QStyleOption* opt1, const QWidget* w2, QStyleHintReturn* shret3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -22031,7 +22031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -22061,7 +22061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QCommonStyle::subElementRect(QStyle::SubElement r0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -22091,7 +22091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -22110,7 +22110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::unpolish(QApplication* application0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -22129,7 +22129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCommonStyle::unpolish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -22243,7 +22243,7 @@ PythonQtShell_QCompleter::~PythonQtShell_QCompleter() { void PythonQtShell_QCompleter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -22262,7 +22262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCompleter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22281,7 +22281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCompleter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22311,7 +22311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCompleter::eventFilter(QObject* o0, QEvent* e1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -22341,7 +22341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QCompleter::pathFromIndex(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pathFromIndex"); + static PyObject* name = PyUnicode_FromString("pathFromIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QModelIndex&"}; @@ -22371,7 +22371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QCompleter::splitPath(const QString& path0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("splitPath"); + static PyObject* name = PyUnicode_FromString("splitPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "const QString&"}; @@ -22401,7 +22401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCompleter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp index f232585a4..aacb6247e 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp @@ -178,7 +178,7 @@ PythonQtShell_QDataWidgetMapper::~PythonQtShell_QDataWidgetMapper() { void PythonQtShell_QDataWidgetMapper::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -197,7 +197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -216,7 +216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDataWidgetMapper::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -246,7 +246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDataWidgetMapper::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -276,7 +276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::setCurrentIndex(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -295,7 +295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDataWidgetMapper::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -419,7 +419,7 @@ PythonQtShell_QDateEdit::~PythonQtShell_QDateEdit() { void PythonQtShell_QDateEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -438,7 +438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -457,7 +457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -476,7 +476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -495,7 +495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -514,7 +514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -533,7 +533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -552,7 +552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QDateEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -582,7 +582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -612,7 +612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -631,7 +631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -650,7 +650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -669,7 +669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -707,7 +707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -737,7 +737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -767,7 +767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -786,7 +786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -854,7 +854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -884,7 +884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -933,7 +933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -952,7 +952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -971,7 +971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDateEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1001,7 +1001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1020,7 +1020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1039,7 +1039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1058,7 +1058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1088,7 +1088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1107,7 +1107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1126,7 +1126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1145,7 +1145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1164,7 +1164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1183,7 +1183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1213,7 +1213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDateEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1243,7 +1243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1262,7 +1262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDateEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1292,7 +1292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1311,7 +1311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDateEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1341,7 +1341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1360,7 +1360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1379,7 +1379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDateEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -1409,7 +1409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDateEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1477,7 +1477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDateEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -1507,7 +1507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1540,7 +1540,7 @@ PythonQtShell_QDateTimeEdit::~PythonQtShell_QDateTimeEdit() { void PythonQtShell_QDateTimeEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1559,7 +1559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1578,7 +1578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1597,7 +1597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1616,7 +1616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1635,7 +1635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1654,7 +1654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1673,7 +1673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QDateTimeEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -1703,7 +1703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1733,7 +1733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1752,7 +1752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1771,7 +1771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1790,7 +1790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1809,7 +1809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1828,7 +1828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1858,7 +1858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1926,7 +1926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1956,7 +1956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1975,7 +1975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2005,7 +2005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2035,7 +2035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2054,7 +2054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2073,7 +2073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2092,7 +2092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDateTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2141,7 +2141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2160,7 +2160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2179,7 +2179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDateTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2209,7 +2209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2228,7 +2228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2247,7 +2247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2266,7 +2266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2285,7 +2285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2304,7 +2304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDateTimeEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2334,7 +2334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDateTimeEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2364,7 +2364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2383,7 +2383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDateTimeEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2413,7 +2413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2432,7 +2432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDateTimeEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2462,7 +2462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2481,7 +2481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2500,7 +2500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDateTimeEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -2530,7 +2530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2549,7 +2549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDateTimeEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2579,7 +2579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2598,7 +2598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDateTimeEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2628,7 +2628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDateTimeEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2983,7 +2983,7 @@ PythonQtShell_QDesktopWidget::~PythonQtShell_QDesktopWidget() { void PythonQtShell_QDesktopWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3002,7 +3002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3021,7 +3021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3040,7 +3040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3059,7 +3059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3078,7 +3078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3097,7 +3097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3127,7 +3127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3146,7 +3146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3165,7 +3165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3184,7 +3184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3203,7 +3203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3222,7 +3222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3252,7 +3252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3282,7 +3282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3301,7 +3301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3331,7 +3331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3350,7 +3350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3380,7 +3380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3410,7 +3410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3429,7 +3429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3448,7 +3448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3467,7 +3467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDesktopWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3497,7 +3497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3516,7 +3516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3535,7 +3535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3554,7 +3554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDesktopWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3584,7 +3584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDesktopWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3614,7 +3614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3633,7 +3633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3652,7 +3652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3671,7 +3671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3690,7 +3690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3709,7 +3709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDesktopWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3739,7 +3739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDesktopWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3769,7 +3769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3788,7 +3788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDesktopWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3837,7 +3837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDesktopWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3867,7 +3867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3886,7 +3886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDesktopWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3916,7 +3916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3935,7 +3935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3954,7 +3954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDesktopWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4053,7 +4053,7 @@ PythonQtShell_QDial::~PythonQtShell_QDial() { void PythonQtShell_QDial::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4072,7 +4072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4091,7 +4091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4110,7 +4110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4129,7 +4129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4148,7 +4148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4167,7 +4167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4197,7 +4197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4216,7 +4216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4235,7 +4235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4254,7 +4254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4273,7 +4273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4292,7 +4292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4322,7 +4322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4352,7 +4352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4371,7 +4371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4401,7 +4401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4420,7 +4420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4450,7 +4450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4480,7 +4480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4499,7 +4499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4518,7 +4518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4537,7 +4537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDial::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4567,7 +4567,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4586,7 +4586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4605,7 +4605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4624,7 +4624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDial::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4654,7 +4654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4673,7 +4673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseMoveEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4692,7 +4692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mousePressEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4711,7 +4711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::mouseReleaseEvent(QMouseEvent* me0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4730,7 +4730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4749,7 +4749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDial::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4779,7 +4779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDial::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4809,7 +4809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::paintEvent(QPaintEvent* pe0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4828,7 +4828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDial::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4858,7 +4858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::resizeEvent(QResizeEvent* re0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4877,7 +4877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDial::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4907,7 +4907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4926,7 +4926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4945,7 +4945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4964,7 +4964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDial::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5068,7 +5068,7 @@ PythonQtShell_QDialog::~PythonQtShell_QDialog() { void PythonQtShell_QDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5087,7 +5087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5106,7 +5106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5125,7 +5125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5144,7 +5144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5163,7 +5163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5182,7 +5182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5201,7 +5201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5231,7 +5231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5250,7 +5250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5269,7 +5269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5288,7 +5288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5307,7 +5307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5326,7 +5326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5345,7 +5345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5375,7 +5375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5405,7 +5405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5435,7 +5435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5454,7 +5454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5484,7 +5484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5503,7 +5503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5533,7 +5533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5563,7 +5563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5582,7 +5582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5601,7 +5601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5620,7 +5620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5650,7 +5650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5669,7 +5669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5688,7 +5688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5707,7 +5707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5737,7 +5737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5756,7 +5756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5775,7 +5775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5794,7 +5794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5813,7 +5813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5832,7 +5832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5862,7 +5862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5881,7 +5881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5911,7 +5911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5930,7 +5930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5960,7 +5960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5979,7 +5979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5998,7 +5998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6028,7 +6028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6047,7 +6047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6066,7 +6066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6085,7 +6085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6214,7 +6214,7 @@ PythonQtShell_QDialogButtonBox::~PythonQtShell_QDialogButtonBox() { void PythonQtShell_QDialogButtonBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6233,7 +6233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6252,7 +6252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6271,7 +6271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6290,7 +6290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6309,7 +6309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6328,7 +6328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6358,7 +6358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6377,7 +6377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6396,7 +6396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6415,7 +6415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6434,7 +6434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6453,7 +6453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6483,7 +6483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6513,7 +6513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6532,7 +6532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6562,7 +6562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6581,7 +6581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6611,7 +6611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6641,7 +6641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6660,7 +6660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6679,7 +6679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6698,7 +6698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDialogButtonBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6728,7 +6728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6747,7 +6747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6766,7 +6766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6785,7 +6785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDialogButtonBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6815,7 +6815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDialogButtonBox::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6845,7 +6845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6864,7 +6864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6883,7 +6883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6902,7 +6902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6921,7 +6921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6940,7 +6940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDialogButtonBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6970,7 +6970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDialogButtonBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7000,7 +7000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7019,7 +7019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDialogButtonBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7049,7 +7049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7068,7 +7068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDialogButtonBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7098,7 +7098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7117,7 +7117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDialogButtonBox::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7147,7 +7147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7166,7 +7166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7185,7 +7185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDialogButtonBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7311,7 +7311,7 @@ PythonQtShell_QDirModel::~PythonQtShell_QDirModel() { QModelIndex PythonQtShell_QDirModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7341,7 +7341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7371,7 +7371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7401,7 +7401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7420,7 +7420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDirModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7450,7 +7450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7469,7 +7469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDirModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -7499,7 +7499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7529,7 +7529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7559,7 +7559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7589,7 +7589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7608,7 +7608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QDirModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -7638,7 +7638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::hasChildren(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7668,7 +7668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDirModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -7698,7 +7698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7728,7 +7728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7758,7 +7758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7788,7 +7788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QDirModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -7818,7 +7818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QDirModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -7848,7 +7848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QDirModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -7878,7 +7878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QDirModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7908,7 +7908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7938,7 +7938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7968,7 +7968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7998,7 +7998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8028,7 +8028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -8058,7 +8058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8077,7 +8077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QDirModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -8107,7 +8107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDirModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -8137,7 +8137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -8167,7 +8167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -8197,7 +8197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -8227,7 +8227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QDirModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8257,7 +8257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -8276,7 +8276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDirModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -8306,7 +8306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDirModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8336,7 +8336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QDirModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8366,7 +8366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QDirModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8396,7 +8396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDirModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8614,7 +8614,7 @@ PythonQtShell_QDockWidget::~PythonQtShell_QDockWidget() { void PythonQtShell_QDockWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8633,7 +8633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8652,7 +8652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8671,7 +8671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8690,7 +8690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8709,7 +8709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8728,7 +8728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8758,7 +8758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8777,7 +8777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8796,7 +8796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8815,7 +8815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8834,7 +8834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8853,7 +8853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8883,7 +8883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8913,7 +8913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8932,7 +8932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8962,7 +8962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8981,7 +8981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9011,7 +9011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9041,7 +9041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9060,7 +9060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9079,7 +9079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9098,7 +9098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDockWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9128,7 +9128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9147,7 +9147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9166,7 +9166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9185,7 +9185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDockWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9215,7 +9215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDockWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9245,7 +9245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9264,7 +9264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9283,7 +9283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9302,7 +9302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9321,7 +9321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9340,7 +9340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDockWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9370,7 +9370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDockWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9400,7 +9400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9419,7 +9419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDockWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9449,7 +9449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9468,7 +9468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDockWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9498,7 +9498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9517,7 +9517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QDockWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9547,7 +9547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9566,7 +9566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9585,7 +9585,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDockWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9703,7 +9703,7 @@ PythonQtShell_QDoubleSpinBox::~PythonQtShell_QDoubleSpinBox() { void PythonQtShell_QDoubleSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9722,7 +9722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9741,7 +9741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9760,7 +9760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9779,7 +9779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9798,7 +9798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9817,7 +9817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9836,7 +9836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9866,7 +9866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9885,7 +9885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9904,7 +9904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9923,7 +9923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9942,7 +9942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9961,7 +9961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9991,7 +9991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10021,7 +10021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::fixup(QString& str0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -10040,7 +10040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10059,7 +10059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10089,7 +10089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10108,7 +10108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10138,7 +10138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10168,7 +10168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10187,7 +10187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10206,7 +10206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10225,7 +10225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QDoubleSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10255,7 +10255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10274,7 +10274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10293,7 +10293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10312,7 +10312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QDoubleSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10342,7 +10342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10361,7 +10361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10380,7 +10380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10399,7 +10399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10418,7 +10418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10437,7 +10437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10467,7 +10467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QDoubleSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10497,7 +10497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10516,7 +10516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QDoubleSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10546,7 +10546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10565,7 +10565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QDoubleSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10595,7 +10595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10614,7 +10614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10633,7 +10633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QDoubleSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -10663,7 +10663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10682,7 +10682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QDoubleSpinBox::textFromValue(double val0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "double"}; @@ -10712,7 +10712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10731,7 +10731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDoubleSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -10761,7 +10761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { double PythonQtShell_QDoubleSpinBox::valueFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"double" , "const QString&"}; @@ -10791,7 +10791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10915,7 +10915,7 @@ PythonQtShell_QDoubleValidator::~PythonQtShell_QDoubleValidator() { void PythonQtShell_QDoubleValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10934,7 +10934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10953,7 +10953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10983,7 +10983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDoubleValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11013,7 +11013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11032,7 +11032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::setRange(double bottom0, double top1, int decimals2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "double" , "double" , "int"}; @@ -11051,7 +11051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDoubleValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11070,7 +11070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QDoubleValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -11164,7 +11164,7 @@ PythonQtShell_QDrag::~PythonQtShell_QDrag() { void PythonQtShell_QDrag::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11183,7 +11183,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDrag::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11202,7 +11202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDrag::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11232,7 +11232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QDrag::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11262,7 +11262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QDrag::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11518,7 +11518,7 @@ PythonQtShell_QErrorMessage::~PythonQtShell_QErrorMessage() { void PythonQtShell_QErrorMessage::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11537,7 +11537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11556,7 +11556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11575,7 +11575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11594,7 +11594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11613,7 +11613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11632,7 +11632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11651,7 +11651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11681,7 +11681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11700,7 +11700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11719,7 +11719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11738,7 +11738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11757,7 +11757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11776,7 +11776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11795,7 +11795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11825,7 +11825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11855,7 +11855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11885,7 +11885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11904,7 +11904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11934,7 +11934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11953,7 +11953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11983,7 +11983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12013,7 +12013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12032,7 +12032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12051,7 +12051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12070,7 +12070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QErrorMessage::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12100,7 +12100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12119,7 +12119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12138,7 +12138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12157,7 +12157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QErrorMessage::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12187,7 +12187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12206,7 +12206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12225,7 +12225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12244,7 +12244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12263,7 +12263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12282,7 +12282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QErrorMessage::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12312,7 +12312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12331,7 +12331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QErrorMessage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12361,7 +12361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12380,7 +12380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QErrorMessage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12410,7 +12410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12429,7 +12429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12448,7 +12448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QErrorMessage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12478,7 +12478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12497,7 +12497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12516,7 +12516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12535,7 +12535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QErrorMessage::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12594,7 +12594,7 @@ PythonQtShell_QFileDialog::~PythonQtShell_QFileDialog() { void PythonQtShell_QFileDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12613,7 +12613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12632,7 +12632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12651,7 +12651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12670,7 +12670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12689,7 +12689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12708,7 +12708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12727,7 +12727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12757,7 +12757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12776,7 +12776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12795,7 +12795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12814,7 +12814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12833,7 +12833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12852,7 +12852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12871,7 +12871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12901,7 +12901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12931,7 +12931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12961,7 +12961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12980,7 +12980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13010,7 +13010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13029,7 +13029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13059,7 +13059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13089,7 +13089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13108,7 +13108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13127,7 +13127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13146,7 +13146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13176,7 +13176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13195,7 +13195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13214,7 +13214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13233,7 +13233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13263,7 +13263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13282,7 +13282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13301,7 +13301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13320,7 +13320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13339,7 +13339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13358,7 +13358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13388,7 +13388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13407,7 +13407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFileDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13437,7 +13437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13456,7 +13456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFileDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13486,7 +13486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13505,7 +13505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13524,7 +13524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFileDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13554,7 +13554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13573,7 +13573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13592,7 +13592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13611,7 +13611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13979,7 +13979,7 @@ PythonQtShell_QFileIconProvider::~PythonQtShell_QFileIconProvider() { QIcon PythonQtShell_QFileIconProvider::icon(QFileIconProvider::IconType type0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QFileIconProvider::IconType"}; @@ -14009,7 +14009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QFileIconProvider::icon(const QFileInfo& info0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "const QFileInfo&"}; @@ -14039,7 +14039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QFileIconProvider::type(const QFileInfo& info0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QFileInfo&"}; @@ -14129,7 +14129,7 @@ PythonQtShell_QFileSystemModel::~PythonQtShell_QFileSystemModel() { QModelIndex PythonQtShell_QFileSystemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -14159,7 +14159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14189,7 +14189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14219,7 +14219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14238,7 +14238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileSystemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -14268,7 +14268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14287,7 +14287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileSystemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -14317,7 +14317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14347,7 +14347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14377,7 +14377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14407,7 +14407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14426,7 +14426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QFileSystemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -14456,7 +14456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -14486,7 +14486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFileSystemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -14516,7 +14516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14546,7 +14546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14576,7 +14576,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14606,7 +14606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QFileSystemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -14636,7 +14636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QFileSystemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -14666,7 +14666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QFileSystemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -14696,7 +14696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QFileSystemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -14726,7 +14726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -14756,7 +14756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -14786,7 +14786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -14816,7 +14816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14846,7 +14846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14876,7 +14876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14895,7 +14895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QFileSystemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -14925,7 +14925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFileSystemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -14955,7 +14955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -14985,7 +14985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -15015,7 +15015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -15045,7 +15045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QFileSystemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15075,7 +15075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -15094,7 +15094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFileSystemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -15124,7 +15124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFileSystemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15154,7 +15154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QFileSystemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15184,7 +15184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QFileSystemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15214,7 +15214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFileSystemModel::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15494,7 +15494,7 @@ PythonQtShell_QFocusFrame::~PythonQtShell_QFocusFrame() { void PythonQtShell_QFocusFrame::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -15513,7 +15513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15532,7 +15532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15551,7 +15551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -15570,7 +15570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -15589,7 +15589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15608,7 +15608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15638,7 +15638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -15657,7 +15657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -15676,7 +15676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -15695,7 +15695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -15714,7 +15714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15733,7 +15733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15763,7 +15763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15793,7 +15793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15812,7 +15812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15842,7 +15842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15861,7 +15861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15891,7 +15891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15921,7 +15921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15940,7 +15940,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15959,7 +15959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15978,7 +15978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFocusFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16008,7 +16008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16027,7 +16027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16046,7 +16046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16065,7 +16065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFocusFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16095,7 +16095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFocusFrame::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16125,7 +16125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16144,7 +16144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16163,7 +16163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16182,7 +16182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16201,7 +16201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16220,7 +16220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFocusFrame::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16250,7 +16250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFocusFrame::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -16280,7 +16280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -16299,7 +16299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFocusFrame::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16329,7 +16329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16348,7 +16348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFocusFrame::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16378,7 +16378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16397,7 +16397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFocusFrame::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16427,7 +16427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16446,7 +16446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16465,7 +16465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFocusFrame::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16524,7 +16524,7 @@ PythonQtShell_QFontComboBox::~PythonQtShell_QFontComboBox() { void PythonQtShell_QFontComboBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16543,7 +16543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16562,7 +16562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16581,7 +16581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16600,7 +16600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16619,7 +16619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16638,7 +16638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16668,7 +16668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16687,7 +16687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16706,7 +16706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16725,7 +16725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16744,7 +16744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16763,7 +16763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16793,7 +16793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16823,7 +16823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16842,7 +16842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16872,7 +16872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16891,7 +16891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16921,7 +16921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16951,7 +16951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::hideEvent(QHideEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16970,7 +16970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::hidePopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16989,7 +16989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17008,7 +17008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17027,7 +17027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFontComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17057,7 +17057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17076,7 +17076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17095,7 +17095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17114,7 +17114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17144,7 +17144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17163,7 +17163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17182,7 +17182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17201,7 +17201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17220,7 +17220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17239,7 +17239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontComboBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17269,7 +17269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFontComboBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17299,7 +17299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17318,7 +17318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFontComboBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17348,7 +17348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17367,7 +17367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFontComboBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17397,7 +17397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17416,7 +17416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::showPopup() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17435,7 +17435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17454,7 +17454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17473,7 +17473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontComboBox::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp index f85186cbf..05221b8d9 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp @@ -84,7 +84,7 @@ PythonQtShell_QTextBlockGroup::~PythonQtShell_QTextBlockGroup() { void PythonQtShell_QTextBlockGroup::blockFormatChanged(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::blockInserted(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -122,7 +122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::blockRemoved(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -141,7 +141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -160,7 +160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -179,7 +179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBlockGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -209,7 +209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBlockGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -239,7 +239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBlockGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -298,7 +298,7 @@ PythonQtShell_QTextBrowser::~PythonQtShell_QTextBrowser() { void PythonQtShell_QTextBrowser::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -317,7 +317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::backward() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("backward"); + static PyObject* name = PyUnicode_FromString("backward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -336,7 +336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -366,7 +366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -385,7 +385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -423,7 +423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -442,7 +442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTextBrowser::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -472,7 +472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -491,7 +491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -521,7 +521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -540,7 +540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -559,7 +559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -578,7 +578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -597,7 +597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -616,7 +616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -635,7 +635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -665,7 +665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -695,7 +695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -714,7 +714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -744,7 +744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::focusOutEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -763,7 +763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::forward() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("forward"); + static PyObject* name = PyUnicode_FromString("forward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -782,7 +782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -812,7 +812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -861,7 +861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::home() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("home"); + static PyObject* name = PyUnicode_FromString("home"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -880,7 +880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -899,7 +899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextBrowser::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -948,7 +948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1005,7 +1005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1024,7 +1024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextBrowser::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -1054,7 +1054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextBrowser::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1084,7 +1084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1103,7 +1103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1122,7 +1122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1141,7 +1141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1160,7 +1160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1179,7 +1179,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1209,7 +1209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTextBrowser::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1239,7 +1239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1258,7 +1258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTextBrowser::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1288,7 +1288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::reload() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reload"); + static PyObject* name = PyUnicode_FromString("reload"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1307,7 +1307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1326,7 +1326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1345,7 +1345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::setSource(const QUrl& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSource"); + static PyObject* name = PyUnicode_FromString("setSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&"}; @@ -1364,7 +1364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1383,7 +1383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTextBrowser::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1413,7 +1413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1432,7 +1432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1451,7 +1451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1470,7 +1470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextBrowser::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1500,7 +1500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTextBrowser::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1530,7 +1530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextBrowser::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2385,7 +2385,7 @@ PythonQtShell_QTextDocument::~PythonQtShell_QTextDocument() { void PythonQtShell_QTextDocument::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2404,7 +2404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2423,7 +2423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QTextObject* PythonQtShell_QTextDocument::createObject(const QTextFormat& f0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTextObject*" , "const QTextFormat&"}; @@ -2453,7 +2453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2472,7 +2472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextDocument::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2502,7 +2502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextDocument::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2532,7 +2532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextDocument::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -2562,7 +2562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextDocument::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3087,7 +3087,7 @@ PythonQtShell_QTextEdit::~PythonQtShell_QTextEdit() { void PythonQtShell_QTextEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3106,7 +3106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -3136,7 +3136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3155,7 +3155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3174,7 +3174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3193,7 +3193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3212,7 +3212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTextEdit::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -3242,7 +3242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3261,7 +3261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3291,7 +3291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -3310,7 +3310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3329,7 +3329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3348,7 +3348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3367,7 +3367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3386,7 +3386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3405,7 +3405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3435,7 +3435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3465,7 +3465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3484,7 +3484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3514,7 +3514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3533,7 +3533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3563,7 +3563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3593,7 +3593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3612,7 +3612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3631,7 +3631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3650,7 +3650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextEdit::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3680,7 +3680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -3699,7 +3699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3718,7 +3718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3737,7 +3737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3756,7 +3756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTextEdit::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -3786,7 +3786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3816,7 +3816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3835,7 +3835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3854,7 +3854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3873,7 +3873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3892,7 +3892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3911,7 +3911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3941,7 +3941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTextEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3971,7 +3971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3990,7 +3990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTextEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4020,7 +4020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4039,7 +4039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4058,7 +4058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4077,7 +4077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTextEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4107,7 +4107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4126,7 +4126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4145,7 +4145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4164,7 +4164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextEdit::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4194,7 +4194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTextEdit::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4224,7 +4224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextEdit::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4787,7 +4787,7 @@ PythonQtShell_QTextFrame::~PythonQtShell_QTextFrame() { void PythonQtShell_QTextFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4806,7 +4806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4825,7 +4825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextFrame::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4855,7 +4855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4885,7 +4885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5642,7 +5642,7 @@ PythonQtShell_QTextList::~PythonQtShell_QTextList() { void PythonQtShell_QTextList::blockFormatChanged(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -5661,7 +5661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::blockInserted(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -5680,7 +5680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::blockRemoved(const QTextBlock& block0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -5699,7 +5699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5718,7 +5718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5737,7 +5737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextList::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5767,7 +5767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextList::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5797,7 +5797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextList::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5930,7 +5930,7 @@ PythonQtShell_QTextObject::~PythonQtShell_QTextObject() { void PythonQtShell_QTextObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5949,7 +5949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5968,7 +5968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5998,7 +5998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6028,7 +6028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6200,7 +6200,7 @@ PythonQtShell_QTextTable::~PythonQtShell_QTextTable() { void PythonQtShell_QTextTable::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6219,7 +6219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextTable::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6238,7 +6238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextTable::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6268,7 +6268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTextTable::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6298,7 +6298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTextTable::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6674,7 +6674,7 @@ PythonQtShell_QTimeEdit::~PythonQtShell_QTimeEdit() { void PythonQtShell_QTimeEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6693,7 +6693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6712,7 +6712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6731,7 +6731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6750,7 +6750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6769,7 +6769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6788,7 +6788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6807,7 +6807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QDateTime PythonQtShell_QTimeEdit::dateTimeFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -6837,7 +6837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6867,7 +6867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6886,7 +6886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6905,7 +6905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6924,7 +6924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6943,7 +6943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6962,7 +6962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6992,7 +6992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7022,7 +7022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -7041,7 +7041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7060,7 +7060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7090,7 +7090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7109,7 +7109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7139,7 +7139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7169,7 +7169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7188,7 +7188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7207,7 +7207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7226,7 +7226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7256,7 +7256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7275,7 +7275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7294,7 +7294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7313,7 +7313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7343,7 +7343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7362,7 +7362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7381,7 +7381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7400,7 +7400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7419,7 +7419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7438,7 +7438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTimeEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7468,7 +7468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTimeEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7498,7 +7498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7517,7 +7517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTimeEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7547,7 +7547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7566,7 +7566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTimeEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7596,7 +7596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7615,7 +7615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7634,7 +7634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QTimeEdit::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -7664,7 +7664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7683,7 +7683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QTimeEdit::textFromDateTime(const QDateTime& dt0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -7713,7 +7713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7732,7 +7732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QTimeEdit::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -7762,7 +7762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTimeEdit::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp index 9a8388d4a..a782f6745 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp @@ -85,7 +85,7 @@ PythonQtShell_QToolBar::~PythonQtShell_QToolBar() { void PythonQtShell_QToolBar::actionEvent(QActionEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -104,7 +104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -123,7 +123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -142,7 +142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -161,7 +161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -180,7 +180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -199,7 +199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -229,7 +229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -248,7 +248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -267,7 +267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -286,7 +286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -305,7 +305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -324,7 +324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -354,7 +354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -384,7 +384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -403,7 +403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -433,7 +433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -452,7 +452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -482,7 +482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -512,7 +512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -531,7 +531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -569,7 +569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -599,7 +599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -618,7 +618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -637,7 +637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -656,7 +656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -686,7 +686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -716,7 +716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -754,7 +754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -792,7 +792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -811,7 +811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -841,7 +841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -871,7 +871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -939,7 +939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -969,7 +969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -988,7 +988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBar::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1018,7 +1018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1037,7 +1037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1056,7 +1056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1260,7 +1260,7 @@ PythonQtShell_QToolBox::~PythonQtShell_QToolBox() { void PythonQtShell_QToolBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1279,7 +1279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1298,7 +1298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1317,7 +1317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1336,7 +1336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1355,7 +1355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1374,7 +1374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1404,7 +1404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1423,7 +1423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1442,7 +1442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1461,7 +1461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1480,7 +1480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1499,7 +1499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1529,7 +1529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1559,7 +1559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1578,7 +1578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1608,7 +1608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1627,7 +1627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1657,7 +1657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1687,7 +1687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1706,7 +1706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1725,7 +1725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1744,7 +1744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1774,7 +1774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::itemInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemInserted"); + static PyObject* name = PyUnicode_FromString("itemInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::itemRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemRemoved"); + static PyObject* name = PyUnicode_FromString("itemRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1812,7 +1812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1899,7 +1899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QToolBox::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1929,7 +1929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1948,7 +1948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1967,7 +1967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1986,7 +1986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2005,7 +2005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2024,7 +2024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2054,7 +2054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2084,7 +2084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2103,7 +2103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2133,7 +2133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2152,7 +2152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2182,7 +2182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::showEvent(QShowEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2201,7 +2201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2220,7 +2220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2239,7 +2239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2383,7 +2383,7 @@ PythonQtShell_QToolButton::~PythonQtShell_QToolButton() { void PythonQtShell_QToolButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2402,7 +2402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2421,7 +2421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2440,7 +2440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2459,7 +2459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2478,7 +2478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2497,7 +2497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2516,7 +2516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2546,7 +2546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2565,7 +2565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2584,7 +2584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2603,7 +2603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2622,7 +2622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2641,7 +2641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2671,7 +2671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2701,7 +2701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2720,7 +2720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2750,7 +2750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2769,7 +2769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2799,7 +2799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2829,7 +2829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2848,7 +2848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -2878,7 +2878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2897,7 +2897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2916,7 +2916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QToolButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2946,7 +2946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QToolButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3071,7 +3071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3090,7 +3090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3109,7 +3109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3128,7 +3128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QToolButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3177,7 +3177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QToolButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3226,7 +3226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QToolButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3275,7 +3275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QToolButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3305,7 +3305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3324,7 +3324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3343,7 +3343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3362,7 +3362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QToolButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4241,7 +4241,7 @@ PythonQtShell_QTreeView::~PythonQtShell_QTreeView() { void PythonQtShell_QTreeView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4260,7 +4260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4279,7 +4279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4298,7 +4298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -4317,7 +4317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4336,7 +4336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4355,7 +4355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4374,7 +4374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -4393,7 +4393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4412,7 +4412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4431,7 +4431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4461,7 +4461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4480,7 +4480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4499,7 +4499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4518,7 +4518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4537,7 +4537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::drawBranches(QPainter* painter0, const QRect& rect1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -4556,7 +4556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::drawRow(QPainter* painter0, const QStyleOptionViewItem& options1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4575,7 +4575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4594,7 +4594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4624,7 +4624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4643,7 +4643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4662,7 +4662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4692,7 +4692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4722,7 +4722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4741,7 +4741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4771,7 +4771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4790,7 +4790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4820,7 +4820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4850,7 +4850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4869,7 +4869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4899,7 +4899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4918,7 +4918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4937,7 +4937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTreeView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -4967,7 +4967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4986,7 +4986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5005,7 +5005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5035,7 +5035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5065,7 +5065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5084,7 +5084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5103,7 +5103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5122,7 +5122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5141,7 +5141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5171,7 +5171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5190,7 +5190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5209,7 +5209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5228,7 +5228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5247,7 +5247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5266,7 +5266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5296,7 +5296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTreeView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5326,7 +5326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5345,7 +5345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTreeView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5375,7 +5375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5394,7 +5394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5413,7 +5413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5432,7 +5432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5451,7 +5451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5470,7 +5470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5489,7 +5489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5508,7 +5508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTreeView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5538,7 +5538,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5557,7 +5557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTreeView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5587,7 +5587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5606,7 +5606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5625,7 +5625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5644,7 +5644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5663,7 +5663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5682,7 +5682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTreeView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5712,7 +5712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5731,7 +5731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5761,7 +5761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5791,7 +5791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -5810,7 +5810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5829,7 +5829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5848,7 +5848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5867,7 +5867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5886,7 +5886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5905,7 +5905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5935,7 +5935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5954,7 +5954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5973,7 +5973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTreeView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -6003,7 +6003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6033,7 +6033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTreeView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6063,7 +6063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTreeView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -6093,7 +6093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTreeView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6123,7 +6123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6567,7 +6567,7 @@ PythonQtShell_QTreeWidget::~PythonQtShell_QTreeWidget() { void PythonQtShell_QTreeWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6586,7 +6586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6605,7 +6605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6624,7 +6624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -6643,7 +6643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6662,7 +6662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6681,7 +6681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6700,7 +6700,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6719,7 +6719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6738,7 +6738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -6757,7 +6757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6787,7 +6787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6806,7 +6806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6825,7 +6825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6844,7 +6844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6863,7 +6863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::drawBranches(QPainter* painter0, const QRect& rect1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -6882,7 +6882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::drawRow(QPainter* painter0, const QStyleOptionViewItem& options1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -6901,7 +6901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6920,7 +6920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::dropMimeData(QTreeWidgetItem* parent0, int index1, const QMimeData* data2, Qt::DropAction action3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QTreeWidgetItem*" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -6950,7 +6950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -6980,7 +6980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -6999,7 +6999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7018,7 +7018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7048,7 +7048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7078,7 +7078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7097,7 +7097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7127,7 +7127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7146,7 +7146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7176,7 +7176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7206,7 +7206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7225,7 +7225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7255,7 +7255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7274,7 +7274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7293,7 +7293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTreeWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -7323,7 +7323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7342,7 +7342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7361,7 +7361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7391,7 +7391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7421,7 +7421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7440,7 +7440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7459,7 +7459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7478,7 +7478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7497,7 +7497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7527,7 +7527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTreeWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -7557,7 +7557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QTreeWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7587,7 +7587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7606,7 +7606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7625,7 +7625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7644,7 +7644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7663,7 +7663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7682,7 +7682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7712,7 +7712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTreeWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7742,7 +7742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7761,7 +7761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTreeWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7791,7 +7791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7810,7 +7810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7829,7 +7829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7848,7 +7848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7867,7 +7867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7886,7 +7886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -7905,7 +7905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7924,7 +7924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTreeWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7954,7 +7954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -7973,7 +7973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTreeWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -8003,7 +8003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -8022,7 +8022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -8041,7 +8041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -8060,7 +8060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8079,7 +8079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTreeWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8109,7 +8109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8128,7 +8128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8158,7 +8158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8188,7 +8188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -8207,7 +8207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QTreeWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8237,7 +8237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8256,7 +8256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8275,7 +8275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8294,7 +8294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8313,7 +8313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8332,7 +8332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTreeWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8362,7 +8362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8381,7 +8381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8400,7 +8400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTreeWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -8430,7 +8430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8460,7 +8460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTreeWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8490,7 +8490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTreeWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -8520,7 +8520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTreeWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -8550,7 +8550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8804,7 +8804,7 @@ PythonQtShell_QTreeWidgetItem::~PythonQtShell_QTreeWidgetItem() { QTreeWidgetItem* PythonQtShell_QTreeWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTreeWidgetItem*"}; @@ -8834,7 +8834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTreeWidgetItem::data(int column0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "int"}; @@ -8864,7 +8864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTreeWidgetItem::__lt__(const QTreeWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QTreeWidgetItem&"}; @@ -8894,7 +8894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -8913,7 +8913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::setData(int column0, int role1, const QVariant& value2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "const QVariant&"}; @@ -8932,7 +8932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTreeWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9274,7 +9274,7 @@ PythonQtShell_QUndoCommand::~PythonQtShell_QUndoCommand() { int PythonQtShell_QUndoCommand::id() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("id"); + static PyObject* name = PyUnicode_FromString("id"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9304,7 +9304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoCommand::mergeWith(const QUndoCommand* other0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mergeWith"); + static PyObject* name = PyUnicode_FromString("mergeWith"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUndoCommand*"}; @@ -9334,7 +9334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoCommand::redo() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redo"); + static PyObject* name = PyUnicode_FromString("redo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9353,7 +9353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoCommand::undo() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("undo"); + static PyObject* name = PyUnicode_FromString("undo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9431,7 +9431,7 @@ PythonQtShell_QUndoGroup::~PythonQtShell_QUndoGroup() { void PythonQtShell_QUndoGroup::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9450,7 +9450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoGroup::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9469,7 +9469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoGroup::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9499,7 +9499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoGroup::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9529,7 +9529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoGroup::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9613,7 +9613,7 @@ PythonQtShell_QUndoStack::~PythonQtShell_QUndoStack() { void PythonQtShell_QUndoStack::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9632,7 +9632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoStack::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9651,7 +9651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoStack::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9681,7 +9681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoStack::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9711,7 +9711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoStack::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9835,7 +9835,7 @@ PythonQtShell_QUndoView::~PythonQtShell_QUndoView() { void PythonQtShell_QUndoView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9854,7 +9854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9873,7 +9873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9892,7 +9892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9911,7 +9911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9930,7 +9930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9949,7 +9949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9968,7 +9968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -9987,7 +9987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10006,7 +10006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -10025,7 +10025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10055,7 +10055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10074,7 +10074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10093,7 +10093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10112,7 +10112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10131,7 +10131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10150,7 +10150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10180,7 +10180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10199,7 +10199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10218,7 +10218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10248,7 +10248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10278,7 +10278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10297,7 +10297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10327,7 +10327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10346,7 +10346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10376,7 +10376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10406,7 +10406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10425,7 +10425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10455,7 +10455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10474,7 +10474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10493,7 +10493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QUndoView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10523,7 +10523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10542,7 +10542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10561,7 +10561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QUndoView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10591,7 +10591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10621,7 +10621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10640,7 +10640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10659,7 +10659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10678,7 +10678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10697,7 +10697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10727,7 +10727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10746,7 +10746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10765,7 +10765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10784,7 +10784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10803,7 +10803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10822,7 +10822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10852,7 +10852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QUndoView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10882,7 +10882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10901,7 +10901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QUndoView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10931,7 +10931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10950,7 +10950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10969,7 +10969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10988,7 +10988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11007,7 +11007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11026,7 +11026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11045,7 +11045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11064,7 +11064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QUndoView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11094,7 +11094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11113,7 +11113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QUndoView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11143,7 +11143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -11162,7 +11162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11181,7 +11181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11200,7 +11200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11219,7 +11219,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11238,7 +11238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QUndoView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11268,7 +11268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11287,7 +11287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11317,7 +11317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11347,7 +11347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11366,7 +11366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11385,7 +11385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11404,7 +11404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11423,7 +11423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11442,7 +11442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11461,7 +11461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QUndoView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11491,7 +11491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11510,7 +11510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11529,7 +11529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QUndoView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11559,7 +11559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUndoView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11589,7 +11589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QUndoView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11619,7 +11619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QUndoView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11649,7 +11649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QUndoView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11679,7 +11679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUndoView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11746,7 +11746,7 @@ PythonQtShell_QVBoxLayout::~PythonQtShell_QVBoxLayout() { void PythonQtShell_QVBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -11765,7 +11765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11784,7 +11784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QVBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -11814,7 +11814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11844,7 +11844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11863,7 +11863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11893,7 +11893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11923,7 +11923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QVBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -11953,7 +11953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QVBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -11983,7 +11983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -12013,7 +12013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12032,7 +12032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12062,7 +12062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QVBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -12092,7 +12092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QVBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -12122,7 +12122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12152,7 +12152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12182,7 +12182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -12201,7 +12201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QVBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -12231,7 +12231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12264,7 +12264,7 @@ PythonQtShell_QValidator::~PythonQtShell_QValidator() { void PythonQtShell_QValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12283,7 +12283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12302,7 +12302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12332,7 +12332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12362,7 +12362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -12381,7 +12381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12400,7 +12400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -13221,7 +13221,7 @@ PythonQtShell_QWidget::~PythonQtShell_QWidget() { void PythonQtShell_QWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13240,7 +13240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13259,7 +13259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13278,7 +13278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13297,7 +13297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13316,7 +13316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13335,7 +13335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13365,7 +13365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13384,7 +13384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13403,7 +13403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13422,7 +13422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13441,7 +13441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13460,7 +13460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13490,7 +13490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13520,7 +13520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13539,7 +13539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13569,7 +13569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13588,7 +13588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13618,7 +13618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13648,7 +13648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13667,7 +13667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13686,7 +13686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13705,7 +13705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13735,7 +13735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13754,7 +13754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13773,7 +13773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13792,7 +13792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13822,7 +13822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13852,7 +13852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13871,7 +13871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13890,7 +13890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13909,7 +13909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13928,7 +13928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13947,7 +13947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13977,7 +13977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14007,7 +14007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14026,7 +14026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14056,7 +14056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14075,7 +14075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::setVisible(bool visible0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14094,7 +14094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14124,7 +14124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14143,7 +14143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14173,7 +14173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14192,7 +14192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14211,7 +14211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15500,7 +15500,7 @@ PythonQtShell_QWidgetAction::~PythonQtShell_QWidgetAction() { void PythonQtShell_QWidgetAction::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15519,7 +15519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QWidgetAction::createWidget(QWidget* parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -15549,7 +15549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15568,7 +15568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::deleteWidget(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteWidget"); + static PyObject* name = PyUnicode_FromString("deleteWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -15587,7 +15587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetAction::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15617,7 +15617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetAction::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15647,7 +15647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetAction::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15721,7 +15721,7 @@ PythonQtShell_QWidgetItem::~PythonQtShell_QWidgetItem() { QSizePolicy::ControlTypes PythonQtShell_QWidgetItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -15751,7 +15751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QWidgetItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -15781,7 +15781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QWidgetItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -15811,7 +15811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15841,7 +15841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidgetItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15871,7 +15871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15890,7 +15890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWidgetItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15920,7 +15920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QWidgetItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -15950,7 +15950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15980,7 +15980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWidgetItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16010,7 +16010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16040,7 +16040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWidgetItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -16059,7 +16059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWidgetItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16089,7 +16089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QWidgetItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -16119,7 +16119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QWidgetItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -16214,7 +16214,7 @@ PythonQtShell_QWindow::~PythonQtShell_QWindow() { void PythonQtShell_QWindow::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16233,7 +16233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16252,7 +16252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16282,7 +16282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16312,7 +16312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::exposeEvent(QExposeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -16331,7 +16331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16350,7 +16350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWindow::focusObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -16380,7 +16380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16399,7 +16399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurfaceFormat PythonQtShell_QWindow::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -16429,7 +16429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16448,7 +16448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16467,7 +16467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16486,7 +16486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16505,7 +16505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16524,7 +16524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16543,7 +16543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16562,7 +16562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16581,7 +16581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16611,7 +16611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16630,7 +16630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16649,7 +16649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWindow::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16679,7 +16679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QWindow::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -16709,7 +16709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16728,7 +16728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16747,7 +16747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::touchEvent(QTouchEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -16766,7 +16766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17300,7 +17300,7 @@ PythonQtShell_QWizard::~PythonQtShell_QWizard() { void PythonQtShell_QWizard::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17319,7 +17319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17338,7 +17338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17357,7 +17357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17376,7 +17376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::cleanupPage(int id0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17395,7 +17395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17414,7 +17414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17433,7 +17433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17452,7 +17452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17482,7 +17482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17501,7 +17501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17520,7 +17520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17539,7 +17539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17558,7 +17558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17577,7 +17577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17596,7 +17596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17626,7 +17626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17656,7 +17656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17686,7 +17686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17705,7 +17705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17735,7 +17735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17754,7 +17754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17784,7 +17784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17814,7 +17814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17833,7 +17833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -17852,7 +17852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::initializePage(int id0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -17871,7 +17871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -17890,7 +17890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWizard::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -17920,7 +17920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17939,7 +17939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -17958,7 +17958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17977,7 +17977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18007,7 +18007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18026,7 +18026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18045,7 +18045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18064,7 +18064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18083,7 +18083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18102,7 +18102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18132,7 +18132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizard::nextId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18162,7 +18162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18181,7 +18181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWizard::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18211,7 +18211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18230,7 +18230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWizard::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18260,7 +18260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18279,7 +18279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18298,7 +18298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWizard::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18328,7 +18328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18347,7 +18347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18366,7 +18366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18385,7 +18385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizard::validateCurrentPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validateCurrentPage"); + static PyObject* name = PyUnicode_FromString("validateCurrentPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18415,7 +18415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizard::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp index d01a68479..d290c33c9 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp @@ -43,7 +43,7 @@ PythonQtShell_QWizardPage::~PythonQtShell_QWizardPage() { void PythonQtShell_QWizardPage::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -62,7 +62,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -81,7 +81,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -100,7 +100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::cleanupPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -119,7 +119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -138,7 +138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -157,7 +157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -176,7 +176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -206,7 +206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -225,7 +225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -244,7 +244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -263,7 +263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -282,7 +282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -301,7 +301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -331,7 +331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -361,7 +361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -380,7 +380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -410,7 +410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -429,7 +429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -459,7 +459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -489,7 +489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -508,7 +508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -527,7 +527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::initializePage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -546,7 +546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -565,7 +565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWizardPage::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -595,7 +595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::isComplete() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isComplete"); + static PyObject* name = PyUnicode_FromString("isComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -625,7 +625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -644,7 +644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -682,7 +682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -712,7 +712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWizardPage::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -742,7 +742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -761,7 +761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -780,7 +780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -799,7 +799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -818,7 +818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -837,7 +837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -867,7 +867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWizardPage::nextId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -897,7 +897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWizardPage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -927,7 +927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -946,7 +946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWizardPage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -976,7 +976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -995,7 +995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWizardPage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1025,7 +1025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1044,7 +1044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWizardPage::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1074,7 +1074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1093,7 +1093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1112,7 +1112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWizardPage::validatePage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validatePage"); + static PyObject* name = PyUnicode_FromString("validatePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1142,7 +1142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWizardPage::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp index 1837b8e93..1eccf1785 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp @@ -75,7 +75,7 @@ PythonQtShell_QFontDialog::~PythonQtShell_QFontDialog() { void PythonQtShell_QFontDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -94,7 +94,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -113,7 +113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -132,7 +132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -151,7 +151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -170,7 +170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -189,7 +189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -208,7 +208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -238,7 +238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -257,7 +257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -276,7 +276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -295,7 +295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -314,7 +314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -333,7 +333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -352,7 +352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -382,7 +382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -412,7 +412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -442,7 +442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -461,7 +461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -491,7 +491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -510,7 +510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -540,7 +540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -570,7 +570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -589,7 +589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -608,7 +608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -627,7 +627,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFontDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -657,7 +657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -676,7 +676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -695,7 +695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -714,7 +714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFontDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -744,7 +744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -763,7 +763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -782,7 +782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -801,7 +801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -820,7 +820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -839,7 +839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFontDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -869,7 +869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -888,7 +888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFontDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -937,7 +937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFontDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1005,7 +1005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFontDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1035,7 +1035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1054,7 +1054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1073,7 +1073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1092,7 +1092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFontDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1600,7 +1600,7 @@ PythonQtShell_QFormLayout::~PythonQtShell_QFormLayout() { void PythonQtShell_QFormLayout::addItem(QLayoutItem* item0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -1619,7 +1619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1638,7 +1638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QFormLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -1668,7 +1668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFormLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1698,7 +1698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1717,7 +1717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1747,7 +1747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1777,7 +1777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QFormLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -1807,7 +1807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QFormLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -1837,7 +1837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFormLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -1867,7 +1867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1886,7 +1886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFormLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1916,7 +1916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QFormLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -1946,7 +1946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QFormLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -1976,7 +1976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFormLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2006,7 +2006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFormLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2036,7 +2036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::setGeometry(const QRect& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2055,7 +2055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QFormLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2085,7 +2085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFormLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2349,7 +2349,7 @@ PythonQtShell_QFrame::~PythonQtShell_QFrame() { void PythonQtShell_QFrame::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2368,7 +2368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2387,7 +2387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2406,7 +2406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2425,7 +2425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2444,7 +2444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2463,7 +2463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2493,7 +2493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2512,7 +2512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2531,7 +2531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2550,7 +2550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2569,7 +2569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2588,7 +2588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2618,7 +2618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2648,7 +2648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2667,7 +2667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2697,7 +2697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2716,7 +2716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2746,7 +2746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2776,7 +2776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2795,7 +2795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2814,7 +2814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2863,7 +2863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2882,7 +2882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2901,7 +2901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2920,7 +2920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QFrame::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2980,7 +2980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2999,7 +2999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3018,7 +3018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3037,7 +3037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3056,7 +3056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3075,7 +3075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QFrame::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3105,7 +3105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QFrame::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3135,7 +3135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3154,7 +3154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QFrame::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3184,7 +3184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3203,7 +3203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QFrame::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3233,7 +3233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3252,7 +3252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3271,7 +3271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3290,7 +3290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QFrame::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3409,7 +3409,7 @@ PythonQtShell_QGesture::~PythonQtShell_QGesture() { void PythonQtShell_QGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3428,7 +3428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3447,7 +3447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3477,7 +3477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3507,7 +3507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3677,7 +3677,7 @@ PythonQtShell_QGestureRecognizer::~PythonQtShell_QGestureRecognizer() { QGesture* PythonQtShell_QGestureRecognizer::create(QObject* target0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGesture*" , "QObject*"}; @@ -3707,7 +3707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGestureRecognizer::Result PythonQtShell_QGestureRecognizer::recognize(QGesture* state0, QObject* watched1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("recognize"); + static PyObject* name = PyUnicode_FromString("recognize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGestureRecognizer::Result" , "QGesture*" , "QObject*" , "QEvent*"}; @@ -3737,7 +3737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGestureRecognizer::reset(QGesture* state0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGesture*"}; @@ -4014,7 +4014,7 @@ PythonQtShell_QGraphicsAnchorLayout::~PythonQtShell_QGraphicsAnchorLayout() { int PythonQtShell_QGraphicsAnchorLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4044,7 +4044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -4063,7 +4063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4082,7 +4082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsAnchorLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -4112,7 +4112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4131,7 +4131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4150,7 +4150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsAnchorLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4254,7 +4254,7 @@ PythonQtShell_QGraphicsBlurEffect::~PythonQtShell_QGraphicsBlurEffect() { QRectF PythonQtShell_QGraphicsBlurEffect::boundingRectFor(const QRectF& rect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4284,7 +4284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4303,7 +4303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4322,7 +4322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4341,7 +4341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsBlurEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4371,7 +4371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsBlurEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4401,7 +4401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4420,7 +4420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsBlurEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4469,7 +4469,7 @@ PythonQtShell_QGraphicsColorizeEffect::~PythonQtShell_QGraphicsColorizeEffect() QRectF PythonQtShell_QGraphicsColorizeEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4499,7 +4499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4518,7 +4518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4537,7 +4537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4556,7 +4556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsColorizeEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4586,7 +4586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsColorizeEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4616,7 +4616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4635,7 +4635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsColorizeEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4679,7 +4679,7 @@ PythonQtShell_QGraphicsDropShadowEffect::~PythonQtShell_QGraphicsDropShadowEffec QRectF PythonQtShell_QGraphicsDropShadowEffect::boundingRectFor(const QRectF& rect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4709,7 +4709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4728,7 +4728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4747,7 +4747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4766,7 +4766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsDropShadowEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4796,7 +4796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsDropShadowEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4826,7 +4826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -4845,7 +4845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsDropShadowEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4909,7 +4909,7 @@ PythonQtShell_QGraphicsEffect::~PythonQtShell_QGraphicsEffect() { QRectF PythonQtShell_QGraphicsEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4939,7 +4939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4958,7 +4958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4977,7 +4977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4996,7 +4996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5026,7 +5026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5056,7 +5056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5075,7 +5075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5154,7 +5154,7 @@ PythonQtShell_QGraphicsEllipseItem::~PythonQtShell_QGraphicsEllipseItem() { bool PythonQtShell_QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5184,7 +5184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsEllipseItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5317,7 +5317,7 @@ PythonQtShell_QGraphicsGridLayout::~PythonQtShell_QGraphicsGridLayout() { int PythonQtShell_QGraphicsGridLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5347,7 +5347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -5366,7 +5366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5385,7 +5385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsGridLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -5415,7 +5415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5434,7 +5434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5453,7 +5453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsGridLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5707,7 +5707,7 @@ PythonQtShell_QGraphicsItem::~PythonQtShell_QGraphicsItem() { void PythonQtShell_QGraphicsItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5726,7 +5726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5756,7 +5756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -5786,7 +5786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -5816,7 +5816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5846,7 +5846,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -5865,7 +5865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5884,7 +5884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5903,7 +5903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5922,7 +5922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5941,7 +5941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -5971,7 +5971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5990,7 +5990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6009,7 +6009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6028,7 +6028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6047,7 +6047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6066,7 +6066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6085,7 +6085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6115,7 +6115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6145,7 +6145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -6178,7 +6178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6197,7 +6197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6216,7 +6216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6235,7 +6235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6254,7 +6254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6273,7 +6273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6292,7 +6292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6322,7 +6322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6341,7 +6341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6371,7 +6371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -6401,7 +6401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6420,7 +6420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6450,7 +6450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6480,7 +6480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6510,7 +6510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -7581,7 +7581,7 @@ PythonQtShell_QGraphicsItemAnimation::~PythonQtShell_QGraphicsItemAnimation() { void PythonQtShell_QGraphicsItemAnimation::afterAnimationStep(qreal step0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("afterAnimationStep"); + static PyObject* name = PyUnicode_FromString("afterAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7600,7 +7600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::beforeAnimationStep(qreal step0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beforeAnimationStep"); + static PyObject* name = PyUnicode_FromString("beforeAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -7619,7 +7619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7638,7 +7638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7657,7 +7657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemAnimation::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7687,7 +7687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemAnimation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7717,7 +7717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemAnimation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7876,7 +7876,7 @@ PythonQtShell_QGraphicsItemGroup::~PythonQtShell_QGraphicsItemGroup() { void PythonQtShell_QGraphicsItemGroup::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7895,7 +7895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsItemGroup::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -7925,7 +7925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -7955,7 +7955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -7985,7 +7985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -8015,7 +8015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -8034,7 +8034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8053,7 +8053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8072,7 +8072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8091,7 +8091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -8110,7 +8110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -8140,7 +8140,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8159,7 +8159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8178,7 +8178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8197,7 +8197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8216,7 +8216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -8235,7 +8235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8254,7 +8254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8284,7 +8284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -8314,7 +8314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsItemGroup::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -8347,7 +8347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8366,7 +8366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8385,7 +8385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8404,7 +8404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8423,7 +8423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8442,7 +8442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -8461,7 +8461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItemGroup::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -8491,7 +8491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -8510,7 +8510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8540,7 +8540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -8570,7 +8570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -8589,7 +8589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsItemGroup::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -8619,7 +8619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsItemGroup::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -8649,7 +8649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsItemGroup::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8679,7 +8679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsItemGroup::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -8743,7 +8743,7 @@ PythonQtShell_QGraphicsLayout::~PythonQtShell_QGraphicsLayout() { int PythonQtShell_QGraphicsLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8773,7 +8773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -8792,7 +8792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8811,7 +8811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsLayout::itemAt(int i0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -8841,7 +8841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8860,7 +8860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -8879,7 +8879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsLayout::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -8909,7 +8909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8928,7 +8928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9022,7 +9022,7 @@ PythonQtShell_QGraphicsLayoutItem::~PythonQtShell_QGraphicsLayoutItem() { void PythonQtShell_QGraphicsLayoutItem::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -9041,7 +9041,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayoutItem::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9060,7 +9060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsLayoutItem::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9090,7 +9090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLayoutItem::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9309,7 +9309,7 @@ PythonQtShell_QGraphicsLineItem::~PythonQtShell_QGraphicsLineItem() { void PythonQtShell_QGraphicsLineItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9328,7 +9328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsLineItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -9358,7 +9358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -9388,7 +9388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -9418,7 +9418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -9448,7 +9448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -9467,7 +9467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9486,7 +9486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9505,7 +9505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9524,7 +9524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9543,7 +9543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -9573,7 +9573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9592,7 +9592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9611,7 +9611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9630,7 +9630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9649,7 +9649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9668,7 +9668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9687,7 +9687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9717,7 +9717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9747,7 +9747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsLineItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9780,7 +9780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9799,7 +9799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9818,7 +9818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9837,7 +9837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9856,7 +9856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9875,7 +9875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9894,7 +9894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsLineItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9924,7 +9924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9943,7 +9943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9973,7 +9973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -10003,7 +10003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -10022,7 +10022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsLineItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -10052,7 +10052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsLineItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -10082,7 +10082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsLineItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10112,7 +10112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLineItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -10224,7 +10224,7 @@ PythonQtShell_QGraphicsLinearLayout::~PythonQtShell_QGraphicsLinearLayout() { int PythonQtShell_QGraphicsLinearLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10254,7 +10254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10273,7 +10273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10292,7 +10292,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QGraphicsLayoutItem* PythonQtShell_QGraphicsLinearLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -10322,7 +10322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::removeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10341,7 +10341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10360,7 +10360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsLinearLayout::widgetEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10503,7 +10503,7 @@ PythonQtShell_QGraphicsObject::~PythonQtShell_QGraphicsObject() { void PythonQtShell_QGraphicsObject::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10522,7 +10522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsObject::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10552,7 +10552,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10571,7 +10571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10601,7 +10601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10631,7 +10631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10661,7 +10661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10680,7 +10680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10699,7 +10699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10718,7 +10718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10737,7 +10737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10756,7 +10756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10775,7 +10775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10805,7 +10805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10835,7 +10835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -10865,7 +10865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10884,7 +10884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10903,7 +10903,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10922,7 +10922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10941,7 +10941,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -10960,7 +10960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10979,7 +10979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11009,7 +11009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11039,7 +11039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -11072,7 +11072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11091,7 +11091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11110,7 +11110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11129,7 +11129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11148,7 +11148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11167,7 +11167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11186,7 +11186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsObject::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11216,7 +11216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -11235,7 +11235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11265,7 +11265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -11295,7 +11295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -11314,7 +11314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsObject::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11344,7 +11344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsObject::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -11374,7 +11374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11393,7 +11393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsObject::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11423,7 +11423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -11474,7 +11474,7 @@ PythonQtShell_QGraphicsOpacityEffect::~PythonQtShell_QGraphicsOpacityEffect() { QRectF PythonQtShell_QGraphicsOpacityEffect::boundingRectFor(const QRectF& sourceRect0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -11504,7 +11504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11523,7 +11523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11542,7 +11542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::draw(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11561,7 +11561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsOpacityEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11591,7 +11591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsOpacityEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11621,7 +11621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::sourceChanged(QGraphicsEffect::ChangeFlags flags0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -11640,7 +11640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsOpacityEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11684,7 +11684,7 @@ PythonQtShell_QGraphicsPathItem::~PythonQtShell_QGraphicsPathItem() { bool PythonQtShell_QGraphicsPathItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11714,7 +11714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPathItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11818,7 +11818,7 @@ PythonQtShell_QGraphicsPixmapItem::~PythonQtShell_QGraphicsPixmapItem() { void PythonQtShell_QGraphicsPixmapItem::advance(int phase0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11837,7 +11837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QGraphicsPixmapItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -11867,7 +11867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::collidesWithItem(const QGraphicsItem* other0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -11897,7 +11897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::collidesWithPath(const QPainterPath& path0, Qt::ItemSelectionMode mode1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -11927,7 +11927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::contains(const QPointF& point0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -11957,7 +11957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -11976,7 +11976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -11995,7 +11995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12014,7 +12014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12033,7 +12033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12052,7 +12052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::extension(const QVariant& variant0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -12082,7 +12082,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12101,7 +12101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12120,7 +12120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12139,7 +12139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12158,7 +12158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12177,7 +12177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12196,7 +12196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12226,7 +12226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -12256,7 +12256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsPixmapItem::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -12289,7 +12289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12308,7 +12308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12327,7 +12327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12346,7 +12346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12365,7 +12365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12384,7 +12384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12403,7 +12403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPixmapItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -12433,7 +12433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -12452,7 +12452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::sceneEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12482,7 +12482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -12512,7 +12512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension extension0, const QVariant& variant1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -12531,7 +12531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPixmapItem::shape() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -12561,7 +12561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -12591,7 +12591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsPixmapItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12621,7 +12621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp index f9cfdde40..b12f12219 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp @@ -87,7 +87,7 @@ PythonQtShell_QGraphicsPolygonItem::~PythonQtShell_QGraphicsPolygonItem() { bool PythonQtShell_QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -117,7 +117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsPolygonItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -231,7 +231,7 @@ PythonQtShell_QGraphicsProxyWidget::~PythonQtShell_QGraphicsProxyWidget() { void PythonQtShell_QGraphicsProxyWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -250,7 +250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -269,7 +269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -288,7 +288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -307,7 +307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -337,7 +337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -367,7 +367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -397,7 +397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -416,7 +416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -435,7 +435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -454,7 +454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -473,7 +473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -492,7 +492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -511,7 +511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -530,7 +530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -549,7 +549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -568,7 +568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -587,7 +587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsProxyWidget::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -655,7 +655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -674,7 +674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsProxyWidget::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -704,7 +704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -723,7 +723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -742,7 +742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -761,7 +761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsProxyWidget::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -780,7 +780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsProxyWidget::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -810,7 +810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsProxyWidget::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -1030,7 +1030,7 @@ PythonQtShell_QGraphicsRectItem::~PythonQtShell_QGraphicsRectItem() { bool PythonQtShell_QGraphicsRectItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1060,7 +1060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsRectItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1173,7 +1173,7 @@ PythonQtShell_QGraphicsRotation::~PythonQtShell_QGraphicsRotation() { void PythonQtShell_QGraphicsRotation::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -1192,7 +1192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1211,7 +1211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1230,7 +1230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsRotation::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1260,7 +1260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsRotation::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1290,7 +1290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsRotation::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1359,7 +1359,7 @@ PythonQtShell_QGraphicsScale::~PythonQtShell_QGraphicsScale() { void PythonQtShell_QGraphicsScale::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -1378,7 +1378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1397,7 +1397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1416,7 +1416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScale::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1446,7 +1446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScale::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1476,7 +1476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScale::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1550,7 +1550,7 @@ PythonQtShell_QGraphicsScene::~PythonQtShell_QGraphicsScene() { void PythonQtShell_QGraphicsScene::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1569,7 +1569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1588,7 +1588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1607,7 +1607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1626,7 +1626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1645,7 +1645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dragMoveEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1664,7 +1664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawBackground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -1683,7 +1683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawForeground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -1702,7 +1702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::drawItems(QPainter* painter0, int numItems1, QGraphicsItem** items2, const QStyleOptionGraphicsItem* options3, QWidget* widget4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1721,7 +1721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::dropEvent(QGraphicsSceneDragDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1740,7 +1740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScene::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsScene::eventFilter(QObject* watched0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1800,7 +1800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1819,7 +1819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1838,7 +1838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::helpEvent(QGraphicsSceneHelpEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHelpEvent*"}; @@ -1857,7 +1857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1876,7 +1876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsScene::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1906,7 +1906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1925,7 +1925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1944,7 +1944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1963,7 +1963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -1982,7 +1982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2001,7 +2001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2020,7 +2020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2039,7 +2039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsScene::wheelEvent(QGraphicsSceneWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -3085,7 +3085,7 @@ PythonQtShell_QGraphicsSimpleTextItem::~PythonQtShell_QGraphicsSimpleTextItem() bool PythonQtShell_QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem* item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -3115,7 +3115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainterPath PythonQtShell_QGraphicsSimpleTextItem::opaqueArea() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3229,7 +3229,7 @@ PythonQtShell_QGraphicsTextItem::~PythonQtShell_QGraphicsTextItem() { void PythonQtShell_QGraphicsTextItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3248,7 +3248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTextItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3267,7 +3267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTextItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3297,7 +3297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTextItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3327,7 +3327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTextItem::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3610,7 +3610,7 @@ PythonQtShell_QGraphicsTransform::~PythonQtShell_QGraphicsTransform() { void PythonQtShell_QGraphicsTransform::applyTo(QMatrix4x4* matrix0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -3629,7 +3629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3648,7 +3648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3667,7 +3667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTransform::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3697,7 +3697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsTransform::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3727,7 +3727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsTransform::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3761,7 +3761,7 @@ PythonQtShell_QGraphicsView::~PythonQtShell_QGraphicsView() { void PythonQtShell_QGraphicsView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3780,7 +3780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3799,7 +3799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3837,7 +3837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3856,7 +3856,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3875,7 +3875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3924,7 +3924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3943,7 +3943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3962,7 +3962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawBackground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -3981,7 +3981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawForeground(QPainter* painter0, const QRectF& rect1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -4000,7 +4000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::drawItems(QPainter* painter0, int numItems1, QGraphicsItem** items2, const QStyleOptionGraphicsItem* options3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*"}; @@ -4019,7 +4019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4038,7 +4038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4057,7 +4057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4087,7 +4087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4117,7 +4117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4136,7 +4136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4166,7 +4166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4185,7 +4185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4215,7 +4215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4245,7 +4245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4264,7 +4264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4283,7 +4283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4302,7 +4302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4332,7 +4332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4351,7 +4351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4370,7 +4370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4389,7 +4389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4419,7 +4419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4438,7 +4438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4457,7 +4457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4476,7 +4476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4495,7 +4495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4514,7 +4514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4544,7 +4544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGraphicsView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4574,7 +4574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4593,7 +4593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGraphicsView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4623,7 +4623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4642,7 +4642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4661,7 +4661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::setupViewport(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGraphicsView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4710,7 +4710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4729,7 +4729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4748,7 +4748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4767,7 +4767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4797,7 +4797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGraphicsView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4827,7 +4827,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsView::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5380,7 +5380,7 @@ PythonQtShell_QGraphicsWidget::~PythonQtShell_QGraphicsWidget() { void PythonQtShell_QGraphicsWidget::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5399,7 +5399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5418,7 +5418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5437,7 +5437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5456,7 +5456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5486,7 +5486,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5516,7 +5516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5546,7 +5546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -5565,7 +5565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5584,7 +5584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5603,7 +5603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5622,7 +5622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5641,7 +5641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -5660,7 +5660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -5679,7 +5679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -5698,7 +5698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -5717,7 +5717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5736,7 +5736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWidget::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -5766,7 +5766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -5785,7 +5785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -5804,7 +5804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5823,7 +5823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsWidget::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -5853,7 +5853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5872,7 +5872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5891,7 +5891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5910,7 +5910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWidget::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5929,7 +5929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWidget::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5959,7 +5959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsWidget::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -6394,7 +6394,7 @@ PythonQtShell_QGridLayout::~PythonQtShell_QGridLayout() { void PythonQtShell_QGridLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -6413,7 +6413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6432,7 +6432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QGridLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -6462,7 +6462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGridLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6492,7 +6492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6511,7 +6511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6541,7 +6541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6571,7 +6571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QGridLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -6601,7 +6601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QGridLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -6631,7 +6631,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGridLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -6661,7 +6661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6680,7 +6680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGridLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6710,7 +6710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QGridLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -6740,7 +6740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QGridLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -6770,7 +6770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGridLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6800,7 +6800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGridLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6830,7 +6830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -6849,7 +6849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QGridLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -6879,7 +6879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGridLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7112,7 +7112,7 @@ PythonQtShell_QGroupBox::~PythonQtShell_QGroupBox() { void PythonQtShell_QGroupBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7131,7 +7131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7150,7 +7150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::childEvent(QChildEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7169,7 +7169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7188,7 +7188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7207,7 +7207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7226,7 +7226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7256,7 +7256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7275,7 +7275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7294,7 +7294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7313,7 +7313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7332,7 +7332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7351,7 +7351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7381,7 +7381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7411,7 +7411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7430,7 +7430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7460,7 +7460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7479,7 +7479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7509,7 +7509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7539,7 +7539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7558,7 +7558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7577,7 +7577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7596,7 +7596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGroupBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7626,7 +7626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7645,7 +7645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7664,7 +7664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7683,7 +7683,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGroupBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7713,7 +7713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7732,7 +7732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7751,7 +7751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7770,7 +7770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7789,7 +7789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7808,7 +7808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGroupBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7838,7 +7838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGroupBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7868,7 +7868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7887,7 +7887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGroupBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7917,7 +7917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7936,7 +7936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGroupBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7966,7 +7966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7985,7 +7985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGroupBox::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8015,7 +8015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8034,7 +8034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8053,7 +8053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGroupBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8413,7 +8413,7 @@ PythonQtShell_QHBoxLayout::~PythonQtShell_QHBoxLayout() { void PythonQtShell_QHBoxLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -8432,7 +8432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8451,7 +8451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QHBoxLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -8481,7 +8481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHBoxLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8511,7 +8511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8530,7 +8530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8560,7 +8560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8590,7 +8590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QHBoxLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -8620,7 +8620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QHBoxLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -8650,7 +8650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHBoxLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -8680,7 +8680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8699,7 +8699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHBoxLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8729,7 +8729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QHBoxLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -8759,7 +8759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QHBoxLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -8789,7 +8789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHBoxLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8819,7 +8819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHBoxLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8849,7 +8849,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -8868,7 +8868,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QHBoxLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -8898,7 +8898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHBoxLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8931,7 +8931,7 @@ PythonQtShell_QHeaderView::~PythonQtShell_QHeaderView() { void PythonQtShell_QHeaderView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8950,7 +8950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8969,7 +8969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8988,7 +8988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9007,7 +9007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9026,7 +9026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9045,7 +9045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9064,7 +9064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::currentChanged(const QModelIndex& current0, const QModelIndex& old1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -9083,7 +9083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9102,7 +9102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -9121,7 +9121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9151,7 +9151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9170,7 +9170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9189,7 +9189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9208,7 +9208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9227,7 +9227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9246,7 +9246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -9276,7 +9276,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -9295,7 +9295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9314,7 +9314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9344,7 +9344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9374,7 +9374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9393,7 +9393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9423,7 +9423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9442,7 +9442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9472,7 +9472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9502,7 +9502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9521,7 +9521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9551,7 +9551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9570,7 +9570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9589,7 +9589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QHeaderView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -9619,7 +9619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9638,7 +9638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9657,7 +9657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QHeaderView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9687,7 +9687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -9717,7 +9717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9736,7 +9736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9755,7 +9755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -9774,7 +9774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9793,7 +9793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9823,7 +9823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9842,7 +9842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9861,7 +9861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9880,7 +9880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9899,7 +9899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9918,7 +9918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9948,7 +9948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QHeaderView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9978,7 +9978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9997,7 +9997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::paintSection(QPainter* painter0, const QRect& rect1, int logicalIndex2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintSection"); + static PyObject* name = PyUnicode_FromString("paintSection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int"}; @@ -10016,7 +10016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QHeaderView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10046,7 +10046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10065,7 +10065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10084,7 +10084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10103,7 +10103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10122,7 +10122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -10141,7 +10141,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -10160,7 +10160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHeaderView::sectionSizeFromContents(int logicalIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sectionSizeFromContents"); + static PyObject* name = PyUnicode_FromString("sectionSizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -10190,7 +10190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10209,7 +10209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QHeaderView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -10239,7 +10239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -10258,7 +10258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QHeaderView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -10288,7 +10288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -10307,7 +10307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -10326,7 +10326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags flags1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -10345,7 +10345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -10364,7 +10364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10383,7 +10383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QHeaderView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10413,7 +10413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10432,7 +10432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10462,7 +10462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10492,7 +10492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -10511,7 +10511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10530,7 +10530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10549,7 +10549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10568,7 +10568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10587,7 +10587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10606,7 +10606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QHeaderView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10636,7 +10636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10655,7 +10655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10674,7 +10674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QHeaderView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -10704,7 +10704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHeaderView::viewportEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10734,7 +10734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QHeaderView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10764,7 +10764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QHeaderView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -10794,7 +10794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QHeaderView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -10824,7 +10824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHeaderView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11371,7 +11371,7 @@ PythonQtShell_QIconEngine::~PythonQtShell_QIconEngine() { QSize PythonQtShell_QIconEngine::actualSize(const QSize& size0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actualSize"); + static PyObject* name = PyUnicode_FromString("actualSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -11401,7 +11401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::addFile(const QString& fileName0, const QSize& size1, QIcon::Mode mode2, QIcon::State state3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addFile"); + static PyObject* name = PyUnicode_FromString("addFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -11420,7 +11420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::addPixmap(const QPixmap& pixmap0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addPixmap"); + static PyObject* name = PyUnicode_FromString("addPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPixmap&" , "QIcon::Mode" , "QIcon::State"}; @@ -11439,7 +11439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QIconEngine::availableSizes(QIcon::Mode mode0, QIcon::State state1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availableSizes"); + static PyObject* name = PyUnicode_FromString("availableSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QIcon::Mode" , "QIcon::State"}; @@ -11469,7 +11469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIconEngine* PythonQtShell_QIconEngine::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIconEngine*"}; @@ -11499,7 +11499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QIconEngine::iconName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("iconName"); + static PyObject* name = PyUnicode_FromString("iconName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -11529,7 +11529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QIconEngine::key() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("key"); + static PyObject* name = PyUnicode_FromString("key"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -11559,7 +11559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::paint(QPainter* painter0, const QRect& rect1, QIcon::Mode mode2, QIcon::State state3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "QIcon::Mode" , "QIcon::State"}; @@ -11578,7 +11578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QIconEngine::pixmap(const QSize& size0, QIcon::Mode mode1, QIcon::State state2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixmap"); + static PyObject* name = PyUnicode_FromString("pixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -11608,7 +11608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIconEngine::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -11638,7 +11638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIconEngine::virtual_hook(int id0, void* data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -11657,7 +11657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIconEngine::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp index 3a7bec989..80bdc5d74 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp @@ -91,7 +91,7 @@ PythonQtShell_QImageIOHandler::~PythonQtShell_QImageIOHandler() { bool PythonQtShell_QImageIOHandler::canRead() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canRead"); + static PyObject* name = PyUnicode_FromString("canRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -121,7 +121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::currentImageNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentImageNumber"); + static PyObject* name = PyUnicode_FromString("currentImageNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -151,7 +151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QImageIOHandler::currentImageRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentImageRect"); + static PyObject* name = PyUnicode_FromString("currentImageRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -181,7 +181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::imageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("imageCount"); + static PyObject* name = PyUnicode_FromString("imageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -211,7 +211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::jumpToImage(int imageNumber0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("jumpToImage"); + static PyObject* name = PyUnicode_FromString("jumpToImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -241,7 +241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::jumpToNextImage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("jumpToNextImage"); + static PyObject* name = PyUnicode_FromString("jumpToNextImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -271,7 +271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::loopCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loopCount"); + static PyObject* name = PyUnicode_FromString("loopCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -301,7 +301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QImageIOHandler::name() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -331,7 +331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImageIOHandler::nextImageDelay() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextImageDelay"); + static PyObject* name = PyUnicode_FromString("nextImageDelay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -361,7 +361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QImageIOHandler::option(QImageIOHandler::ImageOption option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("option"); + static PyObject* name = PyUnicode_FromString("option"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QImageIOHandler::ImageOption"}; @@ -391,7 +391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::read(QImage* image0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImage*"}; @@ -421,7 +421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOHandler::setOption(QImageIOHandler::ImageOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOption"); + static PyObject* name = PyUnicode_FromString("setOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QImageIOHandler::ImageOption" , "const QVariant&"}; @@ -440,7 +440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::supportsOption(QImageIOHandler::ImageOption option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsOption"); + static PyObject* name = PyUnicode_FromString("supportsOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImageIOHandler::ImageOption"}; @@ -470,7 +470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOHandler::write(const QImage& image0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QImage&"}; @@ -595,7 +595,7 @@ PythonQtShell_QImageIOPlugin::~PythonQtShell_QImageIOPlugin() { QImageIOPlugin::Capabilities PythonQtShell_QImageIOPlugin::capabilities(QIODevice* device0, const QByteArray& format1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("capabilities"); + static PyObject* name = PyUnicode_FromString("capabilities"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOPlugin::Capabilities" , "QIODevice*" , "const QByteArray&"}; @@ -625,7 +625,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -644,7 +644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QImageIOHandler* PythonQtShell_QImageIOPlugin::create(QIODevice* device0, const QByteArray& format1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOHandler*" , "QIODevice*" , "const QByteArray&"}; @@ -674,7 +674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -693,7 +693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOPlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -723,7 +723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QImageIOPlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -753,7 +753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImageIOPlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1170,7 +1170,7 @@ PythonQtShell_QInputDialog::~PythonQtShell_QInputDialog() { void PythonQtShell_QInputDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1189,7 +1189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1208,7 +1208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1227,7 +1227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1246,7 +1246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1265,7 +1265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1284,7 +1284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1303,7 +1303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1333,7 +1333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::done(int result0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1352,7 +1352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1371,7 +1371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1390,7 +1390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1409,7 +1409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1447,7 +1447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1477,7 +1477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1507,7 +1507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1537,7 +1537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1556,7 +1556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1586,7 +1586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1605,7 +1605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1635,7 +1635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1665,7 +1665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1684,7 +1684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1703,7 +1703,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1722,7 +1722,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QInputDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1752,7 +1752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1771,7 +1771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1790,7 +1790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1809,7 +1809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QInputDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1839,7 +1839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1858,7 +1858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1877,7 +1877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1896,7 +1896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1915,7 +1915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1934,7 +1934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QInputDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1964,7 +1964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1983,7 +1983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QInputDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2013,7 +2013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2032,7 +2032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QInputDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2062,7 +2062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2081,7 +2081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2100,7 +2100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QInputDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2130,7 +2130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2149,7 +2149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2168,7 +2168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2187,7 +2187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QInputDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2628,7 +2628,7 @@ PythonQtShell_QIntValidator::~PythonQtShell_QIntValidator() { void PythonQtShell_QIntValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2647,7 +2647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2666,7 +2666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIntValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2696,7 +2696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QIntValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2726,7 +2726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::fixup(QString& input0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2745,7 +2745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::setRange(int bottom0, int top1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -2764,7 +2764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QIntValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2783,7 +2783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QIntValidator::validate(QString& arg__1, int& arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2862,7 +2862,7 @@ PythonQtShell_QItemDelegate::~PythonQtShell_QItemDelegate() { void PythonQtShell_QItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2881,7 +2881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2911,7 +2911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2930,7 +2930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2949,7 +2949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawCheck(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, Qt::CheckState state3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawCheck"); + static PyObject* name = PyUnicode_FromString("drawCheck"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "Qt::CheckState"}; @@ -2968,7 +2968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawDecoration(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawDecoration"); + static PyObject* name = PyUnicode_FromString("drawDecoration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QPixmap&"}; @@ -2987,7 +2987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawDisplay(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2, const QString& text3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawDisplay"); + static PyObject* name = PyUnicode_FromString("drawDisplay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QString&"}; @@ -3006,7 +3006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::drawFocus(QPainter* painter0, const QStyleOptionViewItem& option1, const QRect& rect2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawFocus"); + static PyObject* name = PyUnicode_FromString("drawFocus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&"}; @@ -3025,7 +3025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3055,7 +3055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3085,7 +3085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3115,7 +3115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3145,7 +3145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3164,7 +3164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -3194,7 +3194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3213,7 +3213,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -3232,7 +3232,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3262,7 +3262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3281,7 +3281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3420,7 +3420,7 @@ PythonQtShell_QItemEditorCreatorBase::~PythonQtShell_QItemEditorCreatorBase() { QWidget* PythonQtShell_QItemEditorCreatorBase::createWidget(QWidget* parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -3450,7 +3450,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QItemEditorCreatorBase::valuePropertyName() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -3500,7 +3500,7 @@ PythonQtShell_QItemEditorFactory::~PythonQtShell_QItemEditorFactory() { QWidget* PythonQtShell_QItemEditorFactory::createEditor(int userType0, QWidget* parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "int" , "QWidget*"}; @@ -3530,7 +3530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QByteArray PythonQtShell_QItemEditorFactory::valuePropertyName(int userType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "int"}; @@ -3860,7 +3860,7 @@ PythonQtShell_QItemSelectionModel::~PythonQtShell_QItemSelectionModel() { void PythonQtShell_QItemSelectionModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3879,7 +3879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3898,7 +3898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::clearCurrentIndex() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clearCurrentIndex"); + static PyObject* name = PyUnicode_FromString("clearCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3917,7 +3917,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3936,7 +3936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemSelectionModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3966,7 +3966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QItemSelectionModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3996,7 +3996,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4015,7 +4015,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::select(const QItemSelection& selection0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "QItemSelectionModel::SelectionFlags"}; @@ -4034,7 +4034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::select(const QModelIndex& index0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4053,7 +4053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::setCurrentIndex(const QModelIndex& index0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4072,7 +4072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QItemSelectionModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4384,7 +4384,7 @@ PythonQtShell_QKeyEventTransition::~PythonQtShell_QKeyEventTransition() { void PythonQtShell_QKeyEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4403,7 +4403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4422,7 +4422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4452,7 +4452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4482,7 +4482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QKeyEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4512,7 +4512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4531,7 +4531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QKeyEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4594,7 +4594,7 @@ PythonQtShell_QLCDNumber::~PythonQtShell_QLCDNumber() { void PythonQtShell_QLCDNumber::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4613,7 +4613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4632,7 +4632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4651,7 +4651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4670,7 +4670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4689,7 +4689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4708,7 +4708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4738,7 +4738,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4757,7 +4757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4776,7 +4776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4795,7 +4795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4814,7 +4814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4833,7 +4833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4863,7 +4863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4893,7 +4893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4912,7 +4912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4942,7 +4942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4961,7 +4961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4991,7 +4991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5021,7 +5021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5040,7 +5040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5059,7 +5059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5078,7 +5078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLCDNumber::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5108,7 +5108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5127,7 +5127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5146,7 +5146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5165,7 +5165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLCDNumber::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5195,7 +5195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLCDNumber::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5225,7 +5225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5244,7 +5244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5263,7 +5263,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5282,7 +5282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5301,7 +5301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5320,7 +5320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLCDNumber::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5350,7 +5350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLCDNumber::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5380,7 +5380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5399,7 +5399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLCDNumber::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5429,7 +5429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5448,7 +5448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLCDNumber::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5478,7 +5478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5497,7 +5497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5516,7 +5516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5535,7 +5535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLCDNumber::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5638,7 +5638,7 @@ PythonQtShell_QLabel::~PythonQtShell_QLabel() { void PythonQtShell_QLabel::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5657,7 +5657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5676,7 +5676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5695,7 +5695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5714,7 +5714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::contextMenuEvent(QContextMenuEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5733,7 +5733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5752,7 +5752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5782,7 +5782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5801,7 +5801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5820,7 +5820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5839,7 +5839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5858,7 +5858,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5877,7 +5877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5907,7 +5907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5937,7 +5937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::focusInEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5956,7 +5956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5986,7 +5986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::focusOutEvent(QFocusEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6005,7 +6005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6035,7 +6035,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6065,7 +6065,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6084,7 +6084,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6103,7 +6103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6122,7 +6122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLabel::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6152,7 +6152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6171,7 +6171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6190,7 +6190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6209,7 +6209,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLabel::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6239,7 +6239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6258,7 +6258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6277,7 +6277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6296,7 +6296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6315,7 +6315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6334,7 +6334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLabel::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6364,7 +6364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLabel::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6394,7 +6394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6413,7 +6413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLabel::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6443,7 +6443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6462,7 +6462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLabel::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6492,7 +6492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6511,7 +6511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6530,7 +6530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6549,7 +6549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLabel::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6782,7 +6782,7 @@ PythonQtShell_QLayout::~PythonQtShell_QLayout() { void PythonQtShell_QLayout::addItem(QLayoutItem* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -6801,7 +6801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6820,7 +6820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -6850,7 +6850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6880,7 +6880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6899,7 +6899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6929,7 +6929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6959,7 +6959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -6989,7 +6989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7019,7 +7019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7049,7 +7049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7079,7 +7079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -7109,7 +7109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7128,7 +7128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7158,7 +7158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QLayout::itemAt(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7188,7 +7188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7218,7 +7218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7248,7 +7248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayout::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7278,7 +7278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7308,7 +7308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7327,7 +7327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayout::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7357,7 +7357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QLayout::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -7387,7 +7387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QLayout::takeAt(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -7417,7 +7417,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7436,7 +7436,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QLayout::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -7720,7 +7720,7 @@ PythonQtShell_QLayoutItem::~PythonQtShell_QLayoutItem() { QSizePolicy::ControlTypes PythonQtShell_QLayoutItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7750,7 +7750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QLayoutItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7780,7 +7780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QLayoutItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7810,7 +7810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayoutItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7840,7 +7840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayoutItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7870,7 +7870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayoutItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7889,7 +7889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLayoutItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7919,7 +7919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QLayoutItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7949,7 +7949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7979,7 +7979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLayoutItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8009,7 +8009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8039,7 +8039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLayoutItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -8058,7 +8058,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QLayoutItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8088,7 +8088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QLayoutItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -8118,7 +8118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QLayoutItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -8243,7 +8243,7 @@ PythonQtShell_QLineEdit::~PythonQtShell_QLineEdit() { void PythonQtShell_QLineEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8262,7 +8262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8281,7 +8281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8300,7 +8300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8319,7 +8319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8338,7 +8338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8357,7 +8357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8387,7 +8387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8406,7 +8406,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8425,7 +8425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8444,7 +8444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8463,7 +8463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8482,7 +8482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8512,7 +8512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8542,7 +8542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8561,7 +8561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8591,7 +8591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8610,7 +8610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8640,7 +8640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8670,7 +8670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8689,7 +8689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8708,7 +8708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8727,7 +8727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QLineEdit::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8757,7 +8757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8776,7 +8776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8795,7 +8795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8814,7 +8814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QLineEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8844,7 +8844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8863,7 +8863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8882,7 +8882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8901,7 +8901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8920,7 +8920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8939,7 +8939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLineEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8969,7 +8969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QLineEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8999,7 +8999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9018,7 +9018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QLineEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9048,7 +9048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9067,7 +9067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QLineEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9097,7 +9097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9116,7 +9116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9135,7 +9135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9154,7 +9154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLineEdit::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9616,7 +9616,7 @@ PythonQtShell_QListView::~PythonQtShell_QListView() { void PythonQtShell_QListView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9635,7 +9635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9654,7 +9654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9673,7 +9673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -9692,7 +9692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9711,7 +9711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9730,7 +9730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9749,7 +9749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -9768,7 +9768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9787,7 +9787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -9806,7 +9806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9836,7 +9836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9855,7 +9855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9874,7 +9874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9893,7 +9893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9912,7 +9912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9931,7 +9931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -9961,7 +9961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -9980,7 +9980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9999,7 +9999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10029,7 +10029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10059,7 +10059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10078,7 +10078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10108,7 +10108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10127,7 +10127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10157,7 +10157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10187,7 +10187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10206,7 +10206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10236,7 +10236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10255,7 +10255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10274,7 +10274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QListView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -10304,7 +10304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10323,7 +10323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10342,7 +10342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10372,7 +10372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -10402,7 +10402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10421,7 +10421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10440,7 +10440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -10459,7 +10459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10478,7 +10478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10508,7 +10508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10527,7 +10527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10546,7 +10546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10565,7 +10565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10584,7 +10584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10603,7 +10603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10633,7 +10633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QListView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10663,7 +10663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10682,7 +10682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QListView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10712,7 +10712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10731,7 +10731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10750,7 +10750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10769,7 +10769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -10788,7 +10788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -10807,7 +10807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -10826,7 +10826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10845,7 +10845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QListView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -10875,7 +10875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -10894,7 +10894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QListView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -10924,7 +10924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -10943,7 +10943,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -10962,7 +10962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -10981,7 +10981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11000,7 +11000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11019,7 +11019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QListView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11049,7 +11049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11068,7 +11068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11098,7 +11098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11128,7 +11128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -11147,7 +11147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11166,7 +11166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11185,7 +11185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11204,7 +11204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11223,7 +11223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11242,7 +11242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11272,7 +11272,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11291,7 +11291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11310,7 +11310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QListView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -11340,7 +11340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11370,7 +11370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QListView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11400,7 +11400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QListView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -11430,7 +11430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QListView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -11460,7 +11460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11814,7 +11814,7 @@ PythonQtShell_QListWidget::~PythonQtShell_QListWidget() { void PythonQtShell_QListWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11833,7 +11833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11852,7 +11852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11871,7 +11871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -11890,7 +11890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11909,7 +11909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11928,7 +11928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11947,7 +11947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -11966,7 +11966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11985,7 +11985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -12004,7 +12004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12034,7 +12034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12053,7 +12053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12072,7 +12072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12091,7 +12091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12110,7 +12110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12129,7 +12129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::dropMimeData(int index0, const QMimeData* data1, Qt::DropAction action2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -12159,7 +12159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -12189,7 +12189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -12208,7 +12208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12227,7 +12227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12257,7 +12257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12287,7 +12287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12306,7 +12306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12336,7 +12336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12355,7 +12355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12385,7 +12385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12415,7 +12415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12434,7 +12434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12464,7 +12464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12483,7 +12483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12502,7 +12502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QListWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -12532,7 +12532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12551,7 +12551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12570,7 +12570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12600,7 +12600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12630,7 +12630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12649,7 +12649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12668,7 +12668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -12687,7 +12687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12706,7 +12706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12736,7 +12736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QListWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -12766,7 +12766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QListWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -12796,7 +12796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12815,7 +12815,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12834,7 +12834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12853,7 +12853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12872,7 +12872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12891,7 +12891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12921,7 +12921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QListWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12951,7 +12951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12970,7 +12970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QListWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13000,7 +13000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13019,7 +13019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13038,7 +13038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13057,7 +13057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13076,7 +13076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13095,7 +13095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -13114,7 +13114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13133,7 +13133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QListWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -13163,7 +13163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -13182,7 +13182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QListWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -13212,7 +13212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -13231,7 +13231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -13250,7 +13250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -13269,7 +13269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13288,7 +13288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QListWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13318,7 +13318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13337,7 +13337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13367,7 +13367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13397,7 +13397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -13416,7 +13416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QListWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13446,7 +13446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13465,7 +13465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13484,7 +13484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13503,7 +13503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13522,7 +13522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13541,7 +13541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QListWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13571,7 +13571,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13590,7 +13590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13609,7 +13609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QListWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -13639,7 +13639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13669,7 +13669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QListWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13699,7 +13699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QListWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -13729,7 +13729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QListWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -13759,7 +13759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13978,7 +13978,7 @@ PythonQtShell_QListWidgetItem::~PythonQtShell_QListWidgetItem() { QListWidgetItem* PythonQtShell_QListWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QListWidgetItem*"}; @@ -14008,7 +14008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QListWidgetItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -14038,7 +14038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QListWidgetItem::__lt__(const QListWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QListWidgetItem&"}; @@ -14068,7 +14068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14087,7 +14087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::setBackgroundColor(const QColor& color0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setBackgroundColor"); + static PyObject* name = PyUnicode_FromString("setBackgroundColor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QColor&"}; @@ -14106,7 +14106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::setData(int role0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -14125,7 +14125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QListWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14337,7 +14337,7 @@ PythonQtShell_QMainWindow::~PythonQtShell_QMainWindow() { void PythonQtShell_QMainWindow::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14356,7 +14356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14375,7 +14375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14394,7 +14394,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14413,7 +14413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14432,7 +14432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMenu* PythonQtShell_QMainWindow::createPopupMenu() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createPopupMenu"); + static PyObject* name = PyUnicode_FromString("createPopupMenu"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMenu*"}; @@ -14462,7 +14462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14481,7 +14481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14511,7 +14511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14530,7 +14530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14549,7 +14549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14568,7 +14568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14587,7 +14587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14606,7 +14606,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14636,7 +14636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14666,7 +14666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14685,7 +14685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14715,7 +14715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14734,7 +14734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14764,7 +14764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14794,7 +14794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14813,7 +14813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14832,7 +14832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14851,7 +14851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMainWindow::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14881,7 +14881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14900,7 +14900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14919,7 +14919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14938,7 +14938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMainWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14968,7 +14968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMainWindow::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14998,7 +14998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15017,7 +15017,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15036,7 +15036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15055,7 +15055,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15074,7 +15074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15093,7 +15093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMainWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15123,7 +15123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMainWindow::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15153,7 +15153,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15172,7 +15172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMainWindow::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15202,7 +15202,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15221,7 +15221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMainWindow::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15251,7 +15251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15270,7 +15270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMainWindow::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15300,7 +15300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15319,7 +15319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15338,7 +15338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMainWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp index ff76210dc..1a37c959e 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp @@ -436,7 +436,7 @@ PythonQtShell_QMdiArea::~PythonQtShell_QMdiArea() { void PythonQtShell_QMdiArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -455,7 +455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -474,7 +474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::childEvent(QChildEvent* childEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -493,7 +493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -512,7 +512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -531,7 +531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -550,7 +550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -580,7 +580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -599,7 +599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -618,7 +618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -637,7 +637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -656,7 +656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -675,7 +675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -705,7 +705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -735,7 +735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -754,7 +754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -784,7 +784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -803,7 +803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -863,7 +863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -882,7 +882,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -901,7 +901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -920,7 +920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMdiArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -950,7 +950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -969,7 +969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -988,7 +988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1007,7 +1007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1037,7 +1037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1056,7 +1056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1075,7 +1075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1094,7 +1094,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1113,7 +1113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1132,7 +1132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1162,7 +1162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMdiArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1192,7 +1192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::paintEvent(QPaintEvent* paintEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1211,7 +1211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMdiArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1241,7 +1241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::resizeEvent(QResizeEvent* resizeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1260,7 +1260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1279,7 +1279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1298,7 +1298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMdiArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1328,7 +1328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1347,7 +1347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1366,7 +1366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::timerEvent(QTimerEvent* timerEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1385,7 +1385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiArea::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1415,7 +1415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMdiArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1445,7 +1445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1649,7 +1649,7 @@ PythonQtShell_QMdiSubWindow::~PythonQtShell_QMdiSubWindow() { void PythonQtShell_QMdiSubWindow::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1668,7 +1668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::changeEvent(QEvent* changeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1687,7 +1687,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::childEvent(QChildEvent* childEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1706,7 +1706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::closeEvent(QCloseEvent* closeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1725,7 +1725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::contextMenuEvent(QContextMenuEvent* contextMenuEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1744,7 +1744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1763,7 +1763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1812,7 +1812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1918,7 +1918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1948,7 +1948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::focusInEvent(QFocusEvent* focusInEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1967,7 +1967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1997,7 +1997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::focusOutEvent(QFocusEvent* focusOutEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2016,7 +2016,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2046,7 +2046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2076,7 +2076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::hideEvent(QHideEvent* hideEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2095,7 +2095,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2114,7 +2114,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2133,7 +2133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMdiSubWindow::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2163,7 +2163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::keyPressEvent(QKeyEvent* keyEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2182,7 +2182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2201,7 +2201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::leaveEvent(QEvent* leaveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2220,7 +2220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMdiSubWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2250,7 +2250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseDoubleClickEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseMoveEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2288,7 +2288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mousePressEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2307,7 +2307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::mouseReleaseEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2326,7 +2326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::moveEvent(QMoveEvent* moveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2345,7 +2345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMdiSubWindow::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2375,7 +2375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMdiSubWindow::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2405,7 +2405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::paintEvent(QPaintEvent* paintEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2424,7 +2424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMdiSubWindow::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2454,7 +2454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::resizeEvent(QResizeEvent* resizeEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2473,7 +2473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMdiSubWindow::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2503,7 +2503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2522,7 +2522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2541,7 +2541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::timerEvent(QTimerEvent* timerEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2560,7 +2560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMdiSubWindow::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2769,7 +2769,7 @@ PythonQtShell_QMenu::~PythonQtShell_QMenu() { void PythonQtShell_QMenu::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2788,7 +2788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2807,7 +2807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2826,7 +2826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2845,7 +2845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2864,7 +2864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2883,7 +2883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2913,7 +2913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2932,7 +2932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2951,7 +2951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2970,7 +2970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2989,7 +2989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3008,7 +3008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3038,7 +3038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3068,7 +3068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3087,7 +3087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3117,7 +3117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3136,7 +3136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3166,7 +3166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3196,7 +3196,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3215,7 +3215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3234,7 +3234,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3253,7 +3253,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMenu::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3283,7 +3283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3302,7 +3302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3321,7 +3321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3340,7 +3340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenu::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3370,7 +3370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QMenu::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3400,7 +3400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3419,7 +3419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3438,7 +3438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3457,7 +3457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3476,7 +3476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3495,7 +3495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenu::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3525,7 +3525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMenu::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3555,7 +3555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3574,7 +3574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMenu::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3604,7 +3604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3623,7 +3623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMenu::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3653,7 +3653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3672,7 +3672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3691,7 +3691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3710,7 +3710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenu::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4028,7 +4028,7 @@ PythonQtShell_QMenuBar::~PythonQtShell_QMenuBar() { void PythonQtShell_QMenuBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4047,7 +4047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4066,7 +4066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4085,7 +4085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4104,7 +4104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4123,7 +4123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4142,7 +4142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4172,7 +4172,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4191,7 +4191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4210,7 +4210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4229,7 +4229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4248,7 +4248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4267,7 +4267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4297,7 +4297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4327,7 +4327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4346,7 +4346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4376,7 +4376,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4395,7 +4395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4425,7 +4425,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4455,7 +4455,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4474,7 +4474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4493,7 +4493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4512,7 +4512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMenuBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4542,7 +4542,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4561,7 +4561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4580,7 +4580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4599,7 +4599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMenuBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4629,7 +4629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4648,7 +4648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4667,7 +4667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4686,7 +4686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4705,7 +4705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4724,7 +4724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMenuBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4754,7 +4754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMenuBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4784,7 +4784,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4803,7 +4803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMenuBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4833,7 +4833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4852,7 +4852,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::setVisible(bool visible0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4871,7 +4871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMenuBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4901,7 +4901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4920,7 +4920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4939,7 +4939,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4958,7 +4958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMenuBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5182,7 +5182,7 @@ PythonQtShell_QMessageBox::~PythonQtShell_QMessageBox() { void PythonQtShell_QMessageBox::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5201,7 +5201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5220,7 +5220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5239,7 +5239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5258,7 +5258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5277,7 +5277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5296,7 +5296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5315,7 +5315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5345,7 +5345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5364,7 +5364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5383,7 +5383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5402,7 +5402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5421,7 +5421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5440,7 +5440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5459,7 +5459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5489,7 +5489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5519,7 +5519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5549,7 +5549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5568,7 +5568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5598,7 +5598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5617,7 +5617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5647,7 +5647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5677,7 +5677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5696,7 +5696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5715,7 +5715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5734,7 +5734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QMessageBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5764,7 +5764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5783,7 +5783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5802,7 +5802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5821,7 +5821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QMessageBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5851,7 +5851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5870,7 +5870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5889,7 +5889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5908,7 +5908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5927,7 +5927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5946,7 +5946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMessageBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5976,7 +5976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5995,7 +5995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QMessageBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6025,7 +6025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6044,7 +6044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QMessageBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6074,7 +6074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6093,7 +6093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6112,7 +6112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QMessageBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6142,7 +6142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6161,7 +6161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6180,7 +6180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6199,7 +6199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMessageBox::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6570,7 +6570,7 @@ PythonQtShell_QMouseEventTransition::~PythonQtShell_QMouseEventTransition() { void PythonQtShell_QMouseEventTransition::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6589,7 +6589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6608,7 +6608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6638,7 +6638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6668,7 +6668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMouseEventTransition::eventTest(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6698,7 +6698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::onTransition(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6717,7 +6717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMouseEventTransition::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6810,7 +6810,7 @@ PythonQtShell_QMovie::~PythonQtShell_QMovie() { void PythonQtShell_QMovie::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6829,7 +6829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMovie::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6848,7 +6848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMovie::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6878,7 +6878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMovie::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6908,7 +6908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMovie::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7110,7 +7110,7 @@ PythonQtShell_QOffscreenSurface::~PythonQtShell_QOffscreenSurface() { void PythonQtShell_QOffscreenSurface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7129,7 +7129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOffscreenSurface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7148,7 +7148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOffscreenSurface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7178,7 +7178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOffscreenSurface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7208,7 +7208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurfaceFormat PythonQtShell_QOffscreenSurface::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -7238,7 +7238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QOffscreenSurface::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7268,7 +7268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QOffscreenSurface::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -7298,7 +7298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOffscreenSurface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7481,7 +7481,7 @@ PythonQtShell_QOpenGLContext::~PythonQtShell_QOpenGLContext() { void PythonQtShell_QOpenGLContext::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7500,7 +7500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLContext::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7519,7 +7519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLContext::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7549,7 +7549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLContext::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7579,7 +7579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLContext::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8680,7 +8680,7 @@ PythonQtShell_QOpenGLPaintDevice::~PythonQtShell_QOpenGLPaintDevice() { int PythonQtShell_QOpenGLPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8710,7 +8710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLPaintDevice::ensureActiveTarget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ensureActiveTarget"); + static PyObject* name = PyUnicode_FromString("ensureActiveTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8729,7 +8729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8748,7 +8748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QOpenGLPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8778,7 +8778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QOpenGLPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8808,7 +8808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QOpenGLPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8838,7 +8838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QOpenGLPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8956,7 +8956,7 @@ PythonQtShell_QOpenGLShader::~PythonQtShell_QOpenGLShader() { void PythonQtShell_QOpenGLShader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8975,7 +8975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8994,7 +8994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9024,7 +9024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9054,7 +9054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9133,7 +9133,7 @@ PythonQtShell_QOpenGLShaderProgram::~PythonQtShell_QOpenGLShaderProgram() { void PythonQtShell_QOpenGLShaderProgram::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9152,7 +9152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShaderProgram::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9171,7 +9171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9201,7 +9201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9231,7 +9231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLShaderProgram::link() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9261,7 +9261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLShaderProgram::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10245,7 +10245,7 @@ PythonQtShell_QOpenGLTimeMonitor::~PythonQtShell_QOpenGLTimeMonitor() { void PythonQtShell_QOpenGLTimeMonitor::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10264,7 +10264,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimeMonitor::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10283,7 +10283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimeMonitor::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10313,7 +10313,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimeMonitor::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10343,7 +10343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimeMonitor::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10427,7 +10427,7 @@ PythonQtShell_QOpenGLTimerQuery::~PythonQtShell_QOpenGLTimerQuery() { void PythonQtShell_QOpenGLTimerQuery::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10446,7 +10446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimerQuery::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10465,7 +10465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimerQuery::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10495,7 +10495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLTimerQuery::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10525,7 +10525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLTimerQuery::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10663,7 +10663,7 @@ PythonQtShell_QOpenGLVertexArrayObject::~PythonQtShell_QOpenGLVertexArrayObject( void PythonQtShell_QOpenGLVertexArrayObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10682,7 +10682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLVertexArrayObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10701,7 +10701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLVertexArrayObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10731,7 +10731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QOpenGLVertexArrayObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10761,7 +10761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QOpenGLVertexArrayObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11175,7 +11175,7 @@ PythonQtShell_QPagedPaintDevice::~PythonQtShell_QPagedPaintDevice() { int PythonQtShell_QPagedPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11205,7 +11205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11224,7 +11224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPagedPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11254,7 +11254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPagedPaintDevice::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11284,7 +11284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPagedPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11314,7 +11314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPagedPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11344,7 +11344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setMargins(const QPagedPaintDevice::Margins& margins0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -11363,7 +11363,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setPageSize(QPagedPaintDevice::PageSize size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -11382,7 +11382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPagedPaintDevice::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -11401,7 +11401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPagedPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp index dd97a0d05..ee5ac7c34 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp @@ -98,7 +98,7 @@ PythonQtShell_QPaintDevice::~PythonQtShell_QPaintDevice() { int PythonQtShell_QPaintDevice::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -128,7 +128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintDevice::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -147,7 +147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -177,7 +177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPaintDevice::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -207,7 +207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPaintDevice::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -237,7 +237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPaintDevice::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -367,7 +367,7 @@ PythonQtShell_QPaintEngine::~PythonQtShell_QPaintEngine() { bool PythonQtShell_QPaintEngine::begin(QPaintDevice* pdev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("begin"); + static PyObject* name = PyUnicode_FromString("begin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QPaintDevice*"}; @@ -397,7 +397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPoint PythonQtShell_QPaintEngine::coordinateOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("coordinateOffset"); + static PyObject* name = PyUnicode_FromString("coordinateOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPoint"}; @@ -427,7 +427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawEllipse(const QRect& r0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -446,7 +446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawEllipse(const QRectF& r0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -465,7 +465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawImage(const QRectF& r0, const QImage& pm1, const QRectF& sr2, Qt::ImageConversionFlags flags3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawImage"); + static PyObject* name = PyUnicode_FromString("drawImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QImage&" , "const QRectF&" , "Qt::ImageConversionFlags"}; @@ -484,7 +484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawLines(const QLine* lines0, int lineCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLine*" , "int"}; @@ -503,7 +503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawLines(const QLineF* lines0, int lineCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLineF*" , "int"}; @@ -522,7 +522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPath(const QPainterPath& path0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPath"); + static PyObject* name = PyUnicode_FromString("drawPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPainterPath&"}; @@ -541,7 +541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPixmap(const QRectF& r0, const QPixmap& pm1, const QRectF& sr2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPixmap"); + static PyObject* name = PyUnicode_FromString("drawPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QRectF&"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPoints(const QPoint* points0, int pointCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int"}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPoints(const QPointF* points0, int pointCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPolygon(const QPoint* points0, int pointCount1, QPaintEngine::PolygonDrawMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawPolygon(const QPointF* points0, int pointCount1, QPaintEngine::PolygonDrawMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawRects(const QRect* rects0, int rectCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect*" , "int"}; @@ -655,7 +655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawRects(const QRectF* rects0, int rectCount1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF*" , "int"}; @@ -674,7 +674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawTextItem(const QPointF& p0, const QTextItem& textItem1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawTextItem"); + static PyObject* name = PyUnicode_FromString("drawTextItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&" , "const QTextItem&"}; @@ -693,7 +693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::drawTiledPixmap(const QRectF& r0, const QPixmap& pixmap1, const QPointF& s2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawTiledPixmap"); + static PyObject* name = PyUnicode_FromString("drawTiledPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QPointF&"}; @@ -712,7 +712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPaintEngine::end() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("end"); + static PyObject* name = PyUnicode_FromString("end"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -742,7 +742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine::Type PythonQtShell_QPaintEngine::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine::Type"}; @@ -772,7 +772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPaintEngine::updateState(const QPaintEngineState& state0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPaintEngineState&"}; @@ -2611,7 +2611,7 @@ PythonQtShell_QPanGesture::~PythonQtShell_QPanGesture() { void PythonQtShell_QPanGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2630,7 +2630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPanGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2649,7 +2649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPanGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2679,7 +2679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPanGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2709,7 +2709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPanGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2773,7 +2773,7 @@ PythonQtShell_QPdfWriter::~PythonQtShell_QPdfWriter() { void PythonQtShell_QPdfWriter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2792,7 +2792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2811,7 +2811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPdfWriter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2841,7 +2841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2871,7 +2871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2901,7 +2901,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2920,7 +2920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPdfWriter::metric(QPaintDevice::PaintDeviceMetric id0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2950,7 +2950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPdfWriter::newPage() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2980,7 +2980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPdfWriter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3010,7 +3010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPdfWriter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3040,7 +3040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setMargins(const QPagedPaintDevice::Margins& m0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -3059,7 +3059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -3078,7 +3078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::setPageSizeMM(const QSizeF& size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -3097,7 +3097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPdfWriter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3127,7 +3127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPdfWriter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3220,7 +3220,7 @@ PythonQtShell_QPicture::~PythonQtShell_QPicture() { int PythonQtShell_QPicture::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3250,7 +3250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPicture::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3269,7 +3269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPicture::metric(QPaintDevice::PaintDeviceMetric m0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3299,7 +3299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPicture::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3329,7 +3329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPicture::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3359,7 +3359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPicture::setData(const char* data0, uint size1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*" , "uint"}; @@ -3378,7 +3378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPicture::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3502,7 +3502,7 @@ PythonQtShell_QPictureFormatPlugin::~PythonQtShell_QPictureFormatPlugin() { void PythonQtShell_QPictureFormatPlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3521,7 +3521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPictureFormatPlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3540,7 +3540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3570,7 +3570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3600,7 +3600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::installIOHandler(const QString& format0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("installIOHandler"); + static PyObject* name = PyUnicode_FromString("installIOHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3630,7 +3630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::loadPicture(const QString& format0, const QString& filename1, QPicture* pic2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadPicture"); + static PyObject* name = PyUnicode_FromString("loadPicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QPicture*"}; @@ -3660,7 +3660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPictureFormatPlugin::savePicture(const QString& format0, const QString& filename1, const QPicture& pic2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("savePicture"); + static PyObject* name = PyUnicode_FromString("savePicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QPicture&"}; @@ -3690,7 +3690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPictureFormatPlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3868,7 +3868,7 @@ PythonQtShell_QPinchGesture::~PythonQtShell_QPinchGesture() { void PythonQtShell_QPinchGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3887,7 +3887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPinchGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3906,7 +3906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPinchGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3936,7 +3936,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPinchGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3966,7 +3966,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPinchGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4190,7 +4190,7 @@ PythonQtShell_QPlainTextDocumentLayout::~PythonQtShell_QPlainTextDocumentLayout( QRectF PythonQtShell_QPlainTextDocumentLayout::blockBoundingRect(const QTextBlock& block0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -4220,7 +4220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4239,7 +4239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4258,7 +4258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::documentChanged(int from0, int arg__2, int charsAdded2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -4277,7 +4277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QPlainTextDocumentLayout::documentSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -4307,7 +4307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::draw(QPainter* arg__1, const QAbstractTextDocumentLayout::PaintContext& arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -4326,7 +4326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::drawInlineObject(QPainter* painter0, const QRectF& rect1, QTextInlineObject object2, int posInDocument3, const QTextFormat& format4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -4345,7 +4345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextDocumentLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4375,7 +4375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextDocumentLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4405,7 +4405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRectF PythonQtShell_QPlainTextDocumentLayout::frameBoundingRect(QTextFrame* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -4435,7 +4435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextDocumentLayout::hitTest(const QPointF& arg__1, Qt::HitTestAccuracy arg__2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -4465,7 +4465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextDocumentLayout::pageCount() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4495,7 +4495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::positionInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -4514,7 +4514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::resizeInlineObject(QTextInlineObject item0, int posInDocument1, const QTextFormat& format2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -4533,7 +4533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextDocumentLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4617,7 +4617,7 @@ PythonQtShell_QPlainTextEdit::~PythonQtShell_QPlainTextEdit() { void PythonQtShell_QPlainTextEdit::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4636,7 +4636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::canInsertFromMimeData(const QMimeData* source0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -4666,7 +4666,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4685,7 +4685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4704,7 +4704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4723,7 +4723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::contextMenuEvent(QContextMenuEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4742,7 +4742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QPlainTextEdit::createMimeDataFromSelection() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -4772,7 +4772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4791,7 +4791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4821,7 +4821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::doSetTextCursor(const QTextCursor& cursor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -4840,7 +4840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragEnterEvent(QDragEnterEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4859,7 +4859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4878,7 +4878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dragMoveEvent(QDragMoveEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4897,7 +4897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::dropEvent(QDropEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4916,7 +4916,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4935,7 +4935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4965,7 +4965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4995,7 +4995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5014,7 +5014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5044,7 +5044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5063,7 +5063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5093,7 +5093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5123,7 +5123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5142,7 +5142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5161,7 +5161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5180,7 +5180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5210,7 +5210,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::insertFromMimeData(const QMimeData* source0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -5229,7 +5229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5248,7 +5248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5267,7 +5267,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5286,7 +5286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPlainTextEdit::loadResource(int type0, const QUrl& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -5316,7 +5316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPlainTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5346,7 +5346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5365,7 +5365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5384,7 +5384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5403,7 +5403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5422,7 +5422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5441,7 +5441,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5471,7 +5471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPlainTextEdit::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5501,7 +5501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5520,7 +5520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPlainTextEdit::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5550,7 +5550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::resizeEvent(QResizeEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5569,7 +5569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5588,7 +5588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5607,7 +5607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPlainTextEdit::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5637,7 +5637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5656,7 +5656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5675,7 +5675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5694,7 +5694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPlainTextEdit::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5724,7 +5724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QPlainTextEdit::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5754,7 +5754,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPlainTextEdit::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6560,7 +6560,7 @@ PythonQtShell_QProgressBar::~PythonQtShell_QProgressBar() { void PythonQtShell_QProgressBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6579,7 +6579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6598,7 +6598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6617,7 +6617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6636,7 +6636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6655,7 +6655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6674,7 +6674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6704,7 +6704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6723,7 +6723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6742,7 +6742,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6761,7 +6761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6780,7 +6780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6799,7 +6799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6829,7 +6829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6859,7 +6859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6878,7 +6878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6908,7 +6908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6927,7 +6927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6957,7 +6957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6987,7 +6987,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7006,7 +7006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7025,7 +7025,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7044,7 +7044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QProgressBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7074,7 +7074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7093,7 +7093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7112,7 +7112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7131,7 +7131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7161,7 +7161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7180,7 +7180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7199,7 +7199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7218,7 +7218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7237,7 +7237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7256,7 +7256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7286,7 +7286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QProgressBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7316,7 +7316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7335,7 +7335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QProgressBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7365,7 +7365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7384,7 +7384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QProgressBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7414,7 +7414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7433,7 +7433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7452,7 +7452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QProgressBar::text() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("text"); + static PyObject* name = PyUnicode_FromString("text"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7482,7 +7482,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7501,7 +7501,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7635,7 +7635,7 @@ PythonQtShell_QProgressDialog::~PythonQtShell_QProgressDialog() { void PythonQtShell_QProgressDialog::accept() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7654,7 +7654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7673,7 +7673,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7692,7 +7692,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7711,7 +7711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7730,7 +7730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7749,7 +7749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7768,7 +7768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7798,7 +7798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::done(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7817,7 +7817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7836,7 +7836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7855,7 +7855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7874,7 +7874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7893,7 +7893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7912,7 +7912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7942,7 +7942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7972,7 +7972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8002,7 +8002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8021,7 +8021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8051,7 +8051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8070,7 +8070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8100,7 +8100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8130,7 +8130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8149,7 +8149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8168,7 +8168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8187,7 +8187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QProgressDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8217,7 +8217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8236,7 +8236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8255,7 +8255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8274,7 +8274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProgressDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8304,7 +8304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8323,7 +8323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8342,7 +8342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8361,7 +8361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8380,7 +8380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8399,7 +8399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProgressDialog::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8429,7 +8429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::open() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8448,7 +8448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QProgressDialog::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8478,7 +8478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8497,7 +8497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QProgressDialog::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8527,7 +8527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::reject() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8546,7 +8546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8565,7 +8565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QProgressDialog::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8595,7 +8595,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8614,7 +8614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8633,7 +8633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8652,7 +8652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProgressDialog::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8785,7 +8785,7 @@ PythonQtShell_QProxyStyle::~PythonQtShell_QProxyStyle() { void PythonQtShell_QProxyStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8804,7 +8804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8823,7 +8823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawComplexControl(QStyle::ComplexControl control0, const QStyleOptionComplex* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -8842,7 +8842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -8861,7 +8861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -8880,7 +8880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -8899,7 +8899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::drawPrimitive(QStyle::PrimitiveElement element0, const QStyleOption* option1, QPainter* painter2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -8918,7 +8918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProxyStyle::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8948,7 +8948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QProxyStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8978,7 +8978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -9008,7 +9008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QProxyStyle::hitTestComplexControl(QStyle::ComplexControl control0, const QStyleOptionComplex* option1, const QPoint& pos2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -9038,7 +9038,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -9068,7 +9068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -9098,7 +9098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::pixelMetric(QStyle::PixelMetric metric0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -9128,7 +9128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -9147,7 +9147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QPalette& pal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -9166,7 +9166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::polish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9185,7 +9185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QProxyStyle::sizeFromContents(QStyle::ContentsType type0, const QStyleOption* option1, const QSize& size2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -9215,7 +9215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QProxyStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -9245,7 +9245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QProxyStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -9275,7 +9275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QProxyStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -9305,7 +9305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QProxyStyle::styleHint(QStyle::StyleHint hint0, const QStyleOption* option1, const QWidget* widget2, QStyleHintReturn* returnData3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -9335,7 +9335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -9365,7 +9365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QProxyStyle::subElementRect(QStyle::SubElement element0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -9395,7 +9395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9414,7 +9414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::unpolish(QApplication* app0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -9433,7 +9433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QProxyStyle::unpolish(QWidget* widget0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9596,7 +9596,7 @@ PythonQtShell_QPushButton::~PythonQtShell_QPushButton() { void PythonQtShell_QPushButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9615,7 +9615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9634,7 +9634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9653,7 +9653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9672,7 +9672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9691,7 +9691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9710,7 +9710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9729,7 +9729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9759,7 +9759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9778,7 +9778,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9797,7 +9797,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9816,7 +9816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9835,7 +9835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9854,7 +9854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9884,7 +9884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9914,7 +9914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9933,7 +9933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9963,7 +9963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9982,7 +9982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10012,7 +10012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10042,7 +10042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10061,7 +10061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::hitButton(const QPoint& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -10091,7 +10091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10110,7 +10110,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10129,7 +10129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QPushButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10159,7 +10159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10178,7 +10178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10197,7 +10197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10216,7 +10216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPushButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10246,7 +10246,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10265,7 +10265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseMoveEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10284,7 +10284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10303,7 +10303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10322,7 +10322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10341,7 +10341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QPushButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10371,7 +10371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10390,7 +10390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPushButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10420,7 +10420,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10439,7 +10439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPushButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10469,7 +10469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10488,7 +10488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPushButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10518,7 +10518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10537,7 +10537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10556,7 +10556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10575,7 +10575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPushButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10992,7 +10992,7 @@ PythonQtShell_QRadioButton::~PythonQtShell_QRadioButton() { void PythonQtShell_QRadioButton::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11011,7 +11011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11030,7 +11030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::checkStateSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11049,7 +11049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11068,7 +11068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11087,7 +11087,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11106,7 +11106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11125,7 +11125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11155,7 +11155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11174,7 +11174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11193,7 +11193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11212,7 +11212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11231,7 +11231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11250,7 +11250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11280,7 +11280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11310,7 +11310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::focusInEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11329,7 +11329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11359,7 +11359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::focusOutEvent(QFocusEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11378,7 +11378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11408,7 +11408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11438,7 +11438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11457,7 +11457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::hitButton(const QPoint& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -11487,7 +11487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11506,7 +11506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11525,7 +11525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QRadioButton::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11555,7 +11555,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::keyPressEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11574,7 +11574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::keyReleaseEvent(QKeyEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11593,7 +11593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11612,7 +11612,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRadioButton::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11642,7 +11642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11661,7 +11661,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11680,7 +11680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mousePressEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11699,7 +11699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::mouseReleaseEvent(QMouseEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11718,7 +11718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11737,7 +11737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioButton::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11767,7 +11767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::nextCheckState() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11786,7 +11786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QRadioButton::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11816,7 +11816,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11835,7 +11835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QRadioButton::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11865,7 +11865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11884,7 +11884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QRadioButton::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11914,7 +11914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11933,7 +11933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11952,7 +11952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::timerEvent(QTimerEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11971,7 +11971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioButton::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12242,7 +12242,7 @@ PythonQtShell_QRegExpValidator::~PythonQtShell_QRegExpValidator() { void PythonQtShell_QRegExpValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12261,7 +12261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12280,7 +12280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegExpValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12310,7 +12310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegExpValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12340,7 +12340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -12359,7 +12359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegExpValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12378,7 +12378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QRegExpValidator::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12437,7 +12437,7 @@ PythonQtShell_QRegularExpressionValidator::~PythonQtShell_QRegularExpressionVali void PythonQtShell_QRegularExpressionValidator::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12456,7 +12456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegularExpressionValidator::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12475,7 +12475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegularExpressionValidator::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12505,7 +12505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRegularExpressionValidator::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12535,7 +12535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegularExpressionValidator::fixup(QString& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -12554,7 +12554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRegularExpressionValidator::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12573,7 +12573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QRegularExpressionValidator::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp index 49e2bf885..d5e909dcb 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp @@ -97,7 +97,7 @@ PythonQtShell_QRubberBand::~PythonQtShell_QRubberBand() { void PythonQtShell_QRubberBand::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -116,7 +116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -135,7 +135,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -154,7 +154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -173,7 +173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -192,7 +192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -211,7 +211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -241,7 +241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -260,7 +260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -279,7 +279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -298,7 +298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -317,7 +317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -336,7 +336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -366,7 +366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -396,7 +396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -415,7 +415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -445,7 +445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -494,7 +494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -524,7 +524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -543,7 +543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -562,7 +562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -581,7 +581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QRubberBand::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -611,7 +611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -630,7 +630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -649,7 +649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -668,7 +668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QRubberBand::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -698,7 +698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QRubberBand::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -728,7 +728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -747,7 +747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -766,7 +766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -785,7 +785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -804,7 +804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -823,7 +823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRubberBand::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -853,7 +853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QRubberBand::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -883,7 +883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -902,7 +902,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QRubberBand::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -932,7 +932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -951,7 +951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QRubberBand::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -981,7 +981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1000,7 +1000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QRubberBand::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1030,7 +1030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1049,7 +1049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1068,7 +1068,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRubberBand::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1324,7 +1324,7 @@ PythonQtShell_QScrollArea::~PythonQtShell_QScrollArea() { void PythonQtShell_QScrollArea::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1343,7 +1343,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1362,7 +1362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1381,7 +1381,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1400,7 +1400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1419,7 +1419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1438,7 +1438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1468,7 +1468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1487,7 +1487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1506,7 +1506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1525,7 +1525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1544,7 +1544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1563,7 +1563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1593,7 +1593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1623,7 +1623,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1642,7 +1642,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1672,7 +1672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1691,7 +1691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1721,7 +1721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1751,7 +1751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1789,7 +1789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1808,7 +1808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QScrollArea::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1838,7 +1838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1857,7 +1857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1876,7 +1876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1895,7 +1895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1925,7 +1925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1944,7 +1944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1963,7 +1963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1982,7 +1982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2001,7 +2001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2020,7 +2020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2050,7 +2050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QScrollArea::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2080,7 +2080,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2099,7 +2099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QScrollArea::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2129,7 +2129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2148,7 +2148,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -2167,7 +2167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -2186,7 +2186,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QScrollArea::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2216,7 +2216,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2235,7 +2235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2254,7 +2254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2273,7 +2273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollArea::viewportEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2303,7 +2303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QScrollArea::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2333,7 +2333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollArea::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2442,7 +2442,7 @@ PythonQtShell_QScrollBar::~PythonQtShell_QScrollBar() { void PythonQtShell_QScrollBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2461,7 +2461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2480,7 +2480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2499,7 +2499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2518,7 +2518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2537,7 +2537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2556,7 +2556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2586,7 +2586,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2605,7 +2605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2624,7 +2624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2643,7 +2643,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2662,7 +2662,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2681,7 +2681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2711,7 +2711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2741,7 +2741,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2760,7 +2760,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2790,7 +2790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2809,7 +2809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2839,7 +2839,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2869,7 +2869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2888,7 +2888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2907,7 +2907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2926,7 +2926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QScrollBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2956,7 +2956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2975,7 +2975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2994,7 +2994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3013,7 +3013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QScrollBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3043,7 +3043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QScrollBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3073,7 +3073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3092,7 +3092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3111,7 +3111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3130,7 +3130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3149,7 +3149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3168,7 +3168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QScrollBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3198,7 +3198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QScrollBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3228,7 +3228,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3247,7 +3247,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QScrollBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3277,7 +3277,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3296,7 +3296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QScrollBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3326,7 +3326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3345,7 +3345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3364,7 +3364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QScrollBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3761,7 +3761,7 @@ PythonQtShell_QShortcut::~PythonQtShell_QShortcut() { void PythonQtShell_QShortcut::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3780,7 +3780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QShortcut::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3799,7 +3799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QShortcut::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3829,7 +3829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QShortcut::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3859,7 +3859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QShortcut::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3988,7 +3988,7 @@ PythonQtShell_QSizeGrip::~PythonQtShell_QSizeGrip() { void PythonQtShell_QSizeGrip::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4007,7 +4007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4026,7 +4026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4045,7 +4045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4064,7 +4064,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4083,7 +4083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4102,7 +4102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4132,7 +4132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4151,7 +4151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4170,7 +4170,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4189,7 +4189,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4208,7 +4208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4227,7 +4227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4257,7 +4257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4287,7 +4287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4306,7 +4306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4336,7 +4336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4355,7 +4355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4385,7 +4385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4415,7 +4415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::hideEvent(QHideEvent* hideEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4434,7 +4434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4453,7 +4453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4472,7 +4472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSizeGrip::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4502,7 +4502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4521,7 +4521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4540,7 +4540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4559,7 +4559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSizeGrip::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4589,7 +4589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSizeGrip::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4619,7 +4619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4638,7 +4638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4657,7 +4657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4676,7 +4676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::mouseReleaseEvent(QMouseEvent* mouseEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4695,7 +4695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::moveEvent(QMoveEvent* moveEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4714,7 +4714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSizeGrip::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4744,7 +4744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSizeGrip::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4774,7 +4774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4793,7 +4793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSizeGrip::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4823,7 +4823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4842,7 +4842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSizeGrip::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4872,7 +4872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::showEvent(QShowEvent* showEvent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4891,7 +4891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4910,7 +4910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4929,7 +4929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSizeGrip::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5013,7 +5013,7 @@ PythonQtShell_QSlider::~PythonQtShell_QSlider() { void PythonQtShell_QSlider::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5032,7 +5032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::changeEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5051,7 +5051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5070,7 +5070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5089,7 +5089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5108,7 +5108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5127,7 +5127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5157,7 +5157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5176,7 +5176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5195,7 +5195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5214,7 +5214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5233,7 +5233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5252,7 +5252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5282,7 +5282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5312,7 +5312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5331,7 +5331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5361,7 +5361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5380,7 +5380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5410,7 +5410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5440,7 +5440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5459,7 +5459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5478,7 +5478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5497,7 +5497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5527,7 +5527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::keyPressEvent(QKeyEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5546,7 +5546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5565,7 +5565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5584,7 +5584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5614,7 +5614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5633,7 +5633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseMoveEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5652,7 +5652,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mousePressEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5671,7 +5671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::mouseReleaseEvent(QMouseEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5690,7 +5690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5709,7 +5709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSlider::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5739,7 +5739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSlider::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5769,7 +5769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::paintEvent(QPaintEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5788,7 +5788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSlider::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5818,7 +5818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5837,7 +5837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSlider::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5867,7 +5867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5886,7 +5886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5905,7 +5905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5924,7 +5924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSlider::wheelEvent(QWheelEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6017,7 +6017,7 @@ PythonQtShell_QSortFilterProxyModel::~PythonQtShell_QSortFilterProxyModel() { QModelIndex PythonQtShell_QSortFilterProxyModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6047,7 +6047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6077,7 +6077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6107,7 +6107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6126,7 +6126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSortFilterProxyModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6156,7 +6156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6175,7 +6175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSortFilterProxyModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -6205,7 +6205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6235,7 +6235,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6265,7 +6265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6295,7 +6295,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6314,7 +6314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::filterAcceptsColumn(int source_column0, const QModelIndex& source_parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("filterAcceptsColumn"); + static PyObject* name = PyUnicode_FromString("filterAcceptsColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -6344,7 +6344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::filterAcceptsRow(int source_row0, const QModelIndex& source_parent1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("filterAcceptsRow"); + static PyObject* name = PyUnicode_FromString("filterAcceptsRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -6374,7 +6374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSortFilterProxyModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6404,7 +6404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6434,7 +6434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSortFilterProxyModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6464,7 +6464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6494,7 +6494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6524,7 +6524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6554,7 +6554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSortFilterProxyModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6584,7 +6584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::lessThan(const QModelIndex& left0, const QModelIndex& right1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lessThan"); + static PyObject* name = PyUnicode_FromString("lessThan"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6614,7 +6614,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::mapFromSource(const QModelIndex& sourceIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6644,7 +6644,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionFromSource(const QItemSelection& sourceSelection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -6674,7 +6674,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionToSource(const QItemSelection& proxySelection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -6704,7 +6704,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::mapToSource(const QModelIndex& proxyIndex0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6734,7 +6734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSortFilterProxyModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6764,7 +6764,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSortFilterProxyModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6794,7 +6794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSortFilterProxyModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6824,7 +6824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6854,7 +6854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6884,7 +6884,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6914,7 +6914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6944,7 +6944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6974,7 +6974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6993,7 +6993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSortFilterProxyModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7023,7 +7023,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSortFilterProxyModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7053,7 +7053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7083,7 +7083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7113,7 +7113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -7143,7 +7143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::setSourceModel(QAbstractItemModel* sourceModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -7162,7 +7162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSortFilterProxyModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7192,7 +7192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7211,7 +7211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSortFilterProxyModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7241,7 +7241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSortFilterProxyModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7271,7 +7271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7301,7 +7301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7331,7 +7331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSortFilterProxyModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7620,7 +7620,7 @@ PythonQtShell_QSound::~PythonQtShell_QSound() { void PythonQtShell_QSound::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7639,7 +7639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSound::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7658,7 +7658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSound::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7688,7 +7688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSound::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7718,7 +7718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSound::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7777,7 +7777,7 @@ PythonQtShell_QSpacerItem::~PythonQtShell_QSpacerItem() { QSizePolicy::ControlTypes PythonQtShell_QSpacerItem::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -7807,7 +7807,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QSpacerItem::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -7837,7 +7837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QSpacerItem::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -7867,7 +7867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpacerItem::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7897,7 +7897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpacerItem::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7927,7 +7927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpacerItem::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7946,7 +7946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpacerItem::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7976,7 +7976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QSpacerItem::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -8006,7 +8006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8036,7 +8036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpacerItem::minimumHeightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8066,7 +8066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8096,7 +8096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpacerItem::setGeometry(const QRect& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -8115,7 +8115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSpacerItem::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8145,7 +8145,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSpacerItem* PythonQtShell_QSpacerItem::spacerItem() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -8175,7 +8175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QSpacerItem::widget() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -8260,7 +8260,7 @@ PythonQtShell_QSpinBox::~PythonQtShell_QSpinBox() { void PythonQtShell_QSpinBox::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8279,7 +8279,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8298,7 +8298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8317,7 +8317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8336,7 +8336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8355,7 +8355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::contextMenuEvent(QContextMenuEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8374,7 +8374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8393,7 +8393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8423,7 +8423,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8442,7 +8442,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8461,7 +8461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8480,7 +8480,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8499,7 +8499,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8518,7 +8518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8548,7 +8548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8578,7 +8578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::fixup(QString& str0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -8597,7 +8597,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8616,7 +8616,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8646,7 +8646,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8665,7 +8665,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8695,7 +8695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8725,7 +8725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8744,7 +8744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8763,7 +8763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8782,7 +8782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8812,7 +8812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8831,7 +8831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::keyReleaseEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8850,7 +8850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8869,7 +8869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8899,7 +8899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8918,7 +8918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8937,7 +8937,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8956,7 +8956,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8975,7 +8975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8994,7 +8994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSpinBox::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9024,7 +9024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSpinBox::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9054,7 +9054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9073,7 +9073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSpinBox::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9103,7 +9103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9122,7 +9122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSpinBox::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9152,7 +9152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9171,7 +9171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::stepBy(int steps0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9190,7 +9190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractSpinBox::StepEnabled PythonQtShell_QSpinBox::stepEnabled() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -9220,7 +9220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9239,7 +9239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSpinBox::textFromValue(int val0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -9269,7 +9269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9288,7 +9288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QValidator::State PythonQtShell_QSpinBox::validate(QString& input0, int& pos1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -9318,7 +9318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSpinBox::valueFromText(const QString& text0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -9348,7 +9348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSpinBox::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9477,7 +9477,7 @@ PythonQtShell_QSplashScreen::~PythonQtShell_QSplashScreen() { void PythonQtShell_QSplashScreen::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9496,7 +9496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9515,7 +9515,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9534,7 +9534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9553,7 +9553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9572,7 +9572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9591,7 +9591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9621,7 +9621,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9640,7 +9640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9659,7 +9659,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9678,7 +9678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::drawContents(QPainter* painter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawContents"); + static PyObject* name = PyUnicode_FromString("drawContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9697,7 +9697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9716,7 +9716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9735,7 +9735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9765,7 +9765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9795,7 +9795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9814,7 +9814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9844,7 +9844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9863,7 +9863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9893,7 +9893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9923,7 +9923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9942,7 +9942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9961,7 +9961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9980,7 +9980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplashScreen::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10010,7 +10010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10029,7 +10029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10048,7 +10048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10067,7 +10067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplashScreen::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10097,7 +10097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplashScreen::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10127,7 +10127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10146,7 +10146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10165,7 +10165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10184,7 +10184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10203,7 +10203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10222,7 +10222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplashScreen::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10252,7 +10252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplashScreen::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10282,7 +10282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10301,7 +10301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplashScreen::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10331,7 +10331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10350,7 +10350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplashScreen::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10380,7 +10380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10399,7 +10399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplashScreen::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10429,7 +10429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10448,7 +10448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10467,7 +10467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplashScreen::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10535,7 +10535,7 @@ PythonQtShell_QSplitter::~PythonQtShell_QSplitter() { void PythonQtShell_QSplitter::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10554,7 +10554,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10573,7 +10573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10592,7 +10592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10611,7 +10611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10630,7 +10630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSplitterHandle* PythonQtShell_QSplitter::createHandle() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createHandle"); + static PyObject* name = PyUnicode_FromString("createHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSplitterHandle*"}; @@ -10660,7 +10660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10679,7 +10679,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10709,7 +10709,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10728,7 +10728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10747,7 +10747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10766,7 +10766,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10785,7 +10785,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10804,7 +10804,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10834,7 +10834,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10864,7 +10864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10883,7 +10883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10913,7 +10913,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10932,7 +10932,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10962,7 +10962,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10992,7 +10992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11011,7 +11011,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11030,7 +11030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11049,7 +11049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplitter::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11079,7 +11079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11098,7 +11098,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11117,7 +11117,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11136,7 +11136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitter::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11166,7 +11166,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11185,7 +11185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11204,7 +11204,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11223,7 +11223,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11242,7 +11242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11261,7 +11261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitter::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11291,7 +11291,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplitter::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11321,7 +11321,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11340,7 +11340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplitter::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11370,7 +11370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11389,7 +11389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplitter::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11419,7 +11419,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11438,7 +11438,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11457,7 +11457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11476,7 +11476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitter::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11679,7 +11679,7 @@ PythonQtShell_QSplitterHandle::~PythonQtShell_QSplitterHandle() { void PythonQtShell_QSplitterHandle::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11698,7 +11698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11717,7 +11717,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11736,7 +11736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11755,7 +11755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11774,7 +11774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11793,7 +11793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11823,7 +11823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11842,7 +11842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11861,7 +11861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11880,7 +11880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11899,7 +11899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11918,7 +11918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11948,7 +11948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11978,7 +11978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11997,7 +11997,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12027,7 +12027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12046,7 +12046,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12076,7 +12076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12106,7 +12106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12125,7 +12125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12144,7 +12144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12163,7 +12163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSplitterHandle::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12193,7 +12193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12212,7 +12212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12231,7 +12231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12250,7 +12250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSplitterHandle::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12280,7 +12280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSplitterHandle::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12310,7 +12310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12329,7 +12329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12348,7 +12348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12367,7 +12367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12386,7 +12386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12405,7 +12405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSplitterHandle::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12435,7 +12435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSplitterHandle::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12465,7 +12465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12484,7 +12484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSplitterHandle::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12514,7 +12514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12533,7 +12533,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSplitterHandle::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12563,7 +12563,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12582,7 +12582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12601,7 +12601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12620,7 +12620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSplitterHandle::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12714,7 +12714,7 @@ PythonQtShell_QStackedLayout::~PythonQtShell_QStackedLayout() { void PythonQtShell_QStackedLayout::addItem(QLayoutItem* item0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -12733,7 +12733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::childEvent(QChildEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12752,7 +12752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizePolicy::ControlTypes PythonQtShell_QStackedLayout::controlTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -12782,7 +12782,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedLayout::count() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12812,7 +12812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12831,7 +12831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12861,7 +12861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12891,7 +12891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::Orientations PythonQtShell_QStackedLayout::expandingDirections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -12921,7 +12921,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStackedLayout::geometry() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -12951,7 +12951,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedLayout::indexOf(QWidget* arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -12981,7 +12981,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::invalidate() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13000,7 +13000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedLayout::isEmpty() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13030,7 +13030,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QStackedLayout::itemAt(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13060,7 +13060,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QStackedLayout::layout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -13090,7 +13090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedLayout::maximumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13120,7 +13120,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedLayout::minimumSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13150,7 +13150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::setGeometry(const QRect& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -13169,7 +13169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayoutItem* PythonQtShell_QStackedLayout::takeAt(int arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13199,7 +13199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedLayout::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13321,7 +13321,7 @@ PythonQtShell_QStackedWidget::~PythonQtShell_QStackedWidget() { void PythonQtShell_QStackedWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13340,7 +13340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13359,7 +13359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13378,7 +13378,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13397,7 +13397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13416,7 +13416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13435,7 +13435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13465,7 +13465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13484,7 +13484,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13503,7 +13503,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13522,7 +13522,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13541,7 +13541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13560,7 +13560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13590,7 +13590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13620,7 +13620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13639,7 +13639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13669,7 +13669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13688,7 +13688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13718,7 +13718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13748,7 +13748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13767,7 +13767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13786,7 +13786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13805,7 +13805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStackedWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13835,7 +13835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13854,7 +13854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13873,7 +13873,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13892,7 +13892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStackedWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13922,7 +13922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStackedWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13952,7 +13952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13971,7 +13971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13990,7 +13990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14009,7 +14009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14028,7 +14028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14047,7 +14047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStackedWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14077,7 +14077,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QStackedWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14107,7 +14107,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14126,7 +14126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QStackedWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14156,7 +14156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14175,7 +14175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QStackedWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14205,7 +14205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14224,7 +14224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14243,7 +14243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14262,7 +14262,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStackedWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14336,7 +14336,7 @@ PythonQtShell_QStandardItem::~PythonQtShell_QStandardItem() { QStandardItem* PythonQtShell_QStandardItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStandardItem*"}; @@ -14366,7 +14366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -14396,7 +14396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItem::__lt__(const QStandardItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QStandardItem&"}; @@ -14426,7 +14426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14445,7 +14445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::setData(const QVariant& value0, int role1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&" , "int"}; @@ -14464,7 +14464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14494,7 +14494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -14939,7 +14939,7 @@ PythonQtShell_QStandardItemModel::~PythonQtShell_QStandardItemModel() { QModelIndex PythonQtShell_QStandardItemModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -14969,7 +14969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14999,7 +14999,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -15029,7 +15029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15048,7 +15048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItemModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -15078,7 +15078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15097,7 +15097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItemModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -15127,7 +15127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -15157,7 +15157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15187,7 +15187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15217,7 +15217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -15236,7 +15236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QStandardItemModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -15266,7 +15266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::hasChildren(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -15296,7 +15296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStandardItemModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -15326,7 +15326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15356,7 +15356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15386,7 +15386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15416,7 +15416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QStandardItemModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -15446,7 +15446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QStandardItemModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -15476,7 +15476,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QStandardItemModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -15506,7 +15506,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QStandardItemModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -15536,7 +15536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15566,7 +15566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -15596,7 +15596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::parent(const QModelIndex& child0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -15626,7 +15626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15656,7 +15656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -15686,7 +15686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15705,7 +15705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QStandardItemModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -15735,7 +15735,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStandardItemModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -15765,7 +15765,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -15795,7 +15795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -15825,7 +15825,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -15855,7 +15855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStandardItemModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -15885,7 +15885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -15904,7 +15904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStandardItemModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -15934,7 +15934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStandardItemModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15964,7 +15964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStandardItemModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -15994,7 +15994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStandardItemModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16024,7 +16024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStandardItemModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16421,7 +16421,7 @@ PythonQtShell_QStatusBar::~PythonQtShell_QStatusBar() { void PythonQtShell_QStatusBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16440,7 +16440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16459,7 +16459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16478,7 +16478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16497,7 +16497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16516,7 +16516,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16535,7 +16535,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16565,7 +16565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16584,7 +16584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16603,7 +16603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16622,7 +16622,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16641,7 +16641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16660,7 +16660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16690,7 +16690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16720,7 +16720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16739,7 +16739,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16769,7 +16769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16788,7 +16788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16818,7 +16818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16848,7 +16848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16867,7 +16867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16886,7 +16886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16905,7 +16905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStatusBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16935,7 +16935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16954,7 +16954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16973,7 +16973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16992,7 +16992,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStatusBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -17022,7 +17022,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStatusBar::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17052,7 +17052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17071,7 +17071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17090,7 +17090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17109,7 +17109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -17128,7 +17128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -17147,7 +17147,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStatusBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -17177,7 +17177,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QStatusBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17207,7 +17207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17226,7 +17226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QStatusBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17256,7 +17256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17275,7 +17275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QStatusBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17305,7 +17305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17324,7 +17324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStatusBar::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17354,7 +17354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17373,7 +17373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17392,7 +17392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStatusBar::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17502,7 +17502,7 @@ PythonQtShell_QStringListModel::~PythonQtShell_QStringListModel() { QModelIndex PythonQtShell_QStringListModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -17532,7 +17532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -17562,7 +17562,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -17592,7 +17592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17611,7 +17611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17630,7 +17630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStringListModel::data(const QModelIndex& index0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -17660,7 +17660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -17690,7 +17690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17720,7 +17720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17750,7 +17750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -17769,7 +17769,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QStringListModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -17799,7 +17799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QStringListModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -17829,7 +17829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStringListModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -17859,7 +17859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17889,7 +17889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17919,7 +17919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QStringListModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -17949,7 +17949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QStringListModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -17979,7 +17979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QStringListModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -18009,7 +18009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QStringListModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -18039,7 +18039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -18069,7 +18069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -18099,7 +18099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -18129,7 +18129,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -18159,7 +18159,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18178,7 +18178,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QStringListModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -18208,7 +18208,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStringListModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -18238,7 +18238,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -18268,7 +18268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -18298,7 +18298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -18328,7 +18328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QStringListModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -18358,7 +18358,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -18377,7 +18377,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStringListModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -18407,7 +18407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStringListModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18437,7 +18437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStringListModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -18467,7 +18467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QStringListModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -18497,7 +18497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStringListModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp index a5ea4b92b..63e9ca85d 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp @@ -29,7 +29,7 @@ PythonQtShell_QStyle::~PythonQtShell_QStyle() { void PythonQtShell_QStyle::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -48,7 +48,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -67,7 +67,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QPainter* p2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -86,7 +86,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawControl(QStyle::ControlElement element0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawItemPixmap(QPainter* painter0, const QRect& rect1, int alignment2, const QPixmap& pixmap3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -124,7 +124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawItemText(QPainter* painter0, const QRect& rect1, int flags2, const QPalette& pal3, bool enabled4, const QString& text5, QPalette::ColorRole textRole6) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -143,7 +143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::drawPrimitive(QStyle::PrimitiveElement pe0, const QStyleOption* opt1, QPainter* p2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -162,7 +162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyle::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -192,7 +192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyle::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -222,7 +222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QStyle::generatedIconPixmap(QIcon::Mode iconMode0, const QPixmap& pixmap1, const QStyleOption* opt2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -252,7 +252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle::SubControl PythonQtShell_QStyle::hitTestComplexControl(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, const QPoint& pt2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -282,7 +282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::itemPixmapRect(const QRect& r0, int flags1, const QPixmap& pixmap2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -312,7 +312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::itemTextRect(const QFontMetrics& fm0, const QRect& r1, int flags2, bool enabled3, const QString& text4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemTextRect"); + static PyObject* name = PyUnicode_FromString("itemTextRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QFontMetrics&" , "const QRect&" , "int" , "bool" , "const QString&"}; @@ -342,7 +342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::layoutSpacing(QSizePolicy::ControlType control10, QSizePolicy::ControlType control21, Qt::Orientation orientation2, const QStyleOption* option3, const QWidget* widget4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -372,7 +372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::pixelMetric(QStyle::PixelMetric metric0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -402,7 +402,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QApplication* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -421,7 +421,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QPalette& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -440,7 +440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::polish(QWidget* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -459,7 +459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStyle::sizeFromContents(QStyle::ContentsType ct0, const QStyleOption* opt1, const QSize& contentsSize2, const QWidget* w3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -489,7 +489,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIcon PythonQtShell_QStyle::standardIcon(QStyle::StandardPixmap standardIcon0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -519,7 +519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPalette PythonQtShell_QStyle::standardPalette() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -549,7 +549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPixmap PythonQtShell_QStyle::standardPixmap(QStyle::StandardPixmap standardPixmap0, const QStyleOption* opt1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QStyle::styleHint(QStyle::StyleHint stylehint0, const QStyleOption* opt1, const QWidget* widget2, QStyleHintReturn* returnData3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -609,7 +609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::subControlRect(QStyle::ComplexControl cc0, const QStyleOptionComplex* opt1, QStyle::SubControl sc2, const QWidget* widget3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -639,7 +639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QStyle::subElementRect(QStyle::SubElement subElement0, const QStyleOption* option1, const QWidget* widget2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -669,7 +669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::unpolish(QApplication* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -707,7 +707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyle::unpolish(QWidget* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp index 823b1ce52..d4f510e39 100644 --- a/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp @@ -300,7 +300,7 @@ PythonQtShell_QStylePlugin::~PythonQtShell_QStylePlugin() { void PythonQtShell_QStylePlugin::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -319,7 +319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyle* PythonQtShell_QStylePlugin::create(const QString& key0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle*" , "const QString&"}; @@ -349,7 +349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStylePlugin::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -368,7 +368,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStylePlugin::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -398,7 +398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStylePlugin::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -428,7 +428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStylePlugin::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -462,7 +462,7 @@ PythonQtShell_QStyledItemDelegate::~PythonQtShell_QStyledItemDelegate() { void PythonQtShell_QStyledItemDelegate::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QStyledItemDelegate::createEditor(QWidget* parent0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -511,7 +511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -530,7 +530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::destroyEditor(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -549,7 +549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QStyledItemDelegate::displayText(const QVariant& value0, const QLocale& locale1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("displayText"); + static PyObject* name = PyUnicode_FromString("displayText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QVariant&" , "const QLocale&"}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::editorEvent(QEvent* event0, QAbstractItemModel* model1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -609,7 +609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -639,7 +639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::eventFilter(QObject* object0, QEvent* event1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -669,7 +669,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QStyledItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemView* view1, const QStyleOptionViewItem& option2, const QModelIndex& index3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -699,7 +699,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::initStyleOption(QStyleOptionViewItem* option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOptionViewItem*" , "const QModelIndex&"}; @@ -718,7 +718,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::paint(QPainter* painter0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -737,7 +737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QStyledItemDelegate::paintingRoles() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -767,7 +767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::setEditorData(QWidget* editor0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -786,7 +786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::setModelData(QWidget* editor0, QAbstractItemModel* model1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QStyledItemDelegate::sizeHint(const QStyleOptionViewItem& option0, const QModelIndex& index1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -854,7 +854,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QStyledItemDelegate::updateEditorGeometry(QWidget* editor0, const QStyleOptionViewItem& option1, const QModelIndex& index2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -943,7 +943,7 @@ PythonQtShell_QSurface::~PythonQtShell_QSurface() { QSurfaceFormat PythonQtShell_QSurface::format() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -973,7 +973,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSurface::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1003,7 +1003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPlatformSurface* PythonQtShell_QSurface::surfaceHandle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceHandle"); + static PyObject* name = PyUnicode_FromString("surfaceHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPlatformSurface*"}; @@ -1033,7 +1033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSurface::SurfaceType PythonQtShell_QSurface::surfaceType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -1329,7 +1329,7 @@ PythonQtShell_QSwipeGesture::~PythonQtShell_QSwipeGesture() { void PythonQtShell_QSwipeGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1348,7 +1348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSwipeGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1367,7 +1367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSwipeGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1397,7 +1397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSwipeGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1427,7 +1427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSwipeGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1476,7 +1476,7 @@ PythonQtShell_QSyntaxHighlighter::~PythonQtShell_QSyntaxHighlighter() { void PythonQtShell_QSyntaxHighlighter::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1495,7 +1495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1514,7 +1514,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSyntaxHighlighter::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1544,7 +1544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSyntaxHighlighter::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1574,7 +1574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::highlightBlock(const QString& text0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("highlightBlock"); + static PyObject* name = PyUnicode_FromString("highlightBlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1593,7 +1593,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSyntaxHighlighter::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1691,7 +1691,7 @@ PythonQtShell_QSystemTrayIcon::~PythonQtShell_QSystemTrayIcon() { void PythonQtShell_QSystemTrayIcon::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1710,7 +1710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSystemTrayIcon::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1729,7 +1729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSystemTrayIcon::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1759,7 +1759,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSystemTrayIcon::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1789,7 +1789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSystemTrayIcon::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1877,7 +1877,7 @@ PythonQtShell_QTabBar::~PythonQtShell_QTabBar() { void PythonQtShell_QTabBar::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1896,7 +1896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1915,7 +1915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1934,7 +1934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1953,7 +1953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1972,7 +1972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1991,7 +1991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2021,7 +2021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2040,7 +2040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2059,7 +2059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2078,7 +2078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2097,7 +2097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2116,7 +2116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2146,7 +2146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2176,7 +2176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2195,7 +2195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2225,7 +2225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2244,7 +2244,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2274,7 +2274,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2304,7 +2304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2323,7 +2323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2342,7 +2342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2361,7 +2361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTabBar::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2391,7 +2391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2410,7 +2410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2429,7 +2429,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2448,7 +2448,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabBar::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2478,7 +2478,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTabBar::minimumTabSizeHint(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("minimumTabSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumTabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2508,7 +2508,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2527,7 +2527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2546,7 +2546,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2565,7 +2565,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2584,7 +2584,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2603,7 +2603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabBar::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2633,7 +2633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTabBar::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2663,7 +2663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2682,7 +2682,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTabBar::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2712,7 +2712,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2731,7 +2731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTabBar::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2761,7 +2761,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2780,7 +2780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2799,7 +2799,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabLayoutChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabLayoutChange"); + static PyObject* name = PyUnicode_FromString("tabLayoutChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2818,7 +2818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2837,7 +2837,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTabBar::tabSizeHint(int index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabSizeHint"); + static PyObject* name = PyUnicode_FromString("tabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2867,7 +2867,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2886,7 +2886,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2905,7 +2905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabBar::wheelEvent(QWheelEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3284,7 +3284,7 @@ PythonQtShell_QTabWidget::~PythonQtShell_QTabWidget() { void PythonQtShell_QTabWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3303,7 +3303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3322,7 +3322,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3341,7 +3341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3360,7 +3360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3379,7 +3379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3398,7 +3398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3428,7 +3428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3447,7 +3447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3466,7 +3466,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3485,7 +3485,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3504,7 +3504,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3523,7 +3523,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3553,7 +3553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3583,7 +3583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3602,7 +3602,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3632,7 +3632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3651,7 +3651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3681,7 +3681,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::heightForWidth(int width0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3711,7 +3711,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3730,7 +3730,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3749,7 +3749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3768,7 +3768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTabWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3798,7 +3798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3817,7 +3817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3836,7 +3836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3855,7 +3855,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTabWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3885,7 +3885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3904,7 +3904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3923,7 +3923,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3942,7 +3942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3961,7 +3961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3980,7 +3980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTabWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4010,7 +4010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTabWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4040,7 +4040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4059,7 +4059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTabWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4089,7 +4089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4108,7 +4108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTabWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4138,7 +4138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4157,7 +4157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabInserted(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4176,7 +4176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabRemoved(int index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4195,7 +4195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4214,7 +4214,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4233,7 +4233,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTabWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4542,7 +4542,7 @@ PythonQtShell_QTableView::~PythonQtShell_QTableView() { void PythonQtShell_QTableView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4561,7 +4561,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4580,7 +4580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4599,7 +4599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -4618,7 +4618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4637,7 +4637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4656,7 +4656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4675,7 +4675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -4694,7 +4694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4713,7 +4713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4732,7 +4732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4762,7 +4762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4781,7 +4781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4800,7 +4800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4819,7 +4819,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4838,7 +4838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4857,7 +4857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4887,7 +4887,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4906,7 +4906,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4925,7 +4925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4955,7 +4955,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4985,7 +4985,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5004,7 +5004,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5034,7 +5034,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5053,7 +5053,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5083,7 +5083,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5113,7 +5113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5132,7 +5132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5162,7 +5162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5181,7 +5181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5200,7 +5200,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTableView::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -5230,7 +5230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5249,7 +5249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5268,7 +5268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5298,7 +5298,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5328,7 +5328,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5347,7 +5347,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5366,7 +5366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5385,7 +5385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5404,7 +5404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5434,7 +5434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5453,7 +5453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5472,7 +5472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5491,7 +5491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5510,7 +5510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5529,7 +5529,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5559,7 +5559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTableView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5589,7 +5589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5608,7 +5608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTableView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5638,7 +5638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5657,7 +5657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5676,7 +5676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5695,7 +5695,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5714,7 +5714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5733,7 +5733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5752,7 +5752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5771,7 +5771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTableView::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5801,7 +5801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5820,7 +5820,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTableView::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5850,7 +5850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setModel(QAbstractItemModel* model0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5869,7 +5869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5888,7 +5888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5907,7 +5907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5926,7 +5926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5945,7 +5945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTableView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5975,7 +5975,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5994,7 +5994,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6024,7 +6024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6054,7 +6054,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -6073,7 +6073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6092,7 +6092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6111,7 +6111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6130,7 +6130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6149,7 +6149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6168,7 +6168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableView::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6198,7 +6198,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6217,7 +6217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6236,7 +6236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTableView::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -6266,7 +6266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableView::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6296,7 +6296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTableView::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6326,7 +6326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTableView::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -6356,7 +6356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTableView::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6386,7 +6386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6695,7 +6695,7 @@ PythonQtShell_QTableWidget::~PythonQtShell_QTableWidget() { void PythonQtShell_QTableWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6714,7 +6714,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6733,7 +6733,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6752,7 +6752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::closeEditor(QWidget* editor0, QAbstractItemDelegate::EndEditHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -6771,7 +6771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6790,7 +6790,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::commitData(QWidget* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6809,7 +6809,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6828,7 +6828,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::currentChanged(const QModelIndex& current0, const QModelIndex& previous1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6847,7 +6847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6866,7 +6866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dataChanged(const QModelIndex& topLeft0, const QModelIndex& bottomRight1, const QVector& roles2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -6885,7 +6885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6915,7 +6915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::doItemsLayout() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6934,7 +6934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragEnterEvent(QDragEnterEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6953,7 +6953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragLeaveEvent(QDragLeaveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6972,7 +6972,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dragMoveEvent(QDragMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6991,7 +6991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::dropEvent(QDropEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7010,7 +7010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::dropMimeData(int row0, int column1, const QMimeData* data2, Qt::DropAction action3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -7040,7 +7040,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::edit(const QModelIndex& index0, QAbstractItemView::EditTrigger trigger1, QEvent* event2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -7070,7 +7070,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::editorDestroyed(QObject* editor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7089,7 +7089,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7108,7 +7108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::event(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7138,7 +7138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7168,7 +7168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::focusInEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7187,7 +7187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7217,7 +7217,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::focusOutEvent(QFocusEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7236,7 +7236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7266,7 +7266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7296,7 +7296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7315,7 +7315,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::horizontalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7345,7 +7345,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::horizontalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7364,7 +7364,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::horizontalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7383,7 +7383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QTableWidget::indexAt(const QPoint& p0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -7413,7 +7413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7432,7 +7432,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::inputMethodEvent(QInputMethodEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7451,7 +7451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableWidget::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7481,7 +7481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::isIndexHidden(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7511,7 +7511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyPressEvent(QKeyEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7530,7 +7530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7549,7 +7549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::keyboardSearch(const QString& search0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7568,7 +7568,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7587,7 +7587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7617,7 +7617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QTableWidget::mimeData(const QList items0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -7647,7 +7647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QTableWidget::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7677,7 +7677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseDoubleClickEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7696,7 +7696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseMoveEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7715,7 +7715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mousePressEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7734,7 +7734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::mouseReleaseEvent(QMouseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7753,7 +7753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7772,7 +7772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7802,7 +7802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QTableWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7832,7 +7832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::paintEvent(QPaintEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7851,7 +7851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QTableWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7881,7 +7881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7900,7 +7900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7919,7 +7919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::rowsAboutToBeRemoved(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7938,7 +7938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::rowsInserted(const QModelIndex& parent0, int start1, int end2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7957,7 +7957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::scrollContentsBy(int dx0, int dy1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7976,7 +7976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::scrollTo(const QModelIndex& index0, QAbstractItemView::ScrollHint hint1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -7995,7 +7995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::selectAll() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8014,7 +8014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QTableWidget::selectedIndexes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -8044,7 +8044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::selectionChanged(const QItemSelection& selected0, const QItemSelection& deselected1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -8063,7 +8063,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QItemSelectionModel::SelectionFlags PythonQtShell_QTableWidget::selectionCommand(const QModelIndex& index0, const QEvent* event1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -8093,7 +8093,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setRootIndex(const QModelIndex& index0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -8112,7 +8112,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setSelection(const QRect& rect0, QItemSelectionModel::SelectionFlags command1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -8131,7 +8131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setSelectionModel(QItemSelectionModel* selectionModel0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -8150,7 +8150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::setupViewport(QWidget* viewport0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8169,7 +8169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QTableWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8199,7 +8199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8218,7 +8218,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::sizeHintForColumn(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8248,7 +8248,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::sizeHintForRow(int row0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8278,7 +8278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::startDrag(Qt::DropActions supportedActions0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -8297,7 +8297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QTableWidget::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8327,7 +8327,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8346,7 +8346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8365,7 +8365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateEditorData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8384,7 +8384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateEditorGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8403,7 +8403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::updateGeometries() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8422,7 +8422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QTableWidget::verticalOffset() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8452,7 +8452,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::verticalScrollbarAction(int action0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8471,7 +8471,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::verticalScrollbarValueChanged(int value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8490,7 +8490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStyleOptionViewItem PythonQtShell_QTableWidget::viewOptions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -8520,7 +8520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidget::viewportEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8550,7 +8550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QTableWidget::viewportSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8580,7 +8580,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRect PythonQtShell_QTableWidget::visualRect(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -8610,7 +8610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QRegion PythonQtShell_QTableWidget::visualRegionForSelection(const QItemSelection& selection0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -8640,7 +8640,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8923,7 +8923,7 @@ PythonQtShell_QTableWidgetItem::~PythonQtShell_QTableWidgetItem() { QTableWidgetItem* PythonQtShell_QTableWidgetItem::clone() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTableWidgetItem*"}; @@ -8953,7 +8953,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTableWidgetItem::data(int role0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -8983,7 +8983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTableWidgetItem::__lt__(const QTableWidgetItem& other0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("__lt__"); + static PyObject* name = PyUnicode_FromString("__lt__"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QTableWidgetItem&"}; @@ -9013,7 +9013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::read(QDataStream& in0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9032,7 +9032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::setData(int role0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -9051,7 +9051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTableWidgetItem::write(QDataStream& out0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9426,7 +9426,7 @@ PythonQtShell_QTapAndHoldGesture::~PythonQtShell_QTapAndHoldGesture() { void PythonQtShell_QTapAndHoldGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9445,7 +9445,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapAndHoldGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9464,7 +9464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapAndHoldGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9494,7 +9494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapAndHoldGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9524,7 +9524,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapAndHoldGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9573,7 +9573,7 @@ PythonQtShell_QTapGesture::~PythonQtShell_QTapGesture() { void PythonQtShell_QTapGesture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9592,7 +9592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapGesture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9611,7 +9611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapGesture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9641,7 +9641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTapGesture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9671,7 +9671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTapGesture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp b/generated_cpp_54/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp index ce93a0ffc..5825f03ea 100644 --- a/generated_cpp_54/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +++ b/generated_cpp_54/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp @@ -53,7 +53,7 @@ PythonQtShell_QBitmap::~PythonQtShell_QBitmap() { int PythonQtShell_QBitmap::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -83,7 +83,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QBitmap::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -113,7 +113,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QBitmap::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1409,7 +1409,7 @@ PythonQtShell_QImage::~PythonQtShell_QImage() { int PythonQtShell_QImage::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1439,7 +1439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QImage::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QImage::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1488,7 +1488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QImage::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1518,7 +1518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QImage::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1548,7 +1548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QImage::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2732,7 +2732,7 @@ PythonQtShell_QPixmap::~PythonQtShell_QPixmap() { int PythonQtShell_QPixmap::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2762,7 +2762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QPixmap::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2781,7 +2781,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QPixmap::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2811,7 +2811,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QPixmap::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2841,7 +2841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QPixmap::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2871,7 +2871,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QPixmap::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp b/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp index a8086023b..50fbbdf32 100644 --- a/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +++ b/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp @@ -78,7 +78,7 @@ PythonQtShell_QAbstractVideoBuffer::~PythonQtShell_QAbstractVideoBuffer() { QVariant PythonQtShell_QAbstractVideoBuffer::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -108,7 +108,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { uchar* PythonQtShell_QAbstractVideoBuffer::map(QAbstractVideoBuffer::MapMode mode0, int* numBytes1, int* bytesPerLine2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("map"); + static PyObject* name = PyUnicode_FromString("map"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"uchar*" , "QAbstractVideoBuffer::MapMode" , "int*" , "int*"}; @@ -138,7 +138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAbstractVideoBuffer::MapMode PythonQtShell_QAbstractVideoBuffer::mapMode() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mapMode"); + static PyObject* name = PyUnicode_FromString("mapMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoBuffer::MapMode"}; @@ -168,7 +168,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoBuffer::release() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -187,7 +187,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoBuffer::unmap() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unmap"); + static PyObject* name = PyUnicode_FromString("unmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -246,7 +246,7 @@ PythonQtShell_QAbstractVideoSurface::~PythonQtShell_QAbstractVideoSurface() { void PythonQtShell_QAbstractVideoSurface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -265,7 +265,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -284,7 +284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -314,7 +314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -344,7 +344,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::isFormatSupported(const QVideoSurfaceFormat& format0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVideoSurfaceFormat PythonQtShell_QAbstractVideoSurface::nearestFormat(const QVideoSurfaceFormat& format0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nearestFormat"); + static PyObject* name = PyUnicode_FromString("nearestFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoSurfaceFormat" , "const QVideoSurfaceFormat&"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::present(const QVideoFrame& frame0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("present"); + static PyObject* name = PyUnicode_FromString("present"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoFrame&"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractVideoSurface::start(const QVideoSurfaceFormat& format0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -464,7 +464,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::stop() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QAbstractVideoSurface::supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedPixelFormats"); + static PyObject* name = PyUnicode_FromString("supportedPixelFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAbstractVideoBuffer::HandleType"}; @@ -513,7 +513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractVideoSurface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -677,7 +677,7 @@ PythonQtShell_QAudioDecoder::~PythonQtShell_QAudioDecoder() { QMultimedia::AvailabilityStatus PythonQtShell_QAudioDecoder::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -707,7 +707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -737,7 +737,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -756,7 +756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioDecoder::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QAudioDecoder::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioDecoder::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -1360,7 +1360,7 @@ PythonQtShell_QAudioInput::~PythonQtShell_QAudioInput() { void PythonQtShell_QAudioInput::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1379,7 +1379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioInput::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1398,7 +1398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioInput::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1428,7 +1428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioInput::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1458,7 +1458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioInput::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1586,7 +1586,7 @@ PythonQtShell_QAudioOutput::~PythonQtShell_QAudioOutput() { void PythonQtShell_QAudioOutput::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1605,7 +1605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioOutput::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1624,7 +1624,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioOutput::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1654,7 +1654,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioOutput::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1684,7 +1684,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioOutput::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1822,7 +1822,7 @@ PythonQtShell_QAudioProbe::~PythonQtShell_QAudioProbe() { void PythonQtShell_QAudioProbe::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1841,7 +1841,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioProbe::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioProbe::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1890,7 +1890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioProbe::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1920,7 +1920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioProbe::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1964,7 +1964,7 @@ PythonQtShell_QAudioRecorder::~PythonQtShell_QAudioRecorder() { void PythonQtShell_QAudioRecorder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1983,7 +1983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioRecorder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2002,7 +2002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2032,7 +2032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2062,7 +2062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QAudioRecorder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2092,7 +2092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAudioRecorder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2122,7 +2122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAudioRecorder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2171,7 +2171,7 @@ PythonQtShell_QCamera::~PythonQtShell_QCamera() { QMultimedia::AvailabilityStatus PythonQtShell_QCamera::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -2201,7 +2201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -2231,7 +2231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2250,7 +2250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2269,7 +2269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2299,7 +2299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2329,7 +2329,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCamera::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2359,7 +2359,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QCamera::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -2389,7 +2389,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2408,7 +2408,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCamera::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -2772,7 +2772,7 @@ PythonQtShell_QCameraImageCapture::~PythonQtShell_QCameraImageCapture() { void PythonQtShell_QCameraImageCapture::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2791,7 +2791,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraImageCapture::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2810,7 +2810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2840,7 +2840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2870,7 +2870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QCameraImageCapture::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2900,7 +2900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraImageCapture::setMediaObject(QMediaObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2930,7 +2930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraImageCapture::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3192,7 +3192,7 @@ PythonQtShell_QCameraViewfinder::~PythonQtShell_QCameraViewfinder() { void PythonQtShell_QCameraViewfinder::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3211,7 +3211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3230,7 +3230,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3249,7 +3249,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3268,7 +3268,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3287,7 +3287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3306,7 +3306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3336,7 +3336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3355,7 +3355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3374,7 +3374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3393,7 +3393,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3412,7 +3412,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3431,7 +3431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3461,7 +3461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3491,7 +3491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3510,7 +3510,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3540,7 +3540,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3559,7 +3559,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3589,7 +3589,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3619,7 +3619,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3638,7 +3638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3657,7 +3657,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3676,7 +3676,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QCameraViewfinder::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3706,7 +3706,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3725,7 +3725,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3744,7 +3744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3763,7 +3763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QCameraViewfinder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -3793,7 +3793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QCameraViewfinder::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3823,7 +3823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QCameraViewfinder::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3853,7 +3853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3872,7 +3872,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3891,7 +3891,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3910,7 +3910,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3929,7 +3929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::moveEvent(QMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3948,7 +3948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3978,7 +3978,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QCameraViewfinder::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4008,7 +4008,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4027,7 +4027,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QCameraViewfinder::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4057,7 +4057,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4076,7 +4076,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QCameraViewfinder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4106,7 +4106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QCameraViewfinder::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4136,7 +4136,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4155,7 +4155,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4174,7 +4174,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4193,7 +4193,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QCameraViewfinder::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4232,7 +4232,7 @@ PythonQtShell_QGraphicsVideoItem::~PythonQtShell_QGraphicsVideoItem() { void PythonQtShell_QGraphicsVideoItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4251,7 +4251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsVideoItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4270,7 +4270,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4300,7 +4300,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4330,7 +4330,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QGraphicsVideoItem::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4360,7 +4360,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsVideoItem::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4390,7 +4390,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsVideoItem::timerEvent(QTimerEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4569,7 +4569,7 @@ PythonQtShell_QMediaBindableInterface::~PythonQtShell_QMediaBindableInterface() QMediaObject* PythonQtShell_QMediaBindableInterface::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4599,7 +4599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaBindableInterface::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4724,7 +4724,7 @@ PythonQtShell_QMediaControl::~PythonQtShell_QMediaControl() { void PythonQtShell_QMediaControl::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4743,7 +4743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaControl::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4762,7 +4762,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaControl::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4792,7 +4792,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaControl::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4822,7 +4822,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaControl::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4851,7 +4851,7 @@ PythonQtShell_QMediaObject::~PythonQtShell_QMediaObject() { QMultimedia::AvailabilityStatus PythonQtShell_QMediaObject::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -4881,7 +4881,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -4911,7 +4911,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4930,7 +4930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4949,7 +4949,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4979,7 +4979,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5009,7 +5009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaObject::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5039,7 +5039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QMediaObject::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -5069,7 +5069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5088,7 +5088,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaObject::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5177,7 +5177,7 @@ PythonQtShell_QMediaPlayer::~PythonQtShell_QMediaPlayer() { QMultimedia::AvailabilityStatus PythonQtShell_QMediaPlayer::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -5207,7 +5207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -5237,7 +5237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5256,7 +5256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5275,7 +5275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5305,7 +5305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5335,7 +5335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlayer::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5365,7 +5365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QMediaPlayer::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -5395,7 +5395,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5414,7 +5414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlayer::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -5573,7 +5573,7 @@ PythonQtShell_QMediaPlaylist::~PythonQtShell_QMediaPlaylist() { void PythonQtShell_QMediaPlaylist::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlaylist::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5641,7 +5641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5671,7 +5671,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QMediaPlaylist::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5701,7 +5701,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaPlaylist::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5731,7 +5731,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaPlaylist::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5890,7 +5890,7 @@ PythonQtShell_QMediaRecorder::~PythonQtShell_QMediaRecorder() { void PythonQtShell_QMediaRecorder::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5909,7 +5909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaRecorder::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5928,7 +5928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5958,7 +5958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5988,7 +5988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QMediaRecorder::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -6018,7 +6018,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaRecorder::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -6048,7 +6048,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaRecorder::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp b/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp index 7c3968c74..1f36be0a4 100644 --- a/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +++ b/generated_cpp_54/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp @@ -58,7 +58,7 @@ PythonQtShell_QMediaService::~PythonQtShell_QMediaService() { void PythonQtShell_QMediaService::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -77,7 +77,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -96,7 +96,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaService::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -126,7 +126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QMediaService::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -156,7 +156,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::releaseControl(QMediaControl* control0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("releaseControl"); + static PyObject* name = PyUnicode_FromString("releaseControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaControl*"}; @@ -175,7 +175,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaControl* PythonQtShell_QMediaService::requestControl(const char* name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("requestControl"); + static PyObject* name = PyUnicode_FromString("requestControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaControl*" , "const char*"}; @@ -205,7 +205,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QMediaService::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -430,7 +430,7 @@ PythonQtShell_QRadioData::~PythonQtShell_QRadioData() { void PythonQtShell_QRadioData::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -449,7 +449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioData::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -468,7 +468,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -498,7 +498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -528,7 +528,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QRadioData::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -558,7 +558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioData::setMediaObject(QMediaObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -588,7 +588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioData::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -672,7 +672,7 @@ PythonQtShell_QRadioTuner::~PythonQtShell_QRadioTuner() { QMultimedia::AvailabilityStatus PythonQtShell_QRadioTuner::availability() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -702,7 +702,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::bind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -732,7 +732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -751,7 +751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -800,7 +800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -830,7 +830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QRadioTuner::isAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -860,7 +860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaService* PythonQtShell_QRadioTuner::service() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -890,7 +890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -909,7 +909,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QRadioTuner::unbind(QObject* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -1028,7 +1028,7 @@ PythonQtShell_QSoundEffect::~PythonQtShell_QSoundEffect() { void PythonQtShell_QSoundEffect::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSoundEffect::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1066,7 +1066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSoundEffect::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1096,7 +1096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSoundEffect::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1126,7 +1126,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSoundEffect::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1539,7 +1539,7 @@ PythonQtShell_QVideoProbe::~PythonQtShell_QVideoProbe() { void PythonQtShell_QVideoProbe::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1558,7 +1558,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoProbe::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1577,7 +1577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoProbe::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1607,7 +1607,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoProbe::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1637,7 +1637,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoProbe::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1832,7 +1832,7 @@ PythonQtShell_QVideoWidget::~PythonQtShell_QVideoWidget() { void PythonQtShell_QVideoWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1851,7 +1851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1870,7 +1870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1889,7 +1889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1908,7 +1908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1927,7 +1927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1946,7 +1946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1976,7 +1976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1995,7 +1995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2014,7 +2014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2033,7 +2033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2052,7 +2052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2071,7 +2071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::event(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2101,7 +2101,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2131,7 +2131,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2150,7 +2150,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2180,7 +2180,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2199,7 +2199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2229,7 +2229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2259,7 +2259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2278,7 +2278,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2297,7 +2297,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2316,7 +2316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QVideoWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2346,7 +2346,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2365,7 +2365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2384,7 +2384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2403,7 +2403,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMediaObject* PythonQtShell_QVideoWidget::mediaObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2433,7 +2433,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QVideoWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2463,7 +2463,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QVideoWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2493,7 +2493,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2512,7 +2512,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2531,7 +2531,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2550,7 +2550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2569,7 +2569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::moveEvent(QMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2588,7 +2588,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2618,7 +2618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QVideoWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2648,7 +2648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2667,7 +2667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QVideoWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2697,7 +2697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2716,7 +2716,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QVideoWidget::setMediaObject(QMediaObject* object0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -2746,7 +2746,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QVideoWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2776,7 +2776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2795,7 +2795,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2814,7 +2814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QVideoWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network0.cpp b/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network0.cpp index 14fca0e08..040e207d5 100644 --- a/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +++ b/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network0.cpp @@ -47,7 +47,7 @@ PythonQtShell_QAbstractNetworkCache::~PythonQtShell_QAbstractNetworkCache() { qint64 PythonQtShell_QAbstractNetworkCache::cacheSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -77,7 +77,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -96,7 +96,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -115,7 +115,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -134,7 +134,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QAbstractNetworkCache::data(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -164,7 +164,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -194,7 +194,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -224,7 +224,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::insert(QIODevice* device0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -243,7 +243,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkCacheMetaData PythonQtShell_QAbstractNetworkCache::metaData(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -273,7 +273,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QAbstractNetworkCache::prepare(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -303,7 +303,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractNetworkCache::remove(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -333,7 +333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -352,7 +352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -421,7 +421,7 @@ PythonQtShell_QAbstractSocket::~PythonQtShell_QAbstractSocket() { bool PythonQtShell_QAbstractSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -451,7 +451,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -511,7 +511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -541,7 +541,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -579,7 +579,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -598,7 +598,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -617,7 +617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -636,7 +636,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -655,7 +655,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -685,7 +685,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -715,7 +715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -745,7 +745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -775,7 +775,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -805,7 +805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -835,7 +835,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -865,7 +865,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -895,7 +895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -944,7 +944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -963,7 +963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -982,7 +982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1012,7 +1012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1042,7 +1042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1061,7 +1061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1091,7 +1091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1121,7 +1121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1151,7 +1151,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1181,7 +1181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QAbstractSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1733,7 +1733,7 @@ PythonQtShell_QHttpMultiPart::~PythonQtShell_QHttpMultiPart() { void PythonQtShell_QHttpMultiPart::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1752,7 +1752,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHttpMultiPart::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1771,7 +1771,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHttpMultiPart::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1801,7 +1801,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QHttpMultiPart::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QHttpMultiPart::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1944,7 +1944,7 @@ PythonQtShell_QLocalServer::~PythonQtShell_QLocalServer() { void PythonQtShell_QLocalServer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1963,7 +1963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1982,7 +1982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2012,7 +2012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2042,7 +2042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalServer::hasPendingConnections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2072,7 +2072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::incomingConnection(quintptr socketDescriptor0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "quintptr"}; @@ -2091,7 +2091,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLocalSocket* PythonQtShell_QLocalServer::nextPendingConnection() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLocalSocket*"}; @@ -2121,7 +2121,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalServer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2230,7 +2230,7 @@ PythonQtShell_QLocalSocket::~PythonQtShell_QLocalSocket() { bool PythonQtShell_QLocalSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2260,7 +2260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2290,7 +2290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2320,7 +2320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2350,7 +2350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2369,7 +2369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2388,7 +2388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2407,7 +2407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2437,7 +2437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2467,7 +2467,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2497,7 +2497,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::open(QIODevice::OpenMode openMode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2527,7 +2527,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2557,7 +2557,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::readData(char* arg__1, qint64 arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2587,7 +2587,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2617,7 +2617,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2647,7 +2647,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2677,7 +2677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2707,7 +2707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QLocalSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2726,7 +2726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2756,7 +2756,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QLocalSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2786,7 +2786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QLocalSocket::writeData(const char* arg__1, qint64 arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2951,7 +2951,7 @@ PythonQtShell_QNetworkAccessManager::~PythonQtShell_QNetworkAccessManager() { void PythonQtShell_QNetworkAccessManager::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2970,7 +2970,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkReply* PythonQtShell_QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation op0, const QNetworkRequest& request1, QIODevice* outgoingData2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createRequest"); + static PyObject* name = PyUnicode_FromString("createRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkReply*" , "QNetworkAccessManager::Operation" , "const QNetworkRequest&" , "QIODevice*"}; @@ -3000,7 +3000,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkAccessManager::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3019,7 +3019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkAccessManager::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3049,7 +3049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkAccessManager::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3079,7 +3079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkAccessManager::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3498,7 +3498,7 @@ PythonQtShell_QNetworkConfigurationManager::~PythonQtShell_QNetworkConfiguration void PythonQtShell_QNetworkConfigurationManager::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3517,7 +3517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkConfigurationManager::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkConfigurationManager::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkConfigurationManager::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3596,7 +3596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkConfigurationManager::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3777,7 +3777,7 @@ PythonQtShell_QNetworkCookieJar::~PythonQtShell_QNetworkCookieJar() { void PythonQtShell_QNetworkCookieJar::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3796,7 +3796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QNetworkCookieJar::cookiesForUrl(const QUrl& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cookiesForUrl"); + static PyObject* name = PyUnicode_FromString("cookiesForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QUrl&"}; @@ -3826,7 +3826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkCookieJar::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3845,7 +3845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::deleteCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteCookie"); + static PyObject* name = PyUnicode_FromString("deleteCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -3875,7 +3875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3905,7 +3905,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3935,7 +3935,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::insertCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertCookie"); + static PyObject* name = PyUnicode_FromString("insertCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -3965,7 +3965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::setCookiesFromUrl(const QList& cookieList0, const QUrl& url1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setCookiesFromUrl"); + static PyObject* name = PyUnicode_FromString("setCookiesFromUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QList&" , "const QUrl&"}; @@ -3995,7 +3995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkCookieJar::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4014,7 +4014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::updateCookie(const QNetworkCookie& cookie0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateCookie"); + static PyObject* name = PyUnicode_FromString("updateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4044,7 +4044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkCookieJar::validateCookie(const QNetworkCookie& cookie0, const QUrl& url1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("validateCookie"); + static PyObject* name = PyUnicode_FromString("validateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&" , "const QUrl&"}; @@ -4124,7 +4124,7 @@ PythonQtShell_QNetworkDiskCache::~PythonQtShell_QNetworkDiskCache() { qint64 PythonQtShell_QNetworkDiskCache::cacheSize() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4154,7 +4154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4173,7 +4173,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4192,7 +4192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4211,7 +4211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QNetworkDiskCache::data(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -4241,7 +4241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4271,7 +4271,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4301,7 +4301,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkDiskCache::expire() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("expire"); + static PyObject* name = PyUnicode_FromString("expire"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4331,7 +4331,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::insert(QIODevice* device0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -4350,7 +4350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QNetworkCacheMetaData PythonQtShell_QNetworkDiskCache::metaData(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -4380,7 +4380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QIODevice* PythonQtShell_QNetworkDiskCache::prepare(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -4410,7 +4410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkDiskCache::remove(const QUrl& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -4440,7 +4440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4459,7 +4459,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData& metaData0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -4781,7 +4781,7 @@ PythonQtShell_QNetworkProxyFactory::~PythonQtShell_QNetworkProxyFactory() { QList PythonQtShell_QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryProxy"); + static PyObject* name = PyUnicode_FromString("queryProxy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QNetworkProxyQuery&"}; @@ -4965,7 +4965,7 @@ PythonQtShell_QNetworkReply::~PythonQtShell_QNetworkReply() { void PythonQtShell_QNetworkReply::abort() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4984,7 +4984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5014,7 +5014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5044,7 +5044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5074,7 +5074,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5104,7 +5104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5123,7 +5123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5142,7 +5142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5161,7 +5161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5191,7 +5191,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5221,7 +5221,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::ignoreSslErrors() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignoreSslErrors"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrors"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5240,7 +5240,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::ignoreSslErrorsImplementation(const QList& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignoreSslErrorsImplementation"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrorsImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -5259,7 +5259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5289,7 +5289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -5319,7 +5319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5349,7 +5349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5379,7 +5379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -5409,7 +5409,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5439,7 +5439,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -5469,7 +5469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -5488,7 +5488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::setSslConfigurationImplementation(const QSslConfiguration& arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("setSslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSslConfiguration&"}; @@ -5507,7 +5507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5537,7 +5537,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::sslConfigurationImplementation(QSslConfiguration& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("sslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSslConfiguration&"}; @@ -5556,7 +5556,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkReply::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5575,7 +5575,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5605,7 +5605,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkReply::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5635,7 +5635,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QNetworkReply::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -5925,7 +5925,7 @@ PythonQtShell_QNetworkSession::~PythonQtShell_QNetworkSession() { void PythonQtShell_QNetworkSession::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5944,7 +5944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::connectNotify(const QMetaMethod& signal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -5963,7 +5963,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5982,7 +5982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::disconnectNotify(const QMetaMethod& signal0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -6001,7 +6001,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkSession::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6031,7 +6031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QNetworkSession::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6061,7 +6061,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QNetworkSession::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network1.cpp b/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network1.cpp index 831d5b4a1..cc2fda74d 100644 --- a/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +++ b/generated_cpp_54/com_trolltech_qt_network/com_trolltech_qt_network1.cpp @@ -122,7 +122,7 @@ PythonQtShell_QSslSocket::~PythonQtShell_QSslSocket() { bool PythonQtShell_QSslSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -152,7 +152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -261,7 +261,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -280,7 +280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode openMode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -318,7 +318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -337,7 +337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -367,7 +367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -397,7 +397,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -427,7 +427,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -457,7 +457,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -487,7 +487,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -517,7 +517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -547,7 +547,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -577,7 +577,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -596,7 +596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -626,7 +626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -645,7 +645,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -664,7 +664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -694,7 +694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSslSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -724,7 +724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSslSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -743,7 +743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -773,7 +773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -803,7 +803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -833,7 +833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSslSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -863,7 +863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QSslSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1264,7 +1264,7 @@ PythonQtShell_QTcpServer::~PythonQtShell_QTcpServer() { void PythonQtShell_QTcpServer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1283,7 +1283,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpServer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1302,7 +1302,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1332,7 +1332,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1362,7 +1362,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpServer::hasPendingConnections() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1392,7 +1392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QTcpSocket* PythonQtShell_QTcpServer::nextPendingConnection() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTcpSocket*"}; @@ -1422,7 +1422,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpServer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1536,7 +1536,7 @@ PythonQtShell_QTcpSocket::~PythonQtShell_QTcpSocket() { bool PythonQtShell_QTcpSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1566,7 +1566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1596,7 +1596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1626,7 +1626,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1656,7 +1656,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1675,7 +1675,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1694,7 +1694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -1713,7 +1713,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -1732,7 +1732,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1751,7 +1751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1770,7 +1770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1800,7 +1800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1830,7 +1830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1890,7 +1890,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1920,7 +1920,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1950,7 +1950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1980,7 +1980,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2010,7 +2010,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2029,7 +2029,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2059,7 +2059,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2078,7 +2078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2097,7 +2097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2127,7 +2127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QTcpSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2157,7 +2157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QTcpSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2176,7 +2176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2206,7 +2206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2236,7 +2236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2266,7 +2266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QTcpSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2296,7 +2296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QTcpSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2336,7 +2336,7 @@ PythonQtShell_QUdpSocket::~PythonQtShell_QUdpSocket() { bool PythonQtShell_QUdpSocket::atEnd() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2366,7 +2366,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::bytesAvailable() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2396,7 +2396,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::bytesToWrite() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2426,7 +2426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::canReadLine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2456,7 +2456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2475,7 +2475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2494,7 +2494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::connectToHost(const QHostAddress& address0, unsigned short port1, QIODevice::OpenMode mode2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -2513,7 +2513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::connectToHost(const QString& hostName0, unsigned short port1, QIODevice::OpenMode mode2, QAbstractSocket::NetworkLayerProtocol protocol3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -2532,7 +2532,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2551,7 +2551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::disconnectFromHost() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2570,7 +2570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2600,7 +2600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2630,7 +2630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::isSequential() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2660,7 +2660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::open(QIODevice::OpenMode mode0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2690,7 +2690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::pos() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2720,7 +2720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::readData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2750,7 +2750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::readLineData(char* data0, qint64 maxlen1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2780,7 +2780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2810,7 +2810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::resume() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2829,7 +2829,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::seek(qint64 pos0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2859,7 +2859,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::setReadBufferSize(qint64 size0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -2878,7 +2878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::setSocketOption(QAbstractSocket::SocketOption option0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -2897,7 +2897,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::size() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2927,7 +2927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QUdpSocket::socketOption(QAbstractSocket::SocketOption option0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -2957,7 +2957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUdpSocket::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2976,7 +2976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForBytesWritten(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3006,7 +3006,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForConnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3036,7 +3036,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForDisconnected(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3066,7 +3066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUdpSocket::waitForReadyRead(int msecs0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3096,7 +3096,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { qint64 PythonQtShell_QUdpSocket::writeData(const char* data0, qint64 len1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_54/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp b/generated_cpp_54/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp index 92192afaa..485e2f155 100644 --- a/generated_cpp_54/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +++ b/generated_cpp_54/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp @@ -228,7 +228,7 @@ PythonQtShell_QGLContext::~PythonQtShell_QGLContext() { bool PythonQtShell_QGLContext::chooseContext(const QGLContext* shareContext0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("chooseContext"); + static PyObject* name = PyUnicode_FromString("chooseContext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -258,7 +258,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLContext::create(const QGLContext* shareContext0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -288,7 +288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::doneCurrent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("doneCurrent"); + static PyObject* name = PyUnicode_FromString("doneCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -307,7 +307,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::makeCurrent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("makeCurrent"); + static PyObject* name = PyUnicode_FromString("makeCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -326,7 +326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLContext::swapBuffers() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("swapBuffers"); + static PyObject* name = PyUnicode_FromString("swapBuffers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -845,7 +845,7 @@ PythonQtShell_QGLFramebufferObject::~PythonQtShell_QGLFramebufferObject() { int PythonQtShell_QGLFramebufferObject::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -875,7 +875,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLFramebufferObject::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -894,7 +894,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLFramebufferObject::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -924,7 +924,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLFramebufferObject::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -954,7 +954,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLFramebufferObject::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -984,7 +984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLFramebufferObject::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1714,7 +1714,7 @@ PythonQtShell_QGLPixelBuffer::~PythonQtShell_QGLPixelBuffer() { int PythonQtShell_QGLPixelBuffer::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1744,7 +1744,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLPixelBuffer::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1763,7 +1763,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLPixelBuffer::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLPixelBuffer::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1823,7 +1823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLPixelBuffer::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1853,7 +1853,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLPixelBuffer::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2007,7 +2007,7 @@ PythonQtShell_QGLShader::~PythonQtShell_QGLShader() { void PythonQtShell_QGLShader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2026,7 +2026,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2045,7 +2045,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2075,7 +2075,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2105,7 +2105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2188,7 +2188,7 @@ PythonQtShell_QGLShaderProgram::~PythonQtShell_QGLShaderProgram() { void PythonQtShell_QGLShaderProgram::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2207,7 +2207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShaderProgram::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2226,7 +2226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2256,7 +2256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2286,7 +2286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLShaderProgram::link() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2316,7 +2316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLShaderProgram::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2889,7 +2889,7 @@ PythonQtShell_QGLWidget::~PythonQtShell_QGLWidget() { void PythonQtShell_QGLWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2908,7 +2908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2927,7 +2927,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2946,7 +2946,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2965,7 +2965,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2984,7 +2984,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3003,7 +3003,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3033,7 +3033,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3052,7 +3052,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3071,7 +3071,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3090,7 +3090,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3109,7 +3109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3128,7 +3128,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3158,7 +3158,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3188,7 +3188,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3207,7 +3207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3237,7 +3237,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3256,7 +3256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::glDraw() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("glDraw"); + static PyObject* name = PyUnicode_FromString("glDraw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3275,7 +3275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::glInit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("glInit"); + static PyObject* name = PyUnicode_FromString("glInit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3294,7 +3294,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3324,7 +3324,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3354,7 +3354,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3373,7 +3373,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3392,7 +3392,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initializeGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3411,7 +3411,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::initializeOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initializeOverlayGL"); + static PyObject* name = PyUnicode_FromString("initializeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3430,7 +3430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3449,7 +3449,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGLWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3479,7 +3479,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3498,7 +3498,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3517,7 +3517,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3536,7 +3536,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGLWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3566,7 +3566,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGLWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3596,7 +3596,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3615,7 +3615,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3634,7 +3634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3653,7 +3653,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3672,7 +3672,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3691,7 +3691,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGLWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3721,7 +3721,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QGLWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3751,7 +3751,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3770,7 +3770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3789,7 +3789,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::paintOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintOverlayGL"); + static PyObject* name = PyUnicode_FromString("paintOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3808,7 +3808,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QGLWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3838,7 +3838,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3857,7 +3857,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeGL(int w0, int h1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3876,7 +3876,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::resizeOverlayGL(int w0, int h1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeOverlayGL"); + static PyObject* name = PyUnicode_FromString("resizeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3895,7 +3895,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QGLWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3925,7 +3925,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3944,7 +3944,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QGLWidget::sizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3974,7 +3974,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3993,7 +3993,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4012,7 +4012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::updateGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGL"); + static PyObject* name = PyUnicode_FromString("updateGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4031,7 +4031,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::updateOverlayGL() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateOverlayGL"); + static PyObject* name = PyUnicode_FromString("updateOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4050,7 +4050,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGLWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp b/generated_cpp_54/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp index 20b1362d0..88809b92a 100644 --- a/generated_cpp_54/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +++ b/generated_cpp_54/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp @@ -276,7 +276,7 @@ PythonQtShell_QSqlDriver::~PythonQtShell_QSqlDriver() { bool PythonQtShell_QSqlDriver::beginTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("beginTransaction"); + static PyObject* name = PyUnicode_FromString("beginTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -306,7 +306,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::cancelQuery() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("cancelQuery"); + static PyObject* name = PyUnicode_FromString("cancelQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -336,7 +336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -355,7 +355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::close() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -374,7 +374,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::commitTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("commitTransaction"); + static PyObject* name = PyUnicode_FromString("commitTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -404,7 +404,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlResult* PythonQtShell_QSqlDriver::createResult() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createResult"); + static PyObject* name = PyUnicode_FromString("createResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlResult*"}; @@ -434,7 +434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -453,7 +453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::escapeIdentifier(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("escapeIdentifier"); + static PyObject* name = PyUnicode_FromString("escapeIdentifier"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -483,7 +483,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -513,7 +513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -543,7 +543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::formatValue(const QSqlField& field0, bool trimStrings1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("formatValue"); + static PyObject* name = PyUnicode_FromString("formatValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QSqlField&" , "bool"}; @@ -573,7 +573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlDriver::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -603,7 +603,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::hasFeature(QSqlDriver::DriverFeature f0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QSqlDriver::DriverFeature"}; @@ -633,7 +633,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::isIdentifierEscaped(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isIdentifierEscaped"); + static PyObject* name = PyUnicode_FromString("isIdentifierEscaped"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -663,7 +663,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::isOpen() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isOpen"); + static PyObject* name = PyUnicode_FromString("isOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -693,7 +693,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::open(const QString& db0, const QString& user1, const QString& password2, const QString& host3, int port4, const QString& connOpts5) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "int" , "const QString&"}; @@ -723,7 +723,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlIndex PythonQtShell_QSqlDriver::primaryIndex(const QString& tableName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("primaryIndex"); + static PyObject* name = PyUnicode_FromString("primaryIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlIndex" , "const QString&"}; @@ -753,7 +753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlRecord PythonQtShell_QSqlDriver::record(const QString& tableName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord" , "const QString&"}; @@ -783,7 +783,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::rollbackTransaction() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rollbackTransaction"); + static PyObject* name = PyUnicode_FromString("rollbackTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -813,7 +813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setLastError(const QSqlError& e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -832,7 +832,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setOpen(bool o0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOpen"); + static PyObject* name = PyUnicode_FromString("setOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -851,7 +851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::setOpenError(bool e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setOpenError"); + static PyObject* name = PyUnicode_FromString("setOpenError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -870,7 +870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::sqlStatement(QSqlDriver::StatementType type0, const QString& tableName1, const QSqlRecord& rec2, bool preparedStatement3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sqlStatement"); + static PyObject* name = PyUnicode_FromString("sqlStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QSqlDriver::StatementType" , "const QString&" , "const QSqlRecord&" , "bool"}; @@ -900,7 +900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlDriver::stripDelimiters(const QString& identifier0, QSqlDriver::IdentifierType type1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stripDelimiters"); + static PyObject* name = PyUnicode_FromString("stripDelimiters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -930,7 +930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::subscribeToNotification(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subscribeToNotification"); + static PyObject* name = PyUnicode_FromString("subscribeToNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -960,7 +960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlDriver::subscribedToNotifications() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("subscribedToNotifications"); + static PyObject* name = PyUnicode_FromString("subscribedToNotifications"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -990,7 +990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlDriver::tables(QSql::TableType tableType0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tables"); + static PyObject* name = PyUnicode_FromString("tables"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QSql::TableType"}; @@ -1020,7 +1020,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlDriver::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1039,7 +1039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlDriver::unsubscribeFromNotification(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unsubscribeFromNotification"); + static PyObject* name = PyUnicode_FromString("unsubscribeFromNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1219,7 +1219,7 @@ PythonQtShell_QSqlDriverCreatorBase::~PythonQtShell_QSqlDriverCreatorBase() { QSqlDriver* PythonQtShell_QSqlDriverCreatorBase::createObject() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlDriver*"}; @@ -1770,7 +1770,7 @@ PythonQtShell_QSqlQueryModel::~PythonQtShell_QSqlQueryModel() { QModelIndex PythonQtShell_QSqlQueryModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1800,7 +1800,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1830,7 +1830,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1860,7 +1860,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1879,7 +1879,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1898,7 +1898,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlQueryModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1928,7 +1928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1947,7 +1947,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlQueryModel::data(const QModelIndex& item0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1977,7 +1977,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2007,7 +2007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2037,7 +2037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2067,7 +2067,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2086,7 +2086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlQueryModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2116,7 +2116,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlQueryModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2146,7 +2146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2176,7 +2176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2206,7 +2206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2236,7 +2236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2266,7 +2266,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlQueryModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2296,7 +2296,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlQueryModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2326,7 +2326,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlQueryModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2356,7 +2356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlQueryModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2386,7 +2386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2416,7 +2416,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2446,7 +2446,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2465,7 +2465,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2495,7 +2495,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2525,7 +2525,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2544,7 +2544,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlQueryModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2574,7 +2574,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlQueryModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2604,7 +2604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2634,7 +2634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2664,7 +2664,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2694,7 +2694,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlQueryModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2724,7 +2724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2743,7 +2743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlQueryModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2773,7 +2773,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlQueryModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2803,7 +2803,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2833,7 +2833,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2863,7 +2863,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlQueryModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3224,7 +3224,7 @@ PythonQtShell_QSqlRelationalTableModel::~PythonQtShell_QSqlRelationalTableModel( QModelIndex PythonQtShell_QSqlRelationalTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3254,7 +3254,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3284,7 +3284,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3314,7 +3314,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3333,7 +3333,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3352,7 +3352,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlRelationalTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3382,7 +3382,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3401,7 +3401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlRelationalTableModel::data(const QModelIndex& item0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3431,7 +3431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::deleteRowFromTable(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3461,7 +3461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3491,7 +3491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3521,7 +3521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3551,7 +3551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3570,7 +3570,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlRelationalTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3600,7 +3600,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlRelationalTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3630,7 +3630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3660,7 +3660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3690,7 +3690,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3720,7 +3720,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertRowIntoTable(const QSqlRecord& values0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -3750,7 +3750,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3780,7 +3780,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlRelationalTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3810,7 +3810,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlRelationalTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3840,7 +3840,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlRelationalTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3870,7 +3870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlRelationalTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3900,7 +3900,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3930,7 +3930,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3960,7 +3960,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlRelationalTableModel::orderByClause() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3990,7 +3990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4009,7 +4009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlTableModel* PythonQtShell_QSqlRelationalTableModel::relationModel(int column0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("relationModel"); + static PyObject* name = PyUnicode_FromString("relationModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlTableModel*" , "int"}; @@ -4039,7 +4039,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4069,7 +4069,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4099,7 +4099,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4118,7 +4118,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::revertRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4137,7 +4137,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlRelationalTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4167,7 +4167,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlRelationalTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4197,7 +4197,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::select() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4227,7 +4227,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::selectRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4257,7 +4257,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlRelationalTableModel::selectStatement() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4287,7 +4287,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setData(const QModelIndex& item0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4317,7 +4317,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -4336,7 +4336,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setFilter(const QString& filter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4355,7 +4355,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4385,7 +4385,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4415,7 +4415,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setRelation(int column0, const QSqlRelation& relation1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setRelation"); + static PyObject* name = PyUnicode_FromString("setRelation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QSqlRelation&"}; @@ -4434,7 +4434,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setSort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4453,7 +4453,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::setTable(const QString& tableName0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4472,7 +4472,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlRelationalTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4502,7 +4502,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4521,7 +4521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlRelationalTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4551,7 +4551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4581,7 +4581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4611,7 +4611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4641,7 +4641,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlRelationalTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4660,7 +4660,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlRelationalTableModel::updateRowInTable(int row0, const QSqlRecord& values1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; @@ -4775,7 +4775,7 @@ PythonQtShell_QSqlResult::~PythonQtShell_QSqlResult() { void PythonQtShell_QSqlResult::bindValue(const QString& placeholder0, const QVariant& val1, QSql::ParamType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&" , "QSql::ParamType"}; @@ -4794,7 +4794,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::bindValue(int pos0, const QVariant& val1, QSql::ParamType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&" , "QSql::ParamType"}; @@ -4813,7 +4813,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::data(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::detachFromResultSet() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("detachFromResultSet"); + static PyObject* name = PyUnicode_FromString("detachFromResultSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4862,7 +4862,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::exec() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4892,7 +4892,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::execBatch(bool arrayBind0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("execBatch"); + static PyObject* name = PyUnicode_FromString("execBatch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4922,7 +4922,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetch(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetch"); + static PyObject* name = PyUnicode_FromString("fetch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4952,7 +4952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchFirst() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchFirst"); + static PyObject* name = PyUnicode_FromString("fetchFirst"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4982,7 +4982,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchLast() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchLast"); + static PyObject* name = PyUnicode_FromString("fetchLast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5012,7 +5012,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchNext() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchNext"); + static PyObject* name = PyUnicode_FromString("fetchNext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5042,7 +5042,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::fetchPrevious() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchPrevious"); + static PyObject* name = PyUnicode_FromString("fetchPrevious"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5072,7 +5072,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::handle() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5102,7 +5102,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::isNull(int i0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isNull"); + static PyObject* name = PyUnicode_FromString("isNull"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5132,7 +5132,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlResult::lastInsertId() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lastInsertId"); + static PyObject* name = PyUnicode_FromString("lastInsertId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5162,7 +5162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::nextResult() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextResult"); + static PyObject* name = PyUnicode_FromString("nextResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5192,7 +5192,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlResult::numRowsAffected() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("numRowsAffected"); + static PyObject* name = PyUnicode_FromString("numRowsAffected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5222,7 +5222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::prepare(const QString& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5252,7 +5252,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSqlRecord PythonQtShell_QSqlResult::record() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord"}; @@ -5282,7 +5282,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::reset(const QString& sqlquery0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5312,7 +5312,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlResult::savePrepare(const QString& sqlquery0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("savePrepare"); + static PyObject* name = PyUnicode_FromString("savePrepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5342,7 +5342,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setActive(bool a0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5361,7 +5361,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setAt(int at0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setAt"); + static PyObject* name = PyUnicode_FromString("setAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5380,7 +5380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setForwardOnly(bool forward0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setForwardOnly"); + static PyObject* name = PyUnicode_FromString("setForwardOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5399,7 +5399,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setLastError(const QSqlError& e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -5418,7 +5418,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setNumericalPrecisionPolicy(QSql::NumericalPrecisionPolicy policy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setNumericalPrecisionPolicy"); + static PyObject* name = PyUnicode_FromString("setNumericalPrecisionPolicy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSql::NumericalPrecisionPolicy"}; @@ -5437,7 +5437,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setQuery(const QString& query0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setQuery"); + static PyObject* name = PyUnicode_FromString("setQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5456,7 +5456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::setSelect(bool s0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSelect"); + static PyObject* name = PyUnicode_FromString("setSelect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5475,7 +5475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlResult::size() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5505,7 +5505,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlResult::virtual_hook(int id0, void* data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -5784,7 +5784,7 @@ PythonQtShell_QSqlTableModel::~PythonQtShell_QSqlTableModel() { QModelIndex PythonQtShell_QSqlTableModel::buddy(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -5814,7 +5814,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::canDropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -5844,7 +5844,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::canFetchMore(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -5874,7 +5874,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5893,7 +5893,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::clear() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5912,7 +5912,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlTableModel::columnCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -5942,7 +5942,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5961,7 +5961,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlTableModel::data(const QModelIndex& idx0, int role1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -5991,7 +5991,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::deleteRowFromTable(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6021,7 +6021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::dropMimeData(const QMimeData* data0, Qt::DropAction action1, int row2, int column3, const QModelIndex& parent4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6051,7 +6051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6081,7 +6081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6111,7 +6111,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::fetchMore(const QModelIndex& parent0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6130,7 +6130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::ItemFlags PythonQtShell_QSqlTableModel::flags(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6160,7 +6160,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSqlTableModel::headerData(int section0, Qt::Orientation orientation1, int role2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6190,7 +6190,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::index(int row0, int column1, const QModelIndex& parent2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6220,7 +6220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::indexInQuery(const QModelIndex& item0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6250,7 +6250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6280,7 +6280,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertRowIntoTable(const QSqlRecord& values0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -6310,7 +6310,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::insertRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6340,7 +6340,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMap PythonQtShell_QSqlTableModel::itemData(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6370,7 +6370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QSqlTableModel::match(const QModelIndex& start0, int role1, const QVariant& value2, int hits3, Qt::MatchFlags flags4) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6400,7 +6400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QMimeData* PythonQtShell_QSqlTableModel::mimeData(const QList& indexes0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6430,7 +6430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QStringList PythonQtShell_QSqlTableModel::mimeTypes() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6460,7 +6460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::moveColumns(const QModelIndex& sourceParent0, int sourceColumn1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6490,7 +6490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::moveRows(const QModelIndex& sourceParent0, int sourceRow1, int count2, const QModelIndex& destinationParent3, int destinationChild4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6520,7 +6520,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlTableModel::orderByClause() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6550,7 +6550,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::queryChange() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6569,7 +6569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::removeColumns(int column0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6599,7 +6599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::removeRows(int row0, int count1, const QModelIndex& parent2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6629,7 +6629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::revert() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6648,7 +6648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::revertRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6667,7 +6667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QHash PythonQtShell_QSqlTableModel::roleNames() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -6697,7 +6697,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSqlTableModel::rowCount(const QModelIndex& parent0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6727,7 +6727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::select() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6757,7 +6757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::selectRow(int row0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6787,7 +6787,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSqlTableModel::selectStatement() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6817,7 +6817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setData(const QModelIndex& index0, const QVariant& value1, int role2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -6847,7 +6847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy strategy0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -6866,7 +6866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setFilter(const QString& filter0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6885,7 +6885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setHeaderData(int section0, Qt::Orientation orientation1, const QVariant& value2, int role3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -6915,7 +6915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::setItemData(const QModelIndex& index0, const QMap& roles1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -6945,7 +6945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setSort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -6964,7 +6964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::setTable(const QString& tableName0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -6983,7 +6983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QModelIndex PythonQtShell_QSqlTableModel::sibling(int row0, int column1, const QModelIndex& idx2) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7013,7 +7013,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::sort(int column0, Qt::SortOrder order1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7032,7 +7032,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSqlTableModel::span(const QModelIndex& index0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7062,7 +7062,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::submit() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7092,7 +7092,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlTableModel::supportedDragActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7122,7 +7122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::DropActions PythonQtShell_QSqlTableModel::supportedDropActions() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7152,7 +7152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSqlTableModel::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7171,7 +7171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSqlTableModel::updateRowInTable(int row0, const QSqlRecord& values1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; diff --git a/generated_cpp_54/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp b/generated_cpp_54/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp index c1d75b588..6206c1605 100644 --- a/generated_cpp_54/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +++ b/generated_cpp_54/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp @@ -56,7 +56,7 @@ PythonQtShell_QGraphicsSvgItem::~PythonQtShell_QGraphicsSvgItem() { QRectF PythonQtShell_QGraphicsSvgItem::boundingRect() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -86,7 +86,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -105,7 +105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -124,7 +124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsSvgItem::event(QEvent* ev0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -154,7 +154,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsSvgItem::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -184,7 +184,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::paint(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -203,7 +203,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsSvgItem::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -222,7 +222,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QGraphicsSvgItem::type() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -321,7 +321,7 @@ PythonQtShell_QSvgGenerator::~PythonQtShell_QSvgGenerator() { int PythonQtShell_QSvgGenerator::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -351,7 +351,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgGenerator::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -370,7 +370,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgGenerator::metric(QPaintDevice::PaintDeviceMetric metric0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -400,7 +400,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSvgGenerator::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -430,7 +430,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSvgGenerator::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -460,7 +460,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSvgGenerator::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -590,7 +590,7 @@ PythonQtShell_QSvgRenderer::~PythonQtShell_QSvgRenderer() { void PythonQtShell_QSvgRenderer::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -609,7 +609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgRenderer::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -628,7 +628,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgRenderer::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -658,7 +658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgRenderer::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -688,7 +688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgRenderer::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -804,7 +804,7 @@ PythonQtShell_QSvgWidget::~PythonQtShell_QSvgWidget() { void PythonQtShell_QSvgWidget::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -823,7 +823,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -842,7 +842,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -861,7 +861,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -880,7 +880,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -899,7 +899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -918,7 +918,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -948,7 +948,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -967,7 +967,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -986,7 +986,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1005,7 +1005,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1024,7 +1024,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1043,7 +1043,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1073,7 +1073,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1103,7 +1103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1122,7 +1122,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1152,7 +1152,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1171,7 +1171,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1201,7 +1201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1231,7 +1231,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1250,7 +1250,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1269,7 +1269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1288,7 +1288,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSvgWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1318,7 +1318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1337,7 +1337,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1356,7 +1356,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1375,7 +1375,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QSvgWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1405,7 +1405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QSvgWidget::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1435,7 +1435,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1454,7 +1454,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1473,7 +1473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1492,7 +1492,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1511,7 +1511,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1530,7 +1530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QSvgWidget::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1560,7 +1560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QSvgWidget::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1590,7 +1590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::paintEvent(QPaintEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1609,7 +1609,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QSvgWidget::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1639,7 +1639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1658,7 +1658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QSvgWidget::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1688,7 +1688,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1707,7 +1707,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1726,7 +1726,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1745,7 +1745,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QSvgWidget::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp b/generated_cpp_54/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp index dc615eb2a..72e8861ae 100644 --- a/generated_cpp_54/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +++ b/generated_cpp_54/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp @@ -24,7 +24,7 @@ PythonQtShell_QUiLoader::~PythonQtShell_QUiLoader() { void PythonQtShell_QUiLoader::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -43,7 +43,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QAction* PythonQtShell_QUiLoader::createAction(QObject* parent0, const QString& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createAction"); + static PyObject* name = PyUnicode_FromString("createAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAction*" , "QObject*" , "const QString&"}; @@ -73,7 +73,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QActionGroup* PythonQtShell_QUiLoader::createActionGroup(QObject* parent0, const QString& name1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createActionGroup"); + static PyObject* name = PyUnicode_FromString("createActionGroup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QActionGroup*" , "QObject*" , "const QString&"}; @@ -103,7 +103,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QLayout* PythonQtShell_QUiLoader::createLayout(const QString& className0, QObject* parent1, const QString& name2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createLayout"); + static PyObject* name = PyUnicode_FromString("createLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*" , "const QString&" , "QObject*" , "const QString&"}; @@ -133,7 +133,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWidget* PythonQtShell_QUiLoader::createWidget(const QString& className0, QWidget* parent1, const QString& name2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "const QString&" , "QWidget*" , "const QString&"}; @@ -163,7 +163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUiLoader::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUiLoader::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -212,7 +212,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QUiLoader::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -242,7 +242,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QUiLoader::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp b/generated_cpp_54/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp index a8e8a7e72..965c278b2 100644 --- a/generated_cpp_54/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +++ b/generated_cpp_54/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp @@ -68,7 +68,7 @@ PythonQtShell_QGraphicsWebView::~PythonQtShell_QGraphicsWebView() { void PythonQtShell_QGraphicsWebView::changeEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -87,7 +87,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -106,7 +106,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -125,7 +125,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -144,7 +144,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -163,7 +163,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -182,7 +182,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -201,7 +201,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -220,7 +220,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -239,7 +239,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -269,7 +269,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -299,7 +299,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -318,7 +318,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -348,7 +348,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -367,7 +367,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::getContentsMargins(qreal* left0, qreal* top1, qreal* right2, qreal* bottom3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -386,7 +386,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::grabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -405,7 +405,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::grabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -424,7 +424,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -443,7 +443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -462,7 +462,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -481,7 +481,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::initStyleOption(QStyleOption* option0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -500,7 +500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -519,7 +519,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery query0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -549,7 +549,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::itemChange(QGraphicsItem::GraphicsItemChange change0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -582,7 +582,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -601,7 +601,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -620,7 +620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -639,7 +639,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -658,7 +658,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -677,7 +677,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -696,7 +696,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::moveEvent(QGraphicsSceneMoveEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -715,7 +715,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::paint(QPainter* arg__1, const QStyleOptionGraphicsItem* options1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -734,7 +734,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::paintWindowFrame(QPainter* painter0, const QStyleOptionGraphicsItem* option1, QWidget* widget2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -753,7 +753,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::polishEvent() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -772,7 +772,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QGraphicsWebView::propertyChange(const QString& propertyName0, const QVariant& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -802,7 +802,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::resizeEvent(QGraphicsSceneResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -821,7 +821,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::sceneEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -851,7 +851,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::setGeometry(const QRectF& rect0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -870,7 +870,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -889,7 +889,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSizeF PythonQtShell_QGraphicsWebView::sizeHint(Qt::SizeHint which0, const QSizeF& constraint1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -919,7 +919,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -938,7 +938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::ungrabKeyboardEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -957,7 +957,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::ungrabMouseEvent(QEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -976,7 +976,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::updateGeometry() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -995,7 +995,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1014,7 +1014,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QGraphicsWebView::windowFrameEvent(QEvent* e0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1044,7 +1044,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { Qt::WindowFrameSection PythonQtShell_QGraphicsWebView::windowFrameSectionAt(const QPointF& pos0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2108,7 +2108,7 @@ PythonQtShell_QWebHistoryInterface::~PythonQtShell_QWebHistoryInterface() { void PythonQtShell_QWebHistoryInterface::addHistoryEntry(const QString& url0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("addHistoryEntry"); + static PyObject* name = PyUnicode_FromString("addHistoryEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2127,7 +2127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2146,7 +2146,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2165,7 +2165,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2195,7 +2195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2225,7 +2225,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebHistoryInterface::historyContains(const QString& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("historyContains"); + static PyObject* name = PyUnicode_FromString("historyContains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2255,7 +2255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebHistoryInterface::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2450,7 +2450,7 @@ PythonQtShell_QWebInspector::~PythonQtShell_QWebInspector() { void PythonQtShell_QWebInspector::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2469,7 +2469,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2488,7 +2488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2507,7 +2507,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::closeEvent(QCloseEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2526,7 +2526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2545,7 +2545,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2564,7 +2564,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2594,7 +2594,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2613,7 +2613,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2632,7 +2632,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2651,7 +2651,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2670,7 +2670,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2689,7 +2689,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2719,7 +2719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2749,7 +2749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2768,7 +2768,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2798,7 +2798,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2817,7 +2817,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2847,7 +2847,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2877,7 +2877,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::hideEvent(QHideEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2896,7 +2896,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2915,7 +2915,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2934,7 +2934,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWebInspector::inputMethodQuery(Qt::InputMethodQuery arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2964,7 +2964,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2983,7 +2983,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3002,7 +3002,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3021,7 +3021,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebInspector::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3051,7 +3051,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWebInspector::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3081,7 +3081,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3100,7 +3100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3119,7 +3119,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3138,7 +3138,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3157,7 +3157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3176,7 +3176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebInspector::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3206,7 +3206,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWebInspector::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3236,7 +3236,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3255,7 +3255,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWebInspector::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3285,7 +3285,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::resizeEvent(QResizeEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3304,7 +3304,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWebInspector::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3334,7 +3334,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::showEvent(QShowEvent* event0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3353,7 +3353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3372,7 +3372,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3391,7 +3391,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebInspector::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3460,7 +3460,7 @@ PythonQtShell_QWebPage::~PythonQtShell_QWebPage() { bool PythonQtShell_QWebPage::acceptNavigationRequest(QWebFrame* frame0, const QNetworkRequest& request1, QWebPage::NavigationType type2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("acceptNavigationRequest"); + static PyObject* name = PyUnicode_FromString("acceptNavigationRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QNetworkRequest&" , "QWebPage::NavigationType"}; @@ -3490,7 +3490,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3509,7 +3509,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QWebPage::chooseFile(QWebFrame* originatingFrame0, const QString& oldFile1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("chooseFile"); + static PyObject* name = PyUnicode_FromString("chooseFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QWebFrame*" , "const QString&"}; @@ -3539,7 +3539,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWebPage::createPlugin(const QString& classid0, const QUrl& url1, const QStringList& paramNames2, const QStringList& paramValues3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createPlugin"); + static PyObject* name = PyUnicode_FromString("createPlugin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -3569,7 +3569,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWebPage* PythonQtShell_QWebPage::createWindow(QWebPage::WebWindowType type0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebPage*" , "QWebPage::WebWindowType"}; @@ -3599,7 +3599,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3618,7 +3618,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3648,7 +3648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3678,7 +3678,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::extension(QWebPage::Extension extension0, const QWebPage::ExtensionOption* option1, QWebPage::ExtensionReturn* output2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension" , "const QWebPage::ExtensionOption*" , "QWebPage::ExtensionReturn*"}; @@ -3708,7 +3708,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::javaScriptAlert(QWebFrame* originatingFrame0, const QString& msg1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptAlert"); + static PyObject* name = PyUnicode_FromString("javaScriptAlert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebFrame*" , "const QString&"}; @@ -3727,7 +3727,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::javaScriptConfirm(QWebFrame* originatingFrame0, const QString& msg1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptConfirm"); + static PyObject* name = PyUnicode_FromString("javaScriptConfirm"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&"}; @@ -3757,7 +3757,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::javaScriptConsoleMessage(const QString& message0, int lineNumber1, const QString& sourceID2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptConsoleMessage"); + static PyObject* name = PyUnicode_FromString("javaScriptConsoleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "int" , "const QString&"}; @@ -3776,7 +3776,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::javaScriptPrompt(QWebFrame* originatingFrame0, const QString& msg1, const QString& defaultValue2, QString* result3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("javaScriptPrompt"); + static PyObject* name = PyUnicode_FromString("javaScriptPrompt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&" , "const QString&" , "QString*"}; @@ -3806,7 +3806,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::shouldInterruptJavaScript() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("shouldInterruptJavaScript"); + static PyObject* name = PyUnicode_FromString("shouldInterruptJavaScript"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3836,7 +3836,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPage::supportsExtension(QWebPage::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension"}; @@ -3866,7 +3866,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3885,7 +3885,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPage::triggerAction(QWebPage::WebAction action0, bool checked1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("triggerAction"); + static PyObject* name = PyUnicode_FromString("triggerAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebPage::WebAction" , "bool"}; @@ -3904,7 +3904,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QWebPage::userAgentForUrl(const QUrl& url0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("userAgentForUrl"); + static PyObject* name = PyUnicode_FromString("userAgentForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QUrl&"}; @@ -4289,7 +4289,7 @@ PythonQtShell_QWebPluginFactory::~PythonQtShell_QWebPluginFactory() { void PythonQtShell_QWebPluginFactory::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4308,7 +4308,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QObject* PythonQtShell_QWebPluginFactory::create(const QString& mimeType0, const QUrl& arg__2, const QStringList& argumentNames2, const QStringList& argumentValues3) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -4338,7 +4338,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4357,7 +4357,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4387,7 +4387,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4417,7 +4417,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::extension(QWebPluginFactory::Extension extension0, const QWebPluginFactory::ExtensionOption* option1, QWebPluginFactory::ExtensionReturn* output2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension" , "const QWebPluginFactory::ExtensionOption*" , "QWebPluginFactory::ExtensionReturn*"}; @@ -4447,7 +4447,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QList PythonQtShell_QWebPluginFactory::plugins() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("plugins"); + static PyObject* name = PyUnicode_FromString("plugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4477,7 +4477,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::refreshPlugins() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("refreshPlugins"); + static PyObject* name = PyUnicode_FromString("refreshPlugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4496,7 +4496,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebPluginFactory::supportsExtension(QWebPluginFactory::Extension extension0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension"}; @@ -4526,7 +4526,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebPluginFactory::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4912,7 +4912,7 @@ PythonQtShell_QWebView::~PythonQtShell_QWebView() { void PythonQtShell_QWebView::actionEvent(QActionEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4931,7 +4931,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::changeEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4950,7 +4950,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4969,7 +4969,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::closeEvent(QCloseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4988,7 +4988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::contextMenuEvent(QContextMenuEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5007,7 +5007,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QWebView* PythonQtShell_QWebView::createWindow(QWebPage::WebWindowType type0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebView*" , "QWebPage::WebWindowType"}; @@ -5037,7 +5037,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5056,7 +5056,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::devType() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5086,7 +5086,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragEnterEvent(QDragEnterEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5105,7 +5105,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragLeaveEvent(QDragLeaveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5124,7 +5124,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dragMoveEvent(QDragMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5143,7 +5143,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::dropEvent(QDropEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5162,7 +5162,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::enterEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5181,7 +5181,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5211,7 +5211,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5241,7 +5241,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::focusInEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5260,7 +5260,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::focusNextPrevChild(bool next0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5290,7 +5290,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::focusOutEvent(QFocusEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5309,7 +5309,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::hasHeightForWidth() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5339,7 +5339,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::heightForWidth(int arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5369,7 +5369,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::hideEvent(QHideEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5388,7 +5388,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::initPainter(QPainter* painter0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5407,7 +5407,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::inputMethodEvent(QInputMethodEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5426,7 +5426,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QWebView::inputMethodQuery(Qt::InputMethodQuery property0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5456,7 +5456,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::keyPressEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5475,7 +5475,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::keyReleaseEvent(QKeyEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5494,7 +5494,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::leaveEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5513,7 +5513,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QWebView::metric(QPaintDevice::PaintDeviceMetric arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5543,7 +5543,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QSize PythonQtShell_QWebView::minimumSizeHint() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5573,7 +5573,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseDoubleClickEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5592,7 +5592,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseMoveEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5611,7 +5611,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mousePressEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5630,7 +5630,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::mouseReleaseEvent(QMouseEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5649,7 +5649,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::moveEvent(QMoveEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5668,7 +5668,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QWebView::nativeEvent(const QByteArray& eventType0, void* message1, long* result2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5698,7 +5698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintEngine* PythonQtShell_QWebView::paintEngine() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5728,7 +5728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::paintEvent(QPaintEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5747,7 +5747,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPaintDevice* PythonQtShell_QWebView::redirected(QPoint* offset0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5777,7 +5777,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::resizeEvent(QResizeEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5796,7 +5796,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QPainter* PythonQtShell_QWebView::sharedPainter() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5826,7 +5826,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::showEvent(QShowEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5845,7 +5845,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::tabletEvent(QTabletEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5864,7 +5864,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5883,7 +5883,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QWebView::wheelEvent(QWheelEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_54/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp b/generated_cpp_54/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp index 35c6945c1..5c2346b77 100644 --- a/generated_cpp_54/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +++ b/generated_cpp_54/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp @@ -1155,7 +1155,7 @@ PythonQtShell_QXmlContentHandler::~PythonQtShell_QXmlContentHandler() { bool PythonQtShell_QXmlContentHandler::characters(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1185,7 +1185,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1215,7 +1215,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1245,7 +1245,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1275,7 +1275,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlContentHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1305,7 +1305,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1335,7 +1335,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& target0, const QString& data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1365,7 +1365,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -1384,7 +1384,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1414,7 +1414,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1444,7 +1444,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2, const QXmlAttributes& atts3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -1474,7 +1474,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefix0, const QString& uri1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1574,7 +1574,7 @@ PythonQtShell_QXmlDTDHandler::~PythonQtShell_QXmlDTDHandler() { QString PythonQtShell_QXmlDTDHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1604,7 +1604,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1634,7 +1634,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2, const QString& notationName3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1689,7 +1689,7 @@ PythonQtShell_QXmlDeclHandler::~PythonQtShell_QXmlDeclHandler() { bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName0, const QString& aName1, const QString& type2, const QString& valueDefault3, const QString& value4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1719,7 +1719,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlDeclHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1749,7 +1749,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1779,7 +1779,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1839,7 +1839,7 @@ PythonQtShell_QXmlDefaultHandler::~PythonQtShell_QXmlDefaultHandler() { bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName0, const QString& aName1, const QString& type2, const QString& valueDefault3, const QString& value4) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1899,7 +1899,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1929,7 +1929,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1959,7 +1959,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endDTD() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1989,7 +1989,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2019,7 +2019,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2049,7 +2049,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2079,7 +2079,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2109,7 +2109,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2139,7 +2139,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlDefaultHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2169,7 +2169,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2199,7 +2199,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2229,7 +2229,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2259,7 +2259,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2289,7 +2289,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2319,7 +2319,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& target0, const QString& data1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2349,7 +2349,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId0, const QString& systemId1, QXmlInputSource*& ret2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2379,7 +2379,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -2398,7 +2398,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2428,7 +2428,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2458,7 +2458,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2488,7 +2488,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2518,7 +2518,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceURI0, const QString& localName1, const QString& qName2, const QXmlAttributes& atts3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -2548,7 +2548,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2578,7 +2578,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefix0, const QString& uri1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2608,7 +2608,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name0, const QString& publicId1, const QString& systemId2, const QString& notationName3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -2638,7 +2638,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2818,7 +2818,7 @@ PythonQtShell_QXmlEntityResolver::~PythonQtShell_QXmlEntityResolver() { QString PythonQtShell_QXmlEntityResolver::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2848,7 +2848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId0, const QString& systemId1, QXmlInputSource*& ret2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2898,7 +2898,7 @@ PythonQtShell_QXmlErrorHandler::~PythonQtShell_QXmlErrorHandler() { bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2928,7 +2928,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlErrorHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2958,7 +2958,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2988,7 +2988,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& exception0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3048,7 +3048,7 @@ PythonQtShell_QXmlInputSource::~PythonQtShell_QXmlInputSource() { QString PythonQtShell_QXmlInputSource::data() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3078,7 +3078,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::fetchData() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fetchData"); + static PyObject* name = PyUnicode_FromString("fetchData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3097,7 +3097,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data0, bool beginning1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("fromRawData"); + static PyObject* name = PyUnicode_FromString("fromRawData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"}; @@ -3127,7 +3127,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QChar PythonQtShell_QXmlInputSource::next() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("next"); + static PyObject* name = PyUnicode_FromString("next"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QChar"}; @@ -3157,7 +3157,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::reset() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3176,7 +3176,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QByteArray&"}; @@ -3195,7 +3195,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlInputSource::setData(const QString& dat0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3263,7 +3263,7 @@ PythonQtShell_QXmlLexicalHandler::~PythonQtShell_QXmlLexicalHandler() { bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3293,7 +3293,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3323,7 +3323,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endDTD() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3353,7 +3353,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3383,7 +3383,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QXmlLexicalHandler::errorString() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3413,7 +3413,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startCDATA() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3443,7 +3443,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name0, const QString& publicId1, const QString& systemId2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -3473,7 +3473,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3553,7 +3553,7 @@ PythonQtShell_QXmlLocator::~PythonQtShell_QXmlLocator() { int PythonQtShell_QXmlLocator::columnNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("columnNumber"); + static PyObject* name = PyUnicode_FromString("columnNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3583,7 +3583,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { int PythonQtShell_QXmlLocator::lineNumber() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lineNumber"); + static PyObject* name = PyUnicode_FromString("lineNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3668,7 +3668,7 @@ PythonQtShell_QXmlReader::~PythonQtShell_QXmlReader() { QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -3698,7 +3698,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -3728,7 +3728,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -3758,7 +3758,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -3788,7 +3788,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -3818,7 +3818,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::feature(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -3848,7 +3848,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::hasFeature(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3878,7 +3878,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::hasProperty(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3908,7 +3908,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -3938,7 +3938,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -3968,7 +3968,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -3998,7 +3998,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void* PythonQtShell_QXmlReader::property(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4028,7 +4028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4047,7 +4047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4066,7 +4066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4085,7 +4085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4104,7 +4104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4123,7 +4123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setFeature(const QString& name0, bool value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4142,7 +4142,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4161,7 +4161,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlReader::setProperty(const QString& name0, void* value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; @@ -4290,7 +4290,7 @@ PythonQtShell_QXmlSimpleReader::~PythonQtShell_QXmlSimpleReader() { QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -4320,7 +4320,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -4350,7 +4350,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -4380,7 +4380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -4410,7 +4410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -4440,7 +4440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::feature(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -4470,7 +4470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4500,7 +4500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4530,7 +4530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4560,7 +4560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4590,7 +4590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4620,7 +4620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0, bool incremental1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"}; @@ -4650,7 +4650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QXmlSimpleReader::parseContinue() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("parseContinue"); + static PyObject* name = PyUnicode_FromString("parseContinue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4680,7 +4680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void* PythonQtShell_QXmlSimpleReader::property(const QString& name0, bool* ok1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4710,7 +4710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4729,7 +4729,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4748,7 +4748,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4767,7 +4767,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4786,7 +4786,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4805,7 +4805,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name0, bool value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4824,7 +4824,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* handler0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4843,7 +4843,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name0, void* value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; diff --git a/generated_cpp_54/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp b/generated_cpp_54/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp index d94cff862..0e54b18d5 100644 --- a/generated_cpp_54/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +++ b/generated_cpp_54/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp @@ -32,7 +32,7 @@ PythonQtShell_QAbstractMessageHandler::~PythonQtShell_QAbstractMessageHandler() void PythonQtShell_QAbstractMessageHandler::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -51,7 +51,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -70,7 +70,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractMessageHandler::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -100,7 +100,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractMessageHandler::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -130,7 +130,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::handleMessage(QtMsgType type0, const QString& description1, const QUrl& identifier2, const QSourceLocation& sourceLocation3) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("handleMessage"); + static PyObject* name = PyUnicode_FromString("handleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QtMsgType" , "const QString&" , "const QUrl&" , "const QSourceLocation&"}; @@ -149,7 +149,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractMessageHandler::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -188,7 +188,7 @@ PythonQtShell_QAbstractUriResolver::~PythonQtShell_QAbstractUriResolver() { void PythonQtShell_QAbstractUriResolver::childEvent(QChildEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -207,7 +207,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractUriResolver::customEvent(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -226,7 +226,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractUriResolver::event(QEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -256,7 +256,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractUriResolver::eventFilter(QObject* arg__1, QEvent* arg__2) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -286,7 +286,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractUriResolver::resolve(const QUrl& relative0, const QUrl& baseURI1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("resolve"); + static PyObject* name = PyUnicode_FromString("resolve"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "const QUrl&"}; @@ -316,7 +316,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractUriResolver::timerEvent(QTimerEvent* arg__1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -350,7 +350,7 @@ PythonQtShell_QAbstractXmlNodeModel::~PythonQtShell_QAbstractXmlNodeModel() { QVector PythonQtShell_QAbstractXmlNodeModel::attributes(const QXmlNodeModelIndex& element0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -380,7 +380,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractXmlNodeModel::baseUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -410,7 +410,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::DocumentOrder PythonQtShell_QAbstractXmlNodeModel::compareOrder(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -440,7 +440,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QAbstractXmlNodeModel::documentUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -470,7 +470,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::elementById(const QXmlName& NCName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -500,7 +500,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { bool PythonQtShell_QAbstractXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -530,7 +530,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::NodeKind PythonQtShell_QAbstractXmlNodeModel::kind(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -560,7 +560,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlName PythonQtShell_QAbstractXmlNodeModel::name(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -590,7 +590,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -620,7 +620,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { short PythonQtShell_QAbstractXmlNodeModel::namespaceForPrefix(const QXmlNodeModelIndex& ni0, const short prefix1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -650,7 +650,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::nextFromSimpleAxis(QAbstractXmlNodeModel::SimpleAxis axis0, const QXmlNodeModelIndex& origin1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -680,7 +680,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QAbstractXmlNodeModel::nodesByIdref(const QXmlName& NCName0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -710,7 +710,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::root(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -740,7 +740,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QAbstractXmlNodeModel::stringValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -770,7 +770,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QAbstractXmlNodeModel::typedValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -895,7 +895,7 @@ PythonQtShell_QAbstractXmlReceiver::~PythonQtShell_QAbstractXmlReceiver() { void PythonQtShell_QAbstractXmlReceiver::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -914,7 +914,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -933,7 +933,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -952,7 +952,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -971,7 +971,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -990,7 +990,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1009,7 +1009,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1028,7 +1028,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::namespaceBinding(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1047,7 +1047,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::processingInstruction(const QXmlName& target0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1066,7 +1066,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1085,7 +1085,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1104,7 +1104,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1123,7 +1123,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QAbstractXmlReceiver::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1221,7 +1221,7 @@ PythonQtShell_QSimpleXmlNodeModel::~PythonQtShell_QSimpleXmlNodeModel() { QVector PythonQtShell_QSimpleXmlNodeModel::attributes(const QXmlNodeModelIndex& element0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1251,7 +1251,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex& node0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1281,7 +1281,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::DocumentOrder PythonQtShell_QSimpleXmlNodeModel::compareOrder(const QXmlNodeModelIndex& ni10, const QXmlNodeModelIndex& ni21) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1311,7 +1311,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QUrl PythonQtShell_QSimpleXmlNodeModel::documentUri(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1341,7 +1341,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::elementById(const QXmlName& id0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -1371,7 +1371,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex::NodeKind PythonQtShell_QSimpleXmlNodeModel::kind(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -1401,7 +1401,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlName PythonQtShell_QSimpleXmlNodeModel::name(const QXmlNodeModelIndex& ni0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -1431,7 +1431,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex& arg__1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1461,7 +1461,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::nextFromSimpleAxis(QAbstractXmlNodeModel::SimpleAxis axis0, const QXmlNodeModelIndex& origin1) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -1491,7 +1491,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVector PythonQtShell_QSimpleXmlNodeModel::nodesByIdref(const QXmlName& idref0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -1521,7 +1521,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::root(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -1551,7 +1551,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QString PythonQtShell_QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex& node0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -1581,7 +1581,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { QVariant PythonQtShell_QSimpleXmlNodeModel::typedValue(const QXmlNodeModelIndex& n0) const { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1717,7 +1717,7 @@ PythonQtShell_QXmlFormatter::~PythonQtShell_QXmlFormatter() { void PythonQtShell_QXmlFormatter::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1736,7 +1736,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1755,7 +1755,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1774,7 +1774,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1793,7 +1793,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1812,7 +1812,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1831,7 +1831,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1850,7 +1850,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::namespaceBinding(const QXmlName& nb0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1869,7 +1869,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::processingInstruction(const QXmlName& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1888,7 +1888,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1907,7 +1907,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1926,7 +1926,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1945,7 +1945,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlFormatter::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2515,7 +2515,7 @@ PythonQtShell_QXmlSerializer::~PythonQtShell_QXmlSerializer() { void PythonQtShell_QXmlSerializer::atomicValue(const QVariant& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2534,7 +2534,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::attribute(const QXmlName& name0, const QStringRef& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -2553,7 +2553,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::characters(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2572,7 +2572,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::comment(const QString& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2591,7 +2591,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2610,7 +2610,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endElement() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2629,7 +2629,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::endOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2648,7 +2648,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::namespaceBinding(const QXmlName& nb0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2667,7 +2667,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::processingInstruction(const QXmlName& name0, const QString& value1) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2686,7 +2686,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startDocument() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2705,7 +2705,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startElement(const QXmlName& name0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2724,7 +2724,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::startOfSequence() { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2743,7 +2743,7 @@ if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { void PythonQtShell_QXmlSerializer::whitespaceOnly(const QStringRef& value0) { if (_wrapper && (Py_REFCNT((PyObject*)_wrapper) > 0)) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; diff --git a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core0.cpp b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core0.cpp index 860af5cb6..96b618a48 100644 --- a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core0.cpp +++ b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core0.cpp @@ -50,7 +50,7 @@ void PythonQtShell_QAbstractAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -72,7 +72,7 @@ void PythonQtShell_QAbstractAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -94,7 +94,7 @@ int PythonQtShell_QAbstractAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -127,7 +127,7 @@ bool PythonQtShell_QAbstractAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -160,7 +160,7 @@ bool PythonQtShell_QAbstractAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -193,7 +193,7 @@ void PythonQtShell_QAbstractAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -215,7 +215,7 @@ void PythonQtShell_QAbstractAnimation::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -237,7 +237,7 @@ void PythonQtShell_QAbstractAnimation::updateDirection(QAbstractAnimation::Direc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -259,7 +259,7 @@ void PythonQtShell_QAbstractAnimation::updateState(QAbstractAnimation::State ne if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -374,7 +374,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -407,7 +407,7 @@ bool PythonQtShell_QAbstractItemModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -440,7 +440,7 @@ bool PythonQtShell_QAbstractItemModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -473,7 +473,7 @@ void PythonQtShell_QAbstractItemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -495,7 +495,7 @@ int PythonQtShell_QAbstractItemModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -528,7 +528,7 @@ void PythonQtShell_QAbstractItemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -550,7 +550,7 @@ QVariant PythonQtShell_QAbstractItemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -583,7 +583,7 @@ bool PythonQtShell_QAbstractItemModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -616,7 +616,7 @@ bool PythonQtShell_QAbstractItemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -649,7 +649,7 @@ bool PythonQtShell_QAbstractItemModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -682,7 +682,7 @@ void PythonQtShell_QAbstractItemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -704,7 +704,7 @@ Qt::ItemFlags PythonQtShell_QAbstractItemModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -737,7 +737,7 @@ bool PythonQtShell_QAbstractItemModel::hasChildren(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -770,7 +770,7 @@ QVariant PythonQtShell_QAbstractItemModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -803,7 +803,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -836,7 +836,7 @@ bool PythonQtShell_QAbstractItemModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -869,7 +869,7 @@ bool PythonQtShell_QAbstractItemModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -902,7 +902,7 @@ QMap PythonQtShell_QAbstractItemModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -935,7 +935,7 @@ QList PythonQtShell_QAbstractItemModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -968,7 +968,7 @@ QMimeData* PythonQtShell_QAbstractItemModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -1001,7 +1001,7 @@ QStringList PythonQtShell_QAbstractItemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1034,7 +1034,7 @@ bool PythonQtShell_QAbstractItemModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -1067,7 +1067,7 @@ bool PythonQtShell_QAbstractItemModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -1100,7 +1100,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::parent(const QModelIndex& child0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1133,7 +1133,7 @@ bool PythonQtShell_QAbstractItemModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1166,7 +1166,7 @@ bool PythonQtShell_QAbstractItemModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1199,7 +1199,7 @@ void PythonQtShell_QAbstractItemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1221,7 +1221,7 @@ QHash PythonQtShell_QAbstractItemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -1254,7 +1254,7 @@ int PythonQtShell_QAbstractItemModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1287,7 +1287,7 @@ bool PythonQtShell_QAbstractItemModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -1320,7 +1320,7 @@ bool PythonQtShell_QAbstractItemModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -1353,7 +1353,7 @@ bool PythonQtShell_QAbstractItemModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -1386,7 +1386,7 @@ QModelIndex PythonQtShell_QAbstractItemModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1419,7 +1419,7 @@ void PythonQtShell_QAbstractItemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -1441,7 +1441,7 @@ QSize PythonQtShell_QAbstractItemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -1474,7 +1474,7 @@ bool PythonQtShell_QAbstractItemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1507,7 +1507,7 @@ Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1540,7 +1540,7 @@ Qt::DropActions PythonQtShell_QAbstractItemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -1573,7 +1573,7 @@ void PythonQtShell_QAbstractItemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1918,7 +1918,7 @@ QModelIndex PythonQtShell_QAbstractListModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1951,7 +1951,7 @@ bool PythonQtShell_QAbstractListModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1984,7 +1984,7 @@ bool PythonQtShell_QAbstractListModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2017,7 +2017,7 @@ void PythonQtShell_QAbstractListModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2039,7 +2039,7 @@ void PythonQtShell_QAbstractListModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2061,7 +2061,7 @@ QVariant PythonQtShell_QAbstractListModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2094,7 +2094,7 @@ bool PythonQtShell_QAbstractListModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2127,7 +2127,7 @@ bool PythonQtShell_QAbstractListModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2160,7 +2160,7 @@ bool PythonQtShell_QAbstractListModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2193,7 +2193,7 @@ void PythonQtShell_QAbstractListModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2215,7 +2215,7 @@ Qt::ItemFlags PythonQtShell_QAbstractListModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2248,7 +2248,7 @@ QVariant PythonQtShell_QAbstractListModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2281,7 +2281,7 @@ QModelIndex PythonQtShell_QAbstractListModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2314,7 +2314,7 @@ bool PythonQtShell_QAbstractListModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2347,7 +2347,7 @@ bool PythonQtShell_QAbstractListModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2380,7 +2380,7 @@ QMap PythonQtShell_QAbstractListModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2413,7 +2413,7 @@ QList PythonQtShell_QAbstractListModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2446,7 +2446,7 @@ QMimeData* PythonQtShell_QAbstractListModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2479,7 +2479,7 @@ QStringList PythonQtShell_QAbstractListModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2512,7 +2512,7 @@ bool PythonQtShell_QAbstractListModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2545,7 +2545,7 @@ bool PythonQtShell_QAbstractListModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2578,7 +2578,7 @@ bool PythonQtShell_QAbstractListModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2611,7 +2611,7 @@ bool PythonQtShell_QAbstractListModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2644,7 +2644,7 @@ void PythonQtShell_QAbstractListModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2666,7 +2666,7 @@ QHash PythonQtShell_QAbstractListModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2699,7 +2699,7 @@ int PythonQtShell_QAbstractListModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2732,7 +2732,7 @@ bool PythonQtShell_QAbstractListModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2765,7 +2765,7 @@ bool PythonQtShell_QAbstractListModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2798,7 +2798,7 @@ bool PythonQtShell_QAbstractListModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2831,7 +2831,7 @@ QModelIndex PythonQtShell_QAbstractListModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2864,7 +2864,7 @@ void PythonQtShell_QAbstractListModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2886,7 +2886,7 @@ QSize PythonQtShell_QAbstractListModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2919,7 +2919,7 @@ bool PythonQtShell_QAbstractListModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2952,7 +2952,7 @@ Qt::DropActions PythonQtShell_QAbstractListModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2985,7 +2985,7 @@ Qt::DropActions PythonQtShell_QAbstractListModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3018,7 +3018,7 @@ void PythonQtShell_QAbstractListModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3063,7 +3063,7 @@ void PythonQtShell_QAbstractState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3085,7 +3085,7 @@ void PythonQtShell_QAbstractState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3107,7 +3107,7 @@ bool PythonQtShell_QAbstractState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3140,7 +3140,7 @@ bool PythonQtShell_QAbstractState::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3173,7 +3173,7 @@ void PythonQtShell_QAbstractState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3195,7 +3195,7 @@ void PythonQtShell_QAbstractState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QAbstractState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3287,7 +3287,7 @@ void PythonQtShell_QAbstractTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3309,7 +3309,7 @@ void PythonQtShell_QAbstractTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3331,7 +3331,7 @@ bool PythonQtShell_QAbstractTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3364,7 +3364,7 @@ bool PythonQtShell_QAbstractTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3397,7 +3397,7 @@ bool PythonQtShell_QAbstractTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3430,7 +3430,7 @@ void PythonQtShell_QAbstractTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3452,7 +3452,7 @@ void PythonQtShell_QAbstractTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3562,7 +3562,7 @@ void PythonQtShell_QAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3584,7 +3584,7 @@ void PythonQtShell_QAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3606,7 +3606,7 @@ int PythonQtShell_QAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3639,7 +3639,7 @@ bool PythonQtShell_QAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3672,7 +3672,7 @@ bool PythonQtShell_QAnimationGroup::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3705,7 +3705,7 @@ void PythonQtShell_QAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3727,7 +3727,7 @@ void PythonQtShell_QAnimationGroup::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3749,7 +3749,7 @@ void PythonQtShell_QAnimationGroup::updateDirection(QAbstractAnimation::Directio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3771,7 +3771,7 @@ void PythonQtShell_QAnimationGroup::updateState(QAbstractAnimation::State newSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3928,7 +3928,7 @@ bool PythonQtShell_QBuffer::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3961,7 +3961,7 @@ qint64 PythonQtShell_QBuffer::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3994,7 +3994,7 @@ qint64 PythonQtShell_QBuffer::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4027,7 +4027,7 @@ bool PythonQtShell_QBuffer::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4060,7 +4060,7 @@ void PythonQtShell_QBuffer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4082,7 +4082,7 @@ void PythonQtShell_QBuffer::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4104,7 +4104,7 @@ void PythonQtShell_QBuffer::connectNotify(const QMetaMethod& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -4126,7 +4126,7 @@ void PythonQtShell_QBuffer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4148,7 +4148,7 @@ void PythonQtShell_QBuffer::disconnectNotify(const QMetaMethod& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -4170,7 +4170,7 @@ bool PythonQtShell_QBuffer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4203,7 +4203,7 @@ bool PythonQtShell_QBuffer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4236,7 +4236,7 @@ bool PythonQtShell_QBuffer::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4269,7 +4269,7 @@ bool PythonQtShell_QBuffer::open(QIODevice::OpenMode openMode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4302,7 +4302,7 @@ qint64 PythonQtShell_QBuffer::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4335,7 +4335,7 @@ qint64 PythonQtShell_QBuffer::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4368,7 +4368,7 @@ qint64 PythonQtShell_QBuffer::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4401,7 +4401,7 @@ bool PythonQtShell_QBuffer::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4434,7 +4434,7 @@ bool PythonQtShell_QBuffer::seek(qint64 off0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4467,7 +4467,7 @@ qint64 PythonQtShell_QBuffer::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4500,7 +4500,7 @@ void PythonQtShell_QBuffer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4522,7 +4522,7 @@ bool PythonQtShell_QBuffer::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4555,7 +4555,7 @@ bool PythonQtShell_QBuffer::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4588,7 +4588,7 @@ qint64 PythonQtShell_QBuffer::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -6061,7 +6061,7 @@ void PythonQtShell_QEventLoop::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6083,7 +6083,7 @@ void PythonQtShell_QEventLoop::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6105,7 +6105,7 @@ bool PythonQtShell_QEventLoop::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6138,7 +6138,7 @@ bool PythonQtShell_QEventLoop::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6171,7 +6171,7 @@ void PythonQtShell_QEventLoop::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6246,7 +6246,7 @@ void PythonQtShell_QEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6268,7 +6268,7 @@ void PythonQtShell_QEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6290,7 +6290,7 @@ bool PythonQtShell_QEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6323,7 +6323,7 @@ bool PythonQtShell_QEventTransition::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6356,7 +6356,7 @@ bool PythonQtShell_QEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6389,7 +6389,7 @@ void PythonQtShell_QEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6411,7 +6411,7 @@ void PythonQtShell_QEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6480,7 +6480,7 @@ QStringList PythonQtShell_QFactoryInterface::keys() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keys"); + static PyObject* name = PyUnicode_FromString("keys"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6528,7 +6528,7 @@ bool PythonQtShell_QFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6561,7 +6561,7 @@ qint64 PythonQtShell_QFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6594,7 +6594,7 @@ qint64 PythonQtShell_QFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6627,7 +6627,7 @@ bool PythonQtShell_QFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6660,7 +6660,7 @@ void PythonQtShell_QFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6682,7 +6682,7 @@ void PythonQtShell_QFile::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6704,7 +6704,7 @@ void PythonQtShell_QFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6726,7 +6726,7 @@ bool PythonQtShell_QFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6759,7 +6759,7 @@ bool PythonQtShell_QFile::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6792,7 +6792,7 @@ QString PythonQtShell_QFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -6825,7 +6825,7 @@ bool PythonQtShell_QFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6858,7 +6858,7 @@ bool PythonQtShell_QFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -6891,7 +6891,7 @@ QFileDevice::Permissions PythonQtShell_QFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -6924,7 +6924,7 @@ qint64 PythonQtShell_QFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6957,7 +6957,7 @@ qint64 PythonQtShell_QFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6990,7 +6990,7 @@ qint64 PythonQtShell_QFile::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -7023,7 +7023,7 @@ bool PythonQtShell_QFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7056,7 +7056,7 @@ bool PythonQtShell_QFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7089,7 +7089,7 @@ bool PythonQtShell_QFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -7122,7 +7122,7 @@ bool PythonQtShell_QFile::setPermissions(QFileDevice::Permissions permissionSp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -7155,7 +7155,7 @@ qint64 PythonQtShell_QFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7188,7 +7188,7 @@ void PythonQtShell_QFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7210,7 +7210,7 @@ bool PythonQtShell_QFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7243,7 +7243,7 @@ bool PythonQtShell_QFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7276,7 +7276,7 @@ qint64 PythonQtShell_QFile::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core1.cpp b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core1.cpp index 43dc45e93..0fff03975 100644 --- a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core1.cpp +++ b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core1.cpp @@ -57,7 +57,7 @@ bool PythonQtShell_QFileDevice::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -90,7 +90,7 @@ qint64 PythonQtShell_QFileDevice::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -123,7 +123,7 @@ qint64 PythonQtShell_QFileDevice::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -156,7 +156,7 @@ bool PythonQtShell_QFileDevice::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -189,7 +189,7 @@ void PythonQtShell_QFileDevice::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -211,7 +211,7 @@ void PythonQtShell_QFileDevice::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -233,7 +233,7 @@ void PythonQtShell_QFileDevice::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -255,7 +255,7 @@ bool PythonQtShell_QFileDevice::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -288,7 +288,7 @@ bool PythonQtShell_QFileDevice::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -321,7 +321,7 @@ QString PythonQtShell_QFileDevice::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -354,7 +354,7 @@ bool PythonQtShell_QFileDevice::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -387,7 +387,7 @@ bool PythonQtShell_QFileDevice::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -420,7 +420,7 @@ QFileDevice::Permissions PythonQtShell_QFileDevice::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -453,7 +453,7 @@ qint64 PythonQtShell_QFileDevice::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -486,7 +486,7 @@ qint64 PythonQtShell_QFileDevice::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -519,7 +519,7 @@ qint64 PythonQtShell_QFileDevice::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -552,7 +552,7 @@ bool PythonQtShell_QFileDevice::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -585,7 +585,7 @@ bool PythonQtShell_QFileDevice::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -618,7 +618,7 @@ bool PythonQtShell_QFileDevice::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -651,7 +651,7 @@ bool PythonQtShell_QFileDevice::setPermissions(QFileDevice::Permissions permis if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -684,7 +684,7 @@ qint64 PythonQtShell_QFileDevice::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -717,7 +717,7 @@ void PythonQtShell_QFileDevice::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -739,7 +739,7 @@ bool PythonQtShell_QFileDevice::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -772,7 +772,7 @@ bool PythonQtShell_QFileDevice::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -805,7 +805,7 @@ qint64 PythonQtShell_QFileDevice::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1172,7 +1172,7 @@ void PythonQtShell_QFileSelector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1194,7 +1194,7 @@ void PythonQtShell_QFileSelector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1216,7 +1216,7 @@ bool PythonQtShell_QFileSelector::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1249,7 +1249,7 @@ bool PythonQtShell_QFileSelector::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1282,7 +1282,7 @@ void PythonQtShell_QFileSelector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1352,7 +1352,7 @@ void PythonQtShell_QFileSystemWatcher::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1374,7 +1374,7 @@ void PythonQtShell_QFileSystemWatcher::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1396,7 +1396,7 @@ bool PythonQtShell_QFileSystemWatcher::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1429,7 +1429,7 @@ bool PythonQtShell_QFileSystemWatcher::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1462,7 +1462,7 @@ void PythonQtShell_QFileSystemWatcher::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1541,7 +1541,7 @@ void PythonQtShell_QFinalState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1563,7 +1563,7 @@ void PythonQtShell_QFinalState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1585,7 +1585,7 @@ bool PythonQtShell_QFinalState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1618,7 +1618,7 @@ bool PythonQtShell_QFinalState::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1651,7 +1651,7 @@ void PythonQtShell_QFinalState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1673,7 +1673,7 @@ void PythonQtShell_QFinalState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1695,7 +1695,7 @@ void PythonQtShell_QFinalState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1740,7 +1740,7 @@ void PythonQtShell_QHistoryState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1762,7 +1762,7 @@ void PythonQtShell_QHistoryState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1784,7 +1784,7 @@ bool PythonQtShell_QHistoryState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1817,7 +1817,7 @@ bool PythonQtShell_QHistoryState::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1850,7 +1850,7 @@ void PythonQtShell_QHistoryState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1872,7 +1872,7 @@ void PythonQtShell_QHistoryState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1894,7 +1894,7 @@ void PythonQtShell_QHistoryState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1973,7 +1973,7 @@ bool PythonQtShell_QIODevice::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2006,7 +2006,7 @@ qint64 PythonQtShell_QIODevice::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2039,7 +2039,7 @@ qint64 PythonQtShell_QIODevice::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2072,7 +2072,7 @@ bool PythonQtShell_QIODevice::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2105,7 +2105,7 @@ void PythonQtShell_QIODevice::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2127,7 +2127,7 @@ void PythonQtShell_QIODevice::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2149,7 +2149,7 @@ void PythonQtShell_QIODevice::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2171,7 +2171,7 @@ bool PythonQtShell_QIODevice::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2204,7 +2204,7 @@ bool PythonQtShell_QIODevice::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2237,7 +2237,7 @@ bool PythonQtShell_QIODevice::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2270,7 +2270,7 @@ bool PythonQtShell_QIODevice::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -2303,7 +2303,7 @@ qint64 PythonQtShell_QIODevice::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2336,7 +2336,7 @@ qint64 PythonQtShell_QIODevice::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2369,7 +2369,7 @@ qint64 PythonQtShell_QIODevice::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -2402,7 +2402,7 @@ bool PythonQtShell_QIODevice::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2435,7 +2435,7 @@ bool PythonQtShell_QIODevice::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -2468,7 +2468,7 @@ qint64 PythonQtShell_QIODevice::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2501,7 +2501,7 @@ void PythonQtShell_QIODevice::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2523,7 +2523,7 @@ bool PythonQtShell_QIODevice::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2556,7 +2556,7 @@ bool PythonQtShell_QIODevice::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2589,7 +2589,7 @@ qint64 PythonQtShell_QIODevice::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2819,7 +2819,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2852,7 +2852,7 @@ bool PythonQtShell_QIdentityProxyModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2885,7 +2885,7 @@ bool PythonQtShell_QIdentityProxyModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -2918,7 +2918,7 @@ void PythonQtShell_QIdentityProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2940,7 +2940,7 @@ int PythonQtShell_QIdentityProxyModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2973,7 +2973,7 @@ void PythonQtShell_QIdentityProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2995,7 +2995,7 @@ QVariant PythonQtShell_QIdentityProxyModel::data(const QModelIndex& proxyIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3028,7 +3028,7 @@ bool PythonQtShell_QIdentityProxyModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3061,7 +3061,7 @@ bool PythonQtShell_QIdentityProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3094,7 +3094,7 @@ bool PythonQtShell_QIdentityProxyModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3127,7 +3127,7 @@ void PythonQtShell_QIdentityProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3149,7 +3149,7 @@ Qt::ItemFlags PythonQtShell_QIdentityProxyModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3182,7 +3182,7 @@ bool PythonQtShell_QIdentityProxyModel::hasChildren(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3215,7 +3215,7 @@ QVariant PythonQtShell_QIdentityProxyModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3248,7 +3248,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3281,7 +3281,7 @@ bool PythonQtShell_QIdentityProxyModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3314,7 +3314,7 @@ bool PythonQtShell_QIdentityProxyModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3347,7 +3347,7 @@ QMap PythonQtShell_QIdentityProxyModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -3380,7 +3380,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::mapFromSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3413,7 +3413,7 @@ QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -3446,7 +3446,7 @@ QItemSelection PythonQtShell_QIdentityProxyModel::mapSelectionToSource(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -3479,7 +3479,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3512,7 +3512,7 @@ QList PythonQtShell_QIdentityProxyModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -3545,7 +3545,7 @@ QMimeData* PythonQtShell_QIdentityProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -3578,7 +3578,7 @@ QStringList PythonQtShell_QIdentityProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3611,7 +3611,7 @@ bool PythonQtShell_QIdentityProxyModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3644,7 +3644,7 @@ bool PythonQtShell_QIdentityProxyModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -3677,7 +3677,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::parent(const QModelIndex& child if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3710,7 +3710,7 @@ bool PythonQtShell_QIdentityProxyModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3743,7 +3743,7 @@ bool PythonQtShell_QIdentityProxyModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3776,7 +3776,7 @@ void PythonQtShell_QIdentityProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3798,7 +3798,7 @@ QHash PythonQtShell_QIdentityProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -3831,7 +3831,7 @@ int PythonQtShell_QIdentityProxyModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3864,7 +3864,7 @@ bool PythonQtShell_QIdentityProxyModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -3897,7 +3897,7 @@ bool PythonQtShell_QIdentityProxyModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -3930,7 +3930,7 @@ bool PythonQtShell_QIdentityProxyModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -3963,7 +3963,7 @@ void PythonQtShell_QIdentityProxyModel::setSourceModel(QAbstractItemModel* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -3985,7 +3985,7 @@ QModelIndex PythonQtShell_QIdentityProxyModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4018,7 +4018,7 @@ void PythonQtShell_QIdentityProxyModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4040,7 +4040,7 @@ QSize PythonQtShell_QIdentityProxyModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4073,7 +4073,7 @@ bool PythonQtShell_QIdentityProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4106,7 +4106,7 @@ Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4139,7 +4139,7 @@ Qt::DropActions PythonQtShell_QIdentityProxyModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4172,7 +4172,7 @@ void PythonQtShell_QIdentityProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4787,7 +4787,7 @@ void PythonQtShell_QLibrary::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4809,7 +4809,7 @@ void PythonQtShell_QLibrary::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4831,7 +4831,7 @@ bool PythonQtShell_QLibrary::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4864,7 +4864,7 @@ bool PythonQtShell_QLibrary::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4897,7 +4897,7 @@ void PythonQtShell_QLibrary::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5822,7 +5822,7 @@ void PythonQtShell_QMimeData::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5844,7 +5844,7 @@ void PythonQtShell_QMimeData::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5866,7 +5866,7 @@ bool PythonQtShell_QMimeData::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5899,7 +5899,7 @@ bool PythonQtShell_QMimeData::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5932,7 +5932,7 @@ QStringList PythonQtShell_QMimeData::formats() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("formats"); + static PyObject* name = PyUnicode_FromString("formats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5965,7 +5965,7 @@ bool PythonQtShell_QMimeData::hasFormat(const QString& mimetype0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFormat"); + static PyObject* name = PyUnicode_FromString("hasFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5998,7 +5998,7 @@ QVariant PythonQtShell_QMimeData::retrieveData(const QString& mimetype0, QVari if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("retrieveData"); + static PyObject* name = PyUnicode_FromString("retrieveData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "QVariant::Type"}; @@ -6031,7 +6031,7 @@ void PythonQtShell_QMimeData::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core2.cpp b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core2.cpp index 12d43c277..304d0d9f0 100644 --- a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core2.cpp +++ b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core2.cpp @@ -52,7 +52,7 @@ void PythonQtShell_QObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -74,7 +74,7 @@ void PythonQtShell_QObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -96,7 +96,7 @@ bool PythonQtShell_QObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -129,7 +129,7 @@ bool PythonQtShell_QObject::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -162,7 +162,7 @@ void PythonQtShell_QObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -327,7 +327,7 @@ void PythonQtShell_QParallelAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -349,7 +349,7 @@ void PythonQtShell_QParallelAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -371,7 +371,7 @@ int PythonQtShell_QParallelAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -404,7 +404,7 @@ bool PythonQtShell_QParallelAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -437,7 +437,7 @@ bool PythonQtShell_QParallelAnimationGroup::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -470,7 +470,7 @@ void PythonQtShell_QParallelAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -492,7 +492,7 @@ void PythonQtShell_QParallelAnimationGroup::updateCurrentTime(int currentTime0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -514,7 +514,7 @@ void PythonQtShell_QParallelAnimationGroup::updateDirection(QAbstractAnimation:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -536,7 +536,7 @@ void PythonQtShell_QParallelAnimationGroup::updateState(QAbstractAnimation::Stat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -581,7 +581,7 @@ void PythonQtShell_QPauseAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -603,7 +603,7 @@ void PythonQtShell_QPauseAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -625,7 +625,7 @@ int PythonQtShell_QPauseAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -658,7 +658,7 @@ bool PythonQtShell_QPauseAnimation::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -691,7 +691,7 @@ bool PythonQtShell_QPauseAnimation::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -724,7 +724,7 @@ void PythonQtShell_QPauseAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -746,7 +746,7 @@ void PythonQtShell_QPauseAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -768,7 +768,7 @@ void PythonQtShell_QPauseAnimation::updateDirection(QAbstractAnimation::Directio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -790,7 +790,7 @@ void PythonQtShell_QPauseAnimation::updateState(QAbstractAnimation::State newSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -950,7 +950,7 @@ bool PythonQtShell_QProcess::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -983,7 +983,7 @@ qint64 PythonQtShell_QProcess::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1016,7 +1016,7 @@ qint64 PythonQtShell_QProcess::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1049,7 +1049,7 @@ bool PythonQtShell_QProcess::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1082,7 +1082,7 @@ void PythonQtShell_QProcess::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1104,7 +1104,7 @@ void PythonQtShell_QProcess::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1126,7 +1126,7 @@ void PythonQtShell_QProcess::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1148,7 +1148,7 @@ bool PythonQtShell_QProcess::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1181,7 +1181,7 @@ bool PythonQtShell_QProcess::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1214,7 +1214,7 @@ bool PythonQtShell_QProcess::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1247,7 +1247,7 @@ bool PythonQtShell_QProcess::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1280,7 +1280,7 @@ qint64 PythonQtShell_QProcess::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1313,7 +1313,7 @@ qint64 PythonQtShell_QProcess::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1346,7 +1346,7 @@ qint64 PythonQtShell_QProcess::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1379,7 +1379,7 @@ bool PythonQtShell_QProcess::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1412,7 +1412,7 @@ bool PythonQtShell_QProcess::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1445,7 +1445,7 @@ void PythonQtShell_QProcess::setupChildProcess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupChildProcess"); + static PyObject* name = PyUnicode_FromString("setupChildProcess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1467,7 +1467,7 @@ qint64 PythonQtShell_QProcess::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1500,7 +1500,7 @@ void PythonQtShell_QProcess::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1522,7 +1522,7 @@ bool PythonQtShell_QProcess::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1555,7 +1555,7 @@ bool PythonQtShell_QProcess::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1588,7 +1588,7 @@ qint64 PythonQtShell_QProcess::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1939,7 +1939,7 @@ void PythonQtShell_QPropertyAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1961,7 +1961,7 @@ void PythonQtShell_QPropertyAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1983,7 +1983,7 @@ int PythonQtShell_QPropertyAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2016,7 +2016,7 @@ bool PythonQtShell_QPropertyAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2049,7 +2049,7 @@ bool PythonQtShell_QPropertyAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2082,7 +2082,7 @@ QVariant PythonQtShell_QPropertyAnimation::interpolated(const QVariant& from0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -2115,7 +2115,7 @@ void PythonQtShell_QPropertyAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2137,7 +2137,7 @@ void PythonQtShell_QPropertyAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2159,7 +2159,7 @@ void PythonQtShell_QPropertyAnimation::updateCurrentValue(const QVariant& value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2181,7 +2181,7 @@ void PythonQtShell_QPropertyAnimation::updateDirection(QAbstractAnimation::Direc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -2203,7 +2203,7 @@ void PythonQtShell_QPropertyAnimation::updateState(QAbstractAnimation::State ne if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -2711,7 +2711,7 @@ void PythonQtShell_QRunnable::run() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("run"); + static PyObject* name = PyUnicode_FromString("run"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2758,7 +2758,7 @@ bool PythonQtShell_QSaveFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2791,7 +2791,7 @@ qint64 PythonQtShell_QSaveFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2824,7 +2824,7 @@ qint64 PythonQtShell_QSaveFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2857,7 +2857,7 @@ bool PythonQtShell_QSaveFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2890,7 +2890,7 @@ void PythonQtShell_QSaveFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2912,7 +2912,7 @@ void PythonQtShell_QSaveFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2934,7 +2934,7 @@ bool PythonQtShell_QSaveFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2967,7 +2967,7 @@ bool PythonQtShell_QSaveFile::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3000,7 +3000,7 @@ QString PythonQtShell_QSaveFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fileName"); + static PyObject* name = PyUnicode_FromString("fileName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3033,7 +3033,7 @@ bool PythonQtShell_QSaveFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3066,7 +3066,7 @@ bool PythonQtShell_QSaveFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3099,7 +3099,7 @@ QFileDevice::Permissions PythonQtShell_QSaveFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -3132,7 +3132,7 @@ qint64 PythonQtShell_QSaveFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3165,7 +3165,7 @@ qint64 PythonQtShell_QSaveFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3198,7 +3198,7 @@ qint64 PythonQtShell_QSaveFile::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3231,7 +3231,7 @@ bool PythonQtShell_QSaveFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3264,7 +3264,7 @@ bool PythonQtShell_QSaveFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3297,7 +3297,7 @@ bool PythonQtShell_QSaveFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3330,7 +3330,7 @@ bool PythonQtShell_QSaveFile::setPermissions(QFileDevice::Permissions permissi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -3363,7 +3363,7 @@ qint64 PythonQtShell_QSaveFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3396,7 +3396,7 @@ void PythonQtShell_QSaveFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3418,7 +3418,7 @@ bool PythonQtShell_QSaveFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3451,7 +3451,7 @@ bool PythonQtShell_QSaveFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3484,7 +3484,7 @@ qint64 PythonQtShell_QSaveFile::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3604,7 +3604,7 @@ void PythonQtShell_QSequentialAnimationGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3626,7 +3626,7 @@ void PythonQtShell_QSequentialAnimationGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3648,7 +3648,7 @@ int PythonQtShell_QSequentialAnimationGroup::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3681,7 +3681,7 @@ bool PythonQtShell_QSequentialAnimationGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3714,7 +3714,7 @@ bool PythonQtShell_QSequentialAnimationGroup::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3747,7 +3747,7 @@ void PythonQtShell_QSequentialAnimationGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3769,7 +3769,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3791,7 +3791,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateDirection(QAbstractAnimation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3813,7 +3813,7 @@ void PythonQtShell_QSequentialAnimationGroup::updateState(QAbstractAnimation::St if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3873,7 +3873,7 @@ void PythonQtShell_QSettings::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3895,7 +3895,7 @@ void PythonQtShell_QSettings::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3917,7 +3917,7 @@ bool PythonQtShell_QSettings::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3950,7 +3950,7 @@ bool PythonQtShell_QSettings::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3983,7 +3983,7 @@ void PythonQtShell_QSettings::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4199,7 +4199,7 @@ void PythonQtShell_QSharedMemory::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4221,7 +4221,7 @@ void PythonQtShell_QSharedMemory::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4243,7 +4243,7 @@ bool PythonQtShell_QSharedMemory::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4276,7 +4276,7 @@ bool PythonQtShell_QSharedMemory::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4309,7 +4309,7 @@ void PythonQtShell_QSharedMemory::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4453,7 +4453,7 @@ void PythonQtShell_QSignalMapper::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4475,7 +4475,7 @@ void PythonQtShell_QSignalMapper::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4497,7 +4497,7 @@ bool PythonQtShell_QSignalMapper::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4530,7 +4530,7 @@ bool PythonQtShell_QSignalMapper::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4563,7 +4563,7 @@ void PythonQtShell_QSignalMapper::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4653,7 +4653,7 @@ void PythonQtShell_QSignalTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4675,7 +4675,7 @@ void PythonQtShell_QSignalTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4697,7 +4697,7 @@ bool PythonQtShell_QSignalTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4730,7 +4730,7 @@ bool PythonQtShell_QSignalTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4763,7 +4763,7 @@ bool PythonQtShell_QSignalTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4796,7 +4796,7 @@ void PythonQtShell_QSignalTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4818,7 +4818,7 @@ void PythonQtShell_QSignalTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4887,7 +4887,7 @@ void PythonQtShell_QSocketNotifier::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4909,7 +4909,7 @@ void PythonQtShell_QSocketNotifier::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4931,7 +4931,7 @@ bool PythonQtShell_QSocketNotifier::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4964,7 +4964,7 @@ bool PythonQtShell_QSocketNotifier::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4997,7 +4997,7 @@ void PythonQtShell_QSocketNotifier::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5104,7 +5104,7 @@ void PythonQtShell_QState::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5126,7 +5126,7 @@ void PythonQtShell_QState::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5148,7 +5148,7 @@ bool PythonQtShell_QState::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5181,7 +5181,7 @@ bool PythonQtShell_QState::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5214,7 +5214,7 @@ void PythonQtShell_QState::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5236,7 +5236,7 @@ void PythonQtShell_QState::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5258,7 +5258,7 @@ void PythonQtShell_QState::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5367,7 +5367,7 @@ void PythonQtShell_QStateMachine::beginMicrostep(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginMicrostep"); + static PyObject* name = PyUnicode_FromString("beginMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5389,7 +5389,7 @@ void PythonQtShell_QStateMachine::beginSelectTransitions(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginSelectTransitions"); + static PyObject* name = PyUnicode_FromString("beginSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5411,7 +5411,7 @@ void PythonQtShell_QStateMachine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5433,7 +5433,7 @@ void PythonQtShell_QStateMachine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5455,7 +5455,7 @@ void PythonQtShell_QStateMachine::endMicrostep(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endMicrostep"); + static PyObject* name = PyUnicode_FromString("endMicrostep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5477,7 +5477,7 @@ void PythonQtShell_QStateMachine::endSelectTransitions(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endSelectTransitions"); + static PyObject* name = PyUnicode_FromString("endSelectTransitions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5499,7 +5499,7 @@ bool PythonQtShell_QStateMachine::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5532,7 +5532,7 @@ bool PythonQtShell_QStateMachine::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5565,7 +5565,7 @@ void PythonQtShell_QStateMachine::onEntry(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onEntry"); + static PyObject* name = PyUnicode_FromString("onEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5587,7 +5587,7 @@ void PythonQtShell_QStateMachine::onExit(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onExit"); + static PyObject* name = PyUnicode_FromString("onExit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5609,7 +5609,7 @@ void PythonQtShell_QStateMachine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core3.cpp b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core3.cpp index 170de8ff9..51be0233b 100644 --- a/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core3.cpp +++ b/generated_cpp_56/com_trolltech_qt_core/com_trolltech_qt_core3.cpp @@ -124,7 +124,7 @@ bool PythonQtShell_QTemporaryFile::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -157,7 +157,7 @@ qint64 PythonQtShell_QTemporaryFile::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -190,7 +190,7 @@ qint64 PythonQtShell_QTemporaryFile::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -223,7 +223,7 @@ bool PythonQtShell_QTemporaryFile::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -256,7 +256,7 @@ void PythonQtShell_QTemporaryFile::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -278,7 +278,7 @@ void PythonQtShell_QTemporaryFile::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -300,7 +300,7 @@ void PythonQtShell_QTemporaryFile::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -322,7 +322,7 @@ bool PythonQtShell_QTemporaryFile::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -355,7 +355,7 @@ bool PythonQtShell_QTemporaryFile::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -388,7 +388,7 @@ QString PythonQtShell_QTemporaryFile::fileName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("uniqueFilename"); + static PyObject* name = PyUnicode_FromString("uniqueFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -421,7 +421,7 @@ bool PythonQtShell_QTemporaryFile::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -454,7 +454,7 @@ bool PythonQtShell_QTemporaryFile::open(QIODevice::OpenMode flags0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -487,7 +487,7 @@ QFileDevice::Permissions PythonQtShell_QTemporaryFile::permissions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("permissions"); + static PyObject* name = PyUnicode_FromString("permissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QFileDevice::Permissions"}; @@ -520,7 +520,7 @@ qint64 PythonQtShell_QTemporaryFile::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -553,7 +553,7 @@ qint64 PythonQtShell_QTemporaryFile::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -586,7 +586,7 @@ qint64 PythonQtShell_QTemporaryFile::readLineData(char* data0, qint64 maxlen1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -619,7 +619,7 @@ bool PythonQtShell_QTemporaryFile::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -652,7 +652,7 @@ bool PythonQtShell_QTemporaryFile::resize(qint64 sz0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resize"); + static PyObject* name = PyUnicode_FromString("resize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -685,7 +685,7 @@ bool PythonQtShell_QTemporaryFile::seek(qint64 offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -718,7 +718,7 @@ bool PythonQtShell_QTemporaryFile::setPermissions(QFileDevice::Permissions per if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPermissions"); + static PyObject* name = PyUnicode_FromString("setPermissions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QFileDevice::Permissions"}; @@ -751,7 +751,7 @@ qint64 PythonQtShell_QTemporaryFile::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -784,7 +784,7 @@ void PythonQtShell_QTemporaryFile::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -806,7 +806,7 @@ bool PythonQtShell_QTemporaryFile::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -839,7 +839,7 @@ bool PythonQtShell_QTemporaryFile::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -872,7 +872,7 @@ qint64 PythonQtShell_QTemporaryFile::writeData(const char* data0, qint64 len1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1059,7 +1059,7 @@ QList PythonQtShell_QTextCodec::aliases() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aliases"); + static PyObject* name = PyUnicode_FromString("aliases"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1092,7 +1092,7 @@ QByteArray PythonQtShell_QTextCodec::convertFromUnicode(const QChar* in0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("convertFromUnicode"); + static PyObject* name = PyUnicode_FromString("convertFromUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QChar*" , "int" , "QTextCodec::ConverterState*"}; @@ -1125,7 +1125,7 @@ QString PythonQtShell_QTextCodec::convertToUnicode(const char* in0, int lengt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("convertToUnicode"); + static PyObject* name = PyUnicode_FromString("convertToUnicode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "int" , "QTextCodec::ConverterState*"}; @@ -1158,7 +1158,7 @@ int PythonQtShell_QTextCodec::mibEnum() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mibEnum"); + static PyObject* name = PyUnicode_FromString("mibEnum"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1191,7 +1191,7 @@ QByteArray PythonQtShell_QTextCodec::name() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -1662,7 +1662,7 @@ void PythonQtShell_QThreadPool::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1684,7 +1684,7 @@ void PythonQtShell_QThreadPool::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1706,7 +1706,7 @@ bool PythonQtShell_QThreadPool::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1739,7 +1739,7 @@ bool PythonQtShell_QThreadPool::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1772,7 +1772,7 @@ void PythonQtShell_QThreadPool::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1882,7 +1882,7 @@ void PythonQtShell_QTimeLine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1904,7 +1904,7 @@ void PythonQtShell_QTimeLine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1926,7 +1926,7 @@ bool PythonQtShell_QTimeLine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1959,7 +1959,7 @@ bool PythonQtShell_QTimeLine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1992,7 +1992,7 @@ void PythonQtShell_QTimeLine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2014,7 +2014,7 @@ qreal PythonQtShell_QTimeLine::valueForTime(int msec0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueForTime"); + static PyObject* name = PyUnicode_FromString("valueForTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal" , "int"}; @@ -2369,7 +2369,7 @@ void PythonQtShell_QTimer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2391,7 +2391,7 @@ void PythonQtShell_QTimer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2413,7 +2413,7 @@ bool PythonQtShell_QTimer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2446,7 +2446,7 @@ bool PythonQtShell_QTimer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2479,7 +2479,7 @@ void PythonQtShell_QTimer::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2594,7 +2594,7 @@ void PythonQtShell_QTranslator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2616,7 +2616,7 @@ void PythonQtShell_QTranslator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2638,7 +2638,7 @@ bool PythonQtShell_QTranslator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2671,7 +2671,7 @@ bool PythonQtShell_QTranslator::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2704,7 +2704,7 @@ bool PythonQtShell_QTranslator::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2737,7 +2737,7 @@ void PythonQtShell_QTranslator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2759,7 +2759,7 @@ QString PythonQtShell_QTranslator::translate(const char* context0, const char* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("translate"); + static PyObject* name = PyUnicode_FromString("translate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const char*" , "const char*" , "const char*" , "int"}; @@ -3092,7 +3092,7 @@ void PythonQtShell_QVariantAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3114,7 +3114,7 @@ void PythonQtShell_QVariantAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3136,7 +3136,7 @@ int PythonQtShell_QVariantAnimation::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3169,7 +3169,7 @@ bool PythonQtShell_QVariantAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3202,7 +3202,7 @@ bool PythonQtShell_QVariantAnimation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3235,7 +3235,7 @@ QVariant PythonQtShell_QVariantAnimation::interpolated(const QVariant& from0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("interpolated"); + static PyObject* name = PyUnicode_FromString("interpolated"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&" , "const QVariant&" , "qreal"}; @@ -3268,7 +3268,7 @@ void PythonQtShell_QVariantAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3290,7 +3290,7 @@ void PythonQtShell_QVariantAnimation::updateCurrentTime(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentTime"); + static PyObject* name = PyUnicode_FromString("updateCurrentTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3312,7 +3312,7 @@ void PythonQtShell_QVariantAnimation::updateCurrentValue(const QVariant& value0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCurrentValue"); + static PyObject* name = PyUnicode_FromString("updateCurrentValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -3334,7 +3334,7 @@ void PythonQtShell_QVariantAnimation::updateDirection(QAbstractAnimation::Direct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateDirection"); + static PyObject* name = PyUnicode_FromString("updateDirection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::Direction"}; @@ -3356,7 +3356,7 @@ void PythonQtShell_QVariantAnimation::updateState(QAbstractAnimation::State new if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractAnimation::State" , "QAbstractAnimation::State"}; @@ -3497,7 +3497,7 @@ QString PythonQtShell_QXmlStreamEntityResolver::resolveEntity(const QString& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "const QString&"}; @@ -3530,7 +3530,7 @@ QString PythonQtShell_QXmlStreamEntityResolver::resolveUndeclaredEntity(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveUndeclaredEntity"); + static PyObject* name = PyUnicode_FromString("resolveUndeclaredEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp index 5d5115c81..92e2c54dd 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui0.cpp @@ -119,7 +119,7 @@ void PythonQtShell_QAbstractButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -141,7 +141,7 @@ void PythonQtShell_QAbstractButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -163,7 +163,7 @@ void PythonQtShell_QAbstractButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -185,7 +185,7 @@ void PythonQtShell_QAbstractButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -207,7 +207,7 @@ void PythonQtShell_QAbstractButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -229,7 +229,7 @@ void PythonQtShell_QAbstractButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -251,7 +251,7 @@ void PythonQtShell_QAbstractButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -273,7 +273,7 @@ int PythonQtShell_QAbstractButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -306,7 +306,7 @@ void PythonQtShell_QAbstractButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -328,7 +328,7 @@ void PythonQtShell_QAbstractButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -350,7 +350,7 @@ void PythonQtShell_QAbstractButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -372,7 +372,7 @@ void PythonQtShell_QAbstractButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -394,7 +394,7 @@ void PythonQtShell_QAbstractButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -416,7 +416,7 @@ bool PythonQtShell_QAbstractButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -449,7 +449,7 @@ bool PythonQtShell_QAbstractButton::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -482,7 +482,7 @@ void PythonQtShell_QAbstractButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -504,7 +504,7 @@ bool PythonQtShell_QAbstractButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -537,7 +537,7 @@ void PythonQtShell_QAbstractButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -559,7 +559,7 @@ bool PythonQtShell_QAbstractButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -592,7 +592,7 @@ int PythonQtShell_QAbstractButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -625,7 +625,7 @@ void PythonQtShell_QAbstractButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -647,7 +647,7 @@ bool PythonQtShell_QAbstractButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -680,7 +680,7 @@ void PythonQtShell_QAbstractButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -702,7 +702,7 @@ void PythonQtShell_QAbstractButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -724,7 +724,7 @@ QVariant PythonQtShell_QAbstractButton::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -757,7 +757,7 @@ void PythonQtShell_QAbstractButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -779,7 +779,7 @@ void PythonQtShell_QAbstractButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -801,7 +801,7 @@ void PythonQtShell_QAbstractButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -823,7 +823,7 @@ int PythonQtShell_QAbstractButton::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -856,7 +856,7 @@ QSize PythonQtShell_QAbstractButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -889,7 +889,7 @@ void PythonQtShell_QAbstractButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -911,7 +911,7 @@ void PythonQtShell_QAbstractButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -933,7 +933,7 @@ void PythonQtShell_QAbstractButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -955,7 +955,7 @@ void PythonQtShell_QAbstractButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -977,7 +977,7 @@ void PythonQtShell_QAbstractButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -999,7 +999,7 @@ bool PythonQtShell_QAbstractButton::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1032,7 +1032,7 @@ void PythonQtShell_QAbstractButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1054,7 +1054,7 @@ QPaintEngine* PythonQtShell_QAbstractButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1087,7 +1087,7 @@ void PythonQtShell_QAbstractButton::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1109,7 +1109,7 @@ QPaintDevice* PythonQtShell_QAbstractButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1142,7 +1142,7 @@ void PythonQtShell_QAbstractButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1164,7 +1164,7 @@ void PythonQtShell_QAbstractButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1186,7 +1186,7 @@ QPainter* PythonQtShell_QAbstractButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1219,7 +1219,7 @@ void PythonQtShell_QAbstractButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1241,7 +1241,7 @@ QSize PythonQtShell_QAbstractButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1274,7 +1274,7 @@ void PythonQtShell_QAbstractButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1296,7 +1296,7 @@ void PythonQtShell_QAbstractButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1318,7 +1318,7 @@ void PythonQtShell_QAbstractButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1483,7 +1483,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1505,7 +1505,7 @@ QRectF PythonQtShell_QAbstractGraphicsShapeItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1538,7 +1538,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithItem(const QGraphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -1571,7 +1571,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::collidesWithPath(const QPainterP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -1604,7 +1604,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::contains(const QPointF& point0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1637,7 +1637,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::contextMenuEvent(QGraphicsSceneCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1659,7 +1659,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragEnterEvent(QGraphicsSceneDrag if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1681,7 +1681,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragLeaveEvent(QGraphicsSceneDrag if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1703,7 +1703,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dragMoveEvent(QGraphicsSceneDragD if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1725,7 +1725,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::dropEvent(QGraphicsSceneDragDropE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1747,7 +1747,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::extension(const QVariant& v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1780,7 +1780,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::focusInEvent(QFocusEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1802,7 +1802,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::focusOutEvent(QFocusEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1824,7 +1824,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverEnterEvent(QGraphicsSceneHov if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1846,7 +1846,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverLeaveEvent(QGraphicsSceneHov if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1868,7 +1868,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::hoverMoveEvent(QGraphicsSceneHove if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1890,7 +1890,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::inputMethodEvent(QInputMethodEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1912,7 +1912,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::inputMethodQuery(Qt::InputMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1945,7 +1945,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::isObscuredBy(const QGraphicsItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1978,7 +1978,7 @@ QVariant PythonQtShell_QAbstractGraphicsShapeItem::itemChange(QGraphicsItem::Gr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -2014,7 +2014,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2036,7 +2036,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::keyReleaseEvent(QKeyEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2058,7 +2058,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseDoubleClickEvent(QGraphicsSc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2080,7 +2080,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseMoveEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2102,7 +2102,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mousePressEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2124,7 +2124,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::mouseReleaseEvent(QGraphicsSceneM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2146,7 +2146,7 @@ QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2179,7 +2179,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::paint(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2201,7 +2201,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2234,7 +2234,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::sceneEventFilter(QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -2267,7 +2267,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::setExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -2289,7 +2289,7 @@ QPainterPath PythonQtShell_QAbstractGraphicsShapeItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2322,7 +2322,7 @@ bool PythonQtShell_QAbstractGraphicsShapeItem::supportsExtension(QGraphicsItem: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -2355,7 +2355,7 @@ int PythonQtShell_QAbstractGraphicsShapeItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2388,7 +2388,7 @@ void PythonQtShell_QAbstractGraphicsShapeItem::wheelEvent(QGraphicsSceneWheelEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2440,7 +2440,7 @@ void PythonQtShell_QAbstractItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2462,7 +2462,7 @@ QWidget* PythonQtShell_QAbstractItemDelegate::createEditor(QWidget* parent0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2495,7 +2495,7 @@ void PythonQtShell_QAbstractItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2517,7 +2517,7 @@ void PythonQtShell_QAbstractItemDelegate::destroyEditor(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2539,7 +2539,7 @@ bool PythonQtShell_QAbstractItemDelegate::editorEvent(QEvent* event0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2572,7 +2572,7 @@ bool PythonQtShell_QAbstractItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2605,7 +2605,7 @@ bool PythonQtShell_QAbstractItemDelegate::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2638,7 +2638,7 @@ bool PythonQtShell_QAbstractItemDelegate::helpEvent(QHelpEvent* event0, QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2671,7 +2671,7 @@ void PythonQtShell_QAbstractItemDelegate::paint(QPainter* painter0, const QStyl if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2693,7 +2693,7 @@ QVector PythonQtShell_QAbstractItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -2726,7 +2726,7 @@ void PythonQtShell_QAbstractItemDelegate::setEditorData(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -2748,7 +2748,7 @@ void PythonQtShell_QAbstractItemDelegate::setModelData(QWidget* editor0, QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -2770,7 +2770,7 @@ QSize PythonQtShell_QAbstractItemDelegate::sizeHint(const QStyleOptionViewItem& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2803,7 +2803,7 @@ void PythonQtShell_QAbstractItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2825,7 +2825,7 @@ void PythonQtShell_QAbstractItemDelegate::updateEditorGeometry(QWidget* editor0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -2920,7 +2920,7 @@ void PythonQtShell_QAbstractItemView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2942,7 +2942,7 @@ void PythonQtShell_QAbstractItemView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2964,7 +2964,7 @@ void PythonQtShell_QAbstractItemView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2986,7 +2986,7 @@ void PythonQtShell_QAbstractItemView::closeEditor(QWidget* editor0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -3008,7 +3008,7 @@ void PythonQtShell_QAbstractItemView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3030,7 +3030,7 @@ void PythonQtShell_QAbstractItemView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3052,7 +3052,7 @@ void PythonQtShell_QAbstractItemView::contextMenuEvent(QContextMenuEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3074,7 +3074,7 @@ void PythonQtShell_QAbstractItemView::currentChanged(const QModelIndex& current if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -3096,7 +3096,7 @@ void PythonQtShell_QAbstractItemView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3118,7 +3118,7 @@ void PythonQtShell_QAbstractItemView::dataChanged(const QModelIndex& topLeft0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -3140,7 +3140,7 @@ int PythonQtShell_QAbstractItemView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3173,7 +3173,7 @@ void PythonQtShell_QAbstractItemView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3195,7 +3195,7 @@ void PythonQtShell_QAbstractItemView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3217,7 +3217,7 @@ void PythonQtShell_QAbstractItemView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3239,7 +3239,7 @@ void PythonQtShell_QAbstractItemView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3261,7 +3261,7 @@ void PythonQtShell_QAbstractItemView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3283,7 +3283,7 @@ bool PythonQtShell_QAbstractItemView::edit(const QModelIndex& index0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -3316,7 +3316,7 @@ void PythonQtShell_QAbstractItemView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3338,7 +3338,7 @@ void PythonQtShell_QAbstractItemView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3360,7 +3360,7 @@ bool PythonQtShell_QAbstractItemView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3393,7 +3393,7 @@ bool PythonQtShell_QAbstractItemView::eventFilter(QObject* arg__1, QEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3426,7 +3426,7 @@ void PythonQtShell_QAbstractItemView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3448,7 +3448,7 @@ bool PythonQtShell_QAbstractItemView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3481,7 +3481,7 @@ void PythonQtShell_QAbstractItemView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3503,7 +3503,7 @@ bool PythonQtShell_QAbstractItemView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3536,7 +3536,7 @@ int PythonQtShell_QAbstractItemView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3569,7 +3569,7 @@ void PythonQtShell_QAbstractItemView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3591,7 +3591,7 @@ int PythonQtShell_QAbstractItemView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3624,7 +3624,7 @@ void PythonQtShell_QAbstractItemView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3646,7 +3646,7 @@ void PythonQtShell_QAbstractItemView::horizontalScrollbarValueChanged(int value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3668,7 +3668,7 @@ QModelIndex PythonQtShell_QAbstractItemView::indexAt(const QPoint& point0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -3701,7 +3701,7 @@ void PythonQtShell_QAbstractItemView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3723,7 +3723,7 @@ void PythonQtShell_QAbstractItemView::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3745,7 +3745,7 @@ QVariant PythonQtShell_QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3778,7 +3778,7 @@ bool PythonQtShell_QAbstractItemView::isIndexHidden(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3811,7 +3811,7 @@ void PythonQtShell_QAbstractItemView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3833,7 +3833,7 @@ void PythonQtShell_QAbstractItemView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3855,7 +3855,7 @@ void PythonQtShell_QAbstractItemView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3877,7 +3877,7 @@ void PythonQtShell_QAbstractItemView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3899,7 +3899,7 @@ int PythonQtShell_QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3932,7 +3932,7 @@ QSize PythonQtShell_QAbstractItemView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3965,7 +3965,7 @@ void PythonQtShell_QAbstractItemView::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3987,7 +3987,7 @@ void PythonQtShell_QAbstractItemView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4009,7 +4009,7 @@ void PythonQtShell_QAbstractItemView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4031,7 +4031,7 @@ void PythonQtShell_QAbstractItemView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4053,7 +4053,7 @@ QModelIndex PythonQtShell_QAbstractItemView::moveCursor(QAbstractItemView::Curs if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -4086,7 +4086,7 @@ void PythonQtShell_QAbstractItemView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4108,7 +4108,7 @@ bool PythonQtShell_QAbstractItemView::nativeEvent(const QByteArray& eventType0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4141,7 +4141,7 @@ QPaintEngine* PythonQtShell_QAbstractItemView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4174,7 +4174,7 @@ void PythonQtShell_QAbstractItemView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4196,7 +4196,7 @@ QPaintDevice* PythonQtShell_QAbstractItemView::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4229,7 +4229,7 @@ void PythonQtShell_QAbstractItemView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4251,7 +4251,7 @@ void PythonQtShell_QAbstractItemView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4273,7 +4273,7 @@ void PythonQtShell_QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4295,7 +4295,7 @@ void PythonQtShell_QAbstractItemView::rowsInserted(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -4317,7 +4317,7 @@ void PythonQtShell_QAbstractItemView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4339,7 +4339,7 @@ void PythonQtShell_QAbstractItemView::scrollTo(const QModelIndex& index0, QAbst if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -4361,7 +4361,7 @@ void PythonQtShell_QAbstractItemView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4383,7 +4383,7 @@ QList PythonQtShell_QAbstractItemView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4416,7 +4416,7 @@ void PythonQtShell_QAbstractItemView::selectionChanged(const QItemSelection& se if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -4438,7 +4438,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QAbstractItemView::selectionC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -4471,7 +4471,7 @@ void PythonQtShell_QAbstractItemView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -4493,7 +4493,7 @@ void PythonQtShell_QAbstractItemView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -4515,7 +4515,7 @@ void PythonQtShell_QAbstractItemView::setSelection(const QRect& rect0, QItemSel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -4537,7 +4537,7 @@ void PythonQtShell_QAbstractItemView::setSelectionModel(QItemSelectionModel* se if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -4559,7 +4559,7 @@ void PythonQtShell_QAbstractItemView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4581,7 +4581,7 @@ void PythonQtShell_QAbstractItemView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4603,7 +4603,7 @@ QPainter* PythonQtShell_QAbstractItemView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4636,7 +4636,7 @@ void PythonQtShell_QAbstractItemView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4658,7 +4658,7 @@ QSize PythonQtShell_QAbstractItemView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4691,7 +4691,7 @@ int PythonQtShell_QAbstractItemView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4724,7 +4724,7 @@ int PythonQtShell_QAbstractItemView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4757,7 +4757,7 @@ void PythonQtShell_QAbstractItemView::startDrag(Qt::DropActions supportedAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -4779,7 +4779,7 @@ void PythonQtShell_QAbstractItemView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4801,7 +4801,7 @@ void PythonQtShell_QAbstractItemView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4823,7 +4823,7 @@ void PythonQtShell_QAbstractItemView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4845,7 +4845,7 @@ void PythonQtShell_QAbstractItemView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4867,7 +4867,7 @@ void PythonQtShell_QAbstractItemView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4889,7 +4889,7 @@ int PythonQtShell_QAbstractItemView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4922,7 +4922,7 @@ void PythonQtShell_QAbstractItemView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4944,7 +4944,7 @@ void PythonQtShell_QAbstractItemView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4966,7 +4966,7 @@ QStyleOptionViewItem PythonQtShell_QAbstractItemView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -4999,7 +4999,7 @@ bool PythonQtShell_QAbstractItemView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5032,7 +5032,7 @@ QSize PythonQtShell_QAbstractItemView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5065,7 +5065,7 @@ QRect PythonQtShell_QAbstractItemView::visualRect(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -5098,7 +5098,7 @@ QRegion PythonQtShell_QAbstractItemView::visualRegionForSelection(const QItemSe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -5131,7 +5131,7 @@ void PythonQtShell_QAbstractItemView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5566,7 +5566,7 @@ void PythonQtShell_QAbstractPrintDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5588,7 +5588,7 @@ void PythonQtShell_QAbstractPrintDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5610,7 +5610,7 @@ void PythonQtShell_QAbstractPrintDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5632,7 +5632,7 @@ void PythonQtShell_QAbstractPrintDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5654,7 +5654,7 @@ void PythonQtShell_QAbstractPrintDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5676,7 +5676,7 @@ void PythonQtShell_QAbstractPrintDialog::contextMenuEvent(QContextMenuEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5698,7 +5698,7 @@ void PythonQtShell_QAbstractPrintDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5720,7 +5720,7 @@ int PythonQtShell_QAbstractPrintDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5753,7 +5753,7 @@ void PythonQtShell_QAbstractPrintDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5775,7 +5775,7 @@ void PythonQtShell_QAbstractPrintDialog::dragEnterEvent(QDragEnterEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5797,7 +5797,7 @@ void PythonQtShell_QAbstractPrintDialog::dragLeaveEvent(QDragLeaveEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5819,7 +5819,7 @@ void PythonQtShell_QAbstractPrintDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5841,7 +5841,7 @@ void PythonQtShell_QAbstractPrintDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5863,7 +5863,7 @@ void PythonQtShell_QAbstractPrintDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5885,7 +5885,7 @@ bool PythonQtShell_QAbstractPrintDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5918,7 +5918,7 @@ bool PythonQtShell_QAbstractPrintDialog::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5951,7 +5951,7 @@ int PythonQtShell_QAbstractPrintDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5984,7 +5984,7 @@ void PythonQtShell_QAbstractPrintDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6006,7 +6006,7 @@ bool PythonQtShell_QAbstractPrintDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6039,7 +6039,7 @@ void PythonQtShell_QAbstractPrintDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6061,7 +6061,7 @@ bool PythonQtShell_QAbstractPrintDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6094,7 +6094,7 @@ int PythonQtShell_QAbstractPrintDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6127,7 +6127,7 @@ void PythonQtShell_QAbstractPrintDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6149,7 +6149,7 @@ void PythonQtShell_QAbstractPrintDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6171,7 +6171,7 @@ void PythonQtShell_QAbstractPrintDialog::inputMethodEvent(QInputMethodEvent* ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6193,7 +6193,7 @@ QVariant PythonQtShell_QAbstractPrintDialog::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6226,7 +6226,7 @@ void PythonQtShell_QAbstractPrintDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6248,7 +6248,7 @@ void PythonQtShell_QAbstractPrintDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6270,7 +6270,7 @@ void PythonQtShell_QAbstractPrintDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6292,7 +6292,7 @@ int PythonQtShell_QAbstractPrintDialog::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6325,7 +6325,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseDoubleClickEvent(QMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6347,7 +6347,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6369,7 +6369,7 @@ void PythonQtShell_QAbstractPrintDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6391,7 +6391,7 @@ void PythonQtShell_QAbstractPrintDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6413,7 +6413,7 @@ void PythonQtShell_QAbstractPrintDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6435,7 +6435,7 @@ bool PythonQtShell_QAbstractPrintDialog::nativeEvent(const QByteArray& eventTy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6468,7 +6468,7 @@ void PythonQtShell_QAbstractPrintDialog::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6490,7 +6490,7 @@ QPaintEngine* PythonQtShell_QAbstractPrintDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6523,7 +6523,7 @@ void PythonQtShell_QAbstractPrintDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6545,7 +6545,7 @@ QPaintDevice* PythonQtShell_QAbstractPrintDialog::redirected(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6578,7 +6578,7 @@ void PythonQtShell_QAbstractPrintDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6600,7 +6600,7 @@ void PythonQtShell_QAbstractPrintDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6622,7 +6622,7 @@ void PythonQtShell_QAbstractPrintDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6644,7 +6644,7 @@ QPainter* PythonQtShell_QAbstractPrintDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6677,7 +6677,7 @@ void PythonQtShell_QAbstractPrintDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6699,7 +6699,7 @@ void PythonQtShell_QAbstractPrintDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6721,7 +6721,7 @@ void PythonQtShell_QAbstractPrintDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6743,7 +6743,7 @@ void PythonQtShell_QAbstractPrintDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6858,7 +6858,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6891,7 +6891,7 @@ bool PythonQtShell_QAbstractProxyModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6924,7 +6924,7 @@ bool PythonQtShell_QAbstractProxyModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6957,7 +6957,7 @@ void PythonQtShell_QAbstractProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6979,7 +6979,7 @@ int PythonQtShell_QAbstractProxyModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7012,7 +7012,7 @@ void PythonQtShell_QAbstractProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7034,7 +7034,7 @@ QVariant PythonQtShell_QAbstractProxyModel::data(const QModelIndex& proxyIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -7067,7 +7067,7 @@ bool PythonQtShell_QAbstractProxyModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -7100,7 +7100,7 @@ bool PythonQtShell_QAbstractProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7133,7 +7133,7 @@ bool PythonQtShell_QAbstractProxyModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7166,7 +7166,7 @@ void PythonQtShell_QAbstractProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -7188,7 +7188,7 @@ Qt::ItemFlags PythonQtShell_QAbstractProxyModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -7221,7 +7221,7 @@ bool PythonQtShell_QAbstractProxyModel::hasChildren(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7254,7 +7254,7 @@ QVariant PythonQtShell_QAbstractProxyModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -7287,7 +7287,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7320,7 +7320,7 @@ bool PythonQtShell_QAbstractProxyModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7353,7 +7353,7 @@ bool PythonQtShell_QAbstractProxyModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7386,7 +7386,7 @@ QMap PythonQtShell_QAbstractProxyModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -7419,7 +7419,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::mapFromSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7452,7 +7452,7 @@ QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionFromSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -7485,7 +7485,7 @@ QItemSelection PythonQtShell_QAbstractProxyModel::mapSelectionToSource(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -7518,7 +7518,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7551,7 +7551,7 @@ QList PythonQtShell_QAbstractProxyModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -7584,7 +7584,7 @@ QMimeData* PythonQtShell_QAbstractProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -7617,7 +7617,7 @@ QStringList PythonQtShell_QAbstractProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7650,7 +7650,7 @@ bool PythonQtShell_QAbstractProxyModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7683,7 +7683,7 @@ bool PythonQtShell_QAbstractProxyModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -7716,7 +7716,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::parent(const QModelIndex& child if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -7749,7 +7749,7 @@ bool PythonQtShell_QAbstractProxyModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7782,7 +7782,7 @@ bool PythonQtShell_QAbstractProxyModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7815,7 +7815,7 @@ void PythonQtShell_QAbstractProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7837,7 +7837,7 @@ QHash PythonQtShell_QAbstractProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7870,7 +7870,7 @@ int PythonQtShell_QAbstractProxyModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7903,7 +7903,7 @@ bool PythonQtShell_QAbstractProxyModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7936,7 +7936,7 @@ bool PythonQtShell_QAbstractProxyModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7969,7 +7969,7 @@ bool PythonQtShell_QAbstractProxyModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -8002,7 +8002,7 @@ void PythonQtShell_QAbstractProxyModel::setSourceModel(QAbstractItemModel* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -8024,7 +8024,7 @@ QModelIndex PythonQtShell_QAbstractProxyModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -8057,7 +8057,7 @@ void PythonQtShell_QAbstractProxyModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -8079,7 +8079,7 @@ QSize PythonQtShell_QAbstractProxyModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -8112,7 +8112,7 @@ bool PythonQtShell_QAbstractProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8145,7 +8145,7 @@ Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8178,7 +8178,7 @@ Qt::DropActions PythonQtShell_QAbstractProxyModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8211,7 +8211,7 @@ void PythonQtShell_QAbstractProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8286,7 +8286,7 @@ void PythonQtShell_QAbstractScrollArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8308,7 +8308,7 @@ void PythonQtShell_QAbstractScrollArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8330,7 +8330,7 @@ void PythonQtShell_QAbstractScrollArea::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8352,7 +8352,7 @@ void PythonQtShell_QAbstractScrollArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8374,7 +8374,7 @@ void PythonQtShell_QAbstractScrollArea::contextMenuEvent(QContextMenuEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8396,7 +8396,7 @@ void PythonQtShell_QAbstractScrollArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8418,7 +8418,7 @@ int PythonQtShell_QAbstractScrollArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8451,7 +8451,7 @@ void PythonQtShell_QAbstractScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8473,7 +8473,7 @@ void PythonQtShell_QAbstractScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8495,7 +8495,7 @@ void PythonQtShell_QAbstractScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8517,7 +8517,7 @@ void PythonQtShell_QAbstractScrollArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8539,7 +8539,7 @@ void PythonQtShell_QAbstractScrollArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8561,7 +8561,7 @@ bool PythonQtShell_QAbstractScrollArea::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8594,7 +8594,7 @@ bool PythonQtShell_QAbstractScrollArea::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8627,7 +8627,7 @@ void PythonQtShell_QAbstractScrollArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8649,7 +8649,7 @@ bool PythonQtShell_QAbstractScrollArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8682,7 +8682,7 @@ void PythonQtShell_QAbstractScrollArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8704,7 +8704,7 @@ bool PythonQtShell_QAbstractScrollArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8737,7 +8737,7 @@ int PythonQtShell_QAbstractScrollArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8770,7 +8770,7 @@ void PythonQtShell_QAbstractScrollArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8792,7 +8792,7 @@ void PythonQtShell_QAbstractScrollArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8814,7 +8814,7 @@ void PythonQtShell_QAbstractScrollArea::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8836,7 +8836,7 @@ QVariant PythonQtShell_QAbstractScrollArea::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8869,7 +8869,7 @@ void PythonQtShell_QAbstractScrollArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8891,7 +8891,7 @@ void PythonQtShell_QAbstractScrollArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8913,7 +8913,7 @@ void PythonQtShell_QAbstractScrollArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8935,7 +8935,7 @@ int PythonQtShell_QAbstractScrollArea::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8968,7 +8968,7 @@ QSize PythonQtShell_QAbstractScrollArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9001,7 +9001,7 @@ void PythonQtShell_QAbstractScrollArea::mouseDoubleClickEvent(QMouseEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9023,7 +9023,7 @@ void PythonQtShell_QAbstractScrollArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9045,7 +9045,7 @@ void PythonQtShell_QAbstractScrollArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9067,7 +9067,7 @@ void PythonQtShell_QAbstractScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9089,7 +9089,7 @@ void PythonQtShell_QAbstractScrollArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9111,7 +9111,7 @@ bool PythonQtShell_QAbstractScrollArea::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9144,7 +9144,7 @@ QPaintEngine* PythonQtShell_QAbstractScrollArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9177,7 +9177,7 @@ void PythonQtShell_QAbstractScrollArea::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9199,7 +9199,7 @@ QPaintDevice* PythonQtShell_QAbstractScrollArea::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9232,7 +9232,7 @@ void PythonQtShell_QAbstractScrollArea::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9254,7 +9254,7 @@ void PythonQtShell_QAbstractScrollArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9276,7 +9276,7 @@ void PythonQtShell_QAbstractScrollArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9298,7 +9298,7 @@ void PythonQtShell_QAbstractScrollArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9320,7 +9320,7 @@ QPainter* PythonQtShell_QAbstractScrollArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9353,7 +9353,7 @@ void PythonQtShell_QAbstractScrollArea::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9375,7 +9375,7 @@ QSize PythonQtShell_QAbstractScrollArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9408,7 +9408,7 @@ void PythonQtShell_QAbstractScrollArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9430,7 +9430,7 @@ void PythonQtShell_QAbstractScrollArea::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9452,7 +9452,7 @@ bool PythonQtShell_QAbstractScrollArea::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9485,7 +9485,7 @@ QSize PythonQtShell_QAbstractScrollArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9518,7 +9518,7 @@ void PythonQtShell_QAbstractScrollArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9688,7 +9688,7 @@ void PythonQtShell_QAbstractSlider::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9710,7 +9710,7 @@ void PythonQtShell_QAbstractSlider::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9732,7 +9732,7 @@ void PythonQtShell_QAbstractSlider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9754,7 +9754,7 @@ void PythonQtShell_QAbstractSlider::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9776,7 +9776,7 @@ void PythonQtShell_QAbstractSlider::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9798,7 +9798,7 @@ void PythonQtShell_QAbstractSlider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9820,7 +9820,7 @@ int PythonQtShell_QAbstractSlider::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9853,7 +9853,7 @@ void PythonQtShell_QAbstractSlider::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9875,7 +9875,7 @@ void PythonQtShell_QAbstractSlider::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9897,7 +9897,7 @@ void PythonQtShell_QAbstractSlider::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9919,7 +9919,7 @@ void PythonQtShell_QAbstractSlider::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9941,7 +9941,7 @@ void PythonQtShell_QAbstractSlider::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9963,7 +9963,7 @@ bool PythonQtShell_QAbstractSlider::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9996,7 +9996,7 @@ bool PythonQtShell_QAbstractSlider::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10029,7 +10029,7 @@ void PythonQtShell_QAbstractSlider::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10051,7 +10051,7 @@ bool PythonQtShell_QAbstractSlider::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10084,7 +10084,7 @@ void PythonQtShell_QAbstractSlider::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10106,7 +10106,7 @@ bool PythonQtShell_QAbstractSlider::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10139,7 +10139,7 @@ int PythonQtShell_QAbstractSlider::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10172,7 +10172,7 @@ void PythonQtShell_QAbstractSlider::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10194,7 +10194,7 @@ void PythonQtShell_QAbstractSlider::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10216,7 +10216,7 @@ void PythonQtShell_QAbstractSlider::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10238,7 +10238,7 @@ QVariant PythonQtShell_QAbstractSlider::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10271,7 +10271,7 @@ void PythonQtShell_QAbstractSlider::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10293,7 +10293,7 @@ void PythonQtShell_QAbstractSlider::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10315,7 +10315,7 @@ void PythonQtShell_QAbstractSlider::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10337,7 +10337,7 @@ int PythonQtShell_QAbstractSlider::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10370,7 +10370,7 @@ QSize PythonQtShell_QAbstractSlider::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10403,7 +10403,7 @@ void PythonQtShell_QAbstractSlider::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10425,7 +10425,7 @@ void PythonQtShell_QAbstractSlider::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10447,7 +10447,7 @@ void PythonQtShell_QAbstractSlider::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10469,7 +10469,7 @@ void PythonQtShell_QAbstractSlider::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10491,7 +10491,7 @@ void PythonQtShell_QAbstractSlider::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10513,7 +10513,7 @@ bool PythonQtShell_QAbstractSlider::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10546,7 +10546,7 @@ QPaintEngine* PythonQtShell_QAbstractSlider::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10579,7 +10579,7 @@ void PythonQtShell_QAbstractSlider::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10601,7 +10601,7 @@ QPaintDevice* PythonQtShell_QAbstractSlider::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10634,7 +10634,7 @@ void PythonQtShell_QAbstractSlider::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10656,7 +10656,7 @@ void PythonQtShell_QAbstractSlider::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10678,7 +10678,7 @@ QPainter* PythonQtShell_QAbstractSlider::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10711,7 +10711,7 @@ void PythonQtShell_QAbstractSlider::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10733,7 +10733,7 @@ QSize PythonQtShell_QAbstractSlider::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10766,7 +10766,7 @@ void PythonQtShell_QAbstractSlider::sliderChange(QAbstractSlider::SliderChange if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -10788,7 +10788,7 @@ void PythonQtShell_QAbstractSlider::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10810,7 +10810,7 @@ void PythonQtShell_QAbstractSlider::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10832,7 +10832,7 @@ void PythonQtShell_QAbstractSlider::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10997,7 +10997,7 @@ void PythonQtShell_QAbstractSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11019,7 +11019,7 @@ void PythonQtShell_QAbstractSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11041,7 +11041,7 @@ void PythonQtShell_QAbstractSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11063,7 +11063,7 @@ void PythonQtShell_QAbstractSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11085,7 +11085,7 @@ void PythonQtShell_QAbstractSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11107,7 +11107,7 @@ void PythonQtShell_QAbstractSpinBox::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11129,7 +11129,7 @@ void PythonQtShell_QAbstractSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11151,7 +11151,7 @@ int PythonQtShell_QAbstractSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11184,7 +11184,7 @@ void PythonQtShell_QAbstractSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11206,7 +11206,7 @@ void PythonQtShell_QAbstractSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11228,7 +11228,7 @@ void PythonQtShell_QAbstractSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11250,7 +11250,7 @@ void PythonQtShell_QAbstractSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11272,7 +11272,7 @@ void PythonQtShell_QAbstractSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11294,7 +11294,7 @@ bool PythonQtShell_QAbstractSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11327,7 +11327,7 @@ bool PythonQtShell_QAbstractSpinBox::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11360,7 +11360,7 @@ void PythonQtShell_QAbstractSpinBox::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11382,7 +11382,7 @@ void PythonQtShell_QAbstractSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11404,7 +11404,7 @@ bool PythonQtShell_QAbstractSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11437,7 +11437,7 @@ void PythonQtShell_QAbstractSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11459,7 +11459,7 @@ bool PythonQtShell_QAbstractSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11492,7 +11492,7 @@ int PythonQtShell_QAbstractSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11525,7 +11525,7 @@ void PythonQtShell_QAbstractSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11547,7 +11547,7 @@ void PythonQtShell_QAbstractSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11569,7 +11569,7 @@ void PythonQtShell_QAbstractSpinBox::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11591,7 +11591,7 @@ QVariant PythonQtShell_QAbstractSpinBox::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11624,7 +11624,7 @@ void PythonQtShell_QAbstractSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11646,7 +11646,7 @@ void PythonQtShell_QAbstractSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11668,7 +11668,7 @@ void PythonQtShell_QAbstractSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11690,7 +11690,7 @@ int PythonQtShell_QAbstractSpinBox::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11723,7 +11723,7 @@ void PythonQtShell_QAbstractSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11745,7 +11745,7 @@ void PythonQtShell_QAbstractSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11767,7 +11767,7 @@ void PythonQtShell_QAbstractSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11789,7 +11789,7 @@ void PythonQtShell_QAbstractSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11811,7 +11811,7 @@ void PythonQtShell_QAbstractSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11833,7 +11833,7 @@ bool PythonQtShell_QAbstractSpinBox::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11866,7 +11866,7 @@ QPaintEngine* PythonQtShell_QAbstractSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11899,7 +11899,7 @@ void PythonQtShell_QAbstractSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11921,7 +11921,7 @@ QPaintDevice* PythonQtShell_QAbstractSpinBox::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11954,7 +11954,7 @@ void PythonQtShell_QAbstractSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11976,7 +11976,7 @@ void PythonQtShell_QAbstractSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11998,7 +11998,7 @@ QPainter* PythonQtShell_QAbstractSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12031,7 +12031,7 @@ void PythonQtShell_QAbstractSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12053,7 +12053,7 @@ void PythonQtShell_QAbstractSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12075,7 +12075,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QAbstractSpinBox::stepEnabled() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -12108,7 +12108,7 @@ void PythonQtShell_QAbstractSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12130,7 +12130,7 @@ void PythonQtShell_QAbstractSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12152,7 +12152,7 @@ QValidator::State PythonQtShell_QAbstractSpinBox::validate(QString& input0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12185,7 +12185,7 @@ void PythonQtShell_QAbstractSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12390,7 +12390,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::buddy(const QModelIndex& index0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -12423,7 +12423,7 @@ bool PythonQtShell_QAbstractTableModel::canDropMimeData(const QMimeData* data0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12456,7 +12456,7 @@ bool PythonQtShell_QAbstractTableModel::canFetchMore(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -12489,7 +12489,7 @@ void PythonQtShell_QAbstractTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12511,7 +12511,7 @@ int PythonQtShell_QAbstractTableModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12544,7 +12544,7 @@ void PythonQtShell_QAbstractTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12566,7 +12566,7 @@ QVariant PythonQtShell_QAbstractTableModel::data(const QModelIndex& index0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -12599,7 +12599,7 @@ bool PythonQtShell_QAbstractTableModel::dropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -12632,7 +12632,7 @@ bool PythonQtShell_QAbstractTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12665,7 +12665,7 @@ bool PythonQtShell_QAbstractTableModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12698,7 +12698,7 @@ void PythonQtShell_QAbstractTableModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -12720,7 +12720,7 @@ Qt::ItemFlags PythonQtShell_QAbstractTableModel::flags(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -12753,7 +12753,7 @@ QVariant PythonQtShell_QAbstractTableModel::headerData(int section0, Qt::Orien if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -12786,7 +12786,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::index(int row0, int column1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12819,7 +12819,7 @@ bool PythonQtShell_QAbstractTableModel::insertColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12852,7 +12852,7 @@ bool PythonQtShell_QAbstractTableModel::insertRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -12885,7 +12885,7 @@ QMap PythonQtShell_QAbstractTableModel::itemData(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -12918,7 +12918,7 @@ QList PythonQtShell_QAbstractTableModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -12951,7 +12951,7 @@ QMimeData* PythonQtShell_QAbstractTableModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -12984,7 +12984,7 @@ QStringList PythonQtShell_QAbstractTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -13017,7 +13017,7 @@ bool PythonQtShell_QAbstractTableModel::moveColumns(const QModelIndex& sourceP if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13050,7 +13050,7 @@ bool PythonQtShell_QAbstractTableModel::moveRows(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -13083,7 +13083,7 @@ bool PythonQtShell_QAbstractTableModel::removeColumns(int column0, int count1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13116,7 +13116,7 @@ bool PythonQtShell_QAbstractTableModel::removeRows(int row0, int count1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -13149,7 +13149,7 @@ void PythonQtShell_QAbstractTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13171,7 +13171,7 @@ QHash PythonQtShell_QAbstractTableModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -13204,7 +13204,7 @@ int PythonQtShell_QAbstractTableModel::rowCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -13237,7 +13237,7 @@ bool PythonQtShell_QAbstractTableModel::setData(const QModelIndex& index0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -13270,7 +13270,7 @@ bool PythonQtShell_QAbstractTableModel::setHeaderData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -13303,7 +13303,7 @@ bool PythonQtShell_QAbstractTableModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -13336,7 +13336,7 @@ QModelIndex PythonQtShell_QAbstractTableModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -13369,7 +13369,7 @@ void PythonQtShell_QAbstractTableModel::sort(int column0, Qt::SortOrder order1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -13391,7 +13391,7 @@ QSize PythonQtShell_QAbstractTableModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -13424,7 +13424,7 @@ bool PythonQtShell_QAbstractTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13457,7 +13457,7 @@ Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13490,7 +13490,7 @@ Qt::DropActions PythonQtShell_QAbstractTableModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -13523,7 +13523,7 @@ void PythonQtShell_QAbstractTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13568,7 +13568,7 @@ QRectF PythonQtShell_QAbstractTextDocumentLayout::blockBoundingRect(const QText if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -13601,7 +13601,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13623,7 +13623,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13645,7 +13645,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::documentChanged(int from0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -13667,7 +13667,7 @@ QSizeF PythonQtShell_QAbstractTextDocumentLayout::documentSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -13700,7 +13700,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::draw(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -13722,7 +13722,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::drawInlineObject(QPainter* pain if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -13744,7 +13744,7 @@ bool PythonQtShell_QAbstractTextDocumentLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13777,7 +13777,7 @@ bool PythonQtShell_QAbstractTextDocumentLayout::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13810,7 +13810,7 @@ QRectF PythonQtShell_QAbstractTextDocumentLayout::frameBoundingRect(QTextFrame* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -13843,7 +13843,7 @@ int PythonQtShell_QAbstractTextDocumentLayout::hitTest(const QPointF& point0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -13876,7 +13876,7 @@ int PythonQtShell_QAbstractTextDocumentLayout::pageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13909,7 +13909,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::positionInlineObject(QTextInline if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -13931,7 +13931,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::resizeInlineObject(QTextInlineOb if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -13953,7 +13953,7 @@ void PythonQtShell_QAbstractTextDocumentLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14145,7 +14145,7 @@ void PythonQtShell_QAction::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14167,7 +14167,7 @@ void PythonQtShell_QAction::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14189,7 +14189,7 @@ bool PythonQtShell_QAction::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14222,7 +14222,7 @@ bool PythonQtShell_QAction::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14255,7 +14255,7 @@ void PythonQtShell_QAction::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14566,7 +14566,7 @@ void PythonQtShell_QActionGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14588,7 +14588,7 @@ void PythonQtShell_QActionGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14610,7 +14610,7 @@ bool PythonQtShell_QActionGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14643,7 +14643,7 @@ bool PythonQtShell_QActionGroup::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14676,7 +14676,7 @@ void PythonQtShell_QActionGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15054,7 +15054,7 @@ void PythonQtShell_QBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -15076,7 +15076,7 @@ void PythonQtShell_QBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15098,7 +15098,7 @@ QSizePolicy::ControlTypes PythonQtShell_QBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -15131,7 +15131,7 @@ int PythonQtShell_QBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15164,7 +15164,7 @@ void PythonQtShell_QBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15186,7 +15186,7 @@ bool PythonQtShell_QBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15219,7 +15219,7 @@ bool PythonQtShell_QBoxLayout::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15252,7 +15252,7 @@ Qt::Orientations PythonQtShell_QBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -15285,7 +15285,7 @@ QRect PythonQtShell_QBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -15318,7 +15318,7 @@ bool PythonQtShell_QBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15351,7 +15351,7 @@ int PythonQtShell_QBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15384,7 +15384,7 @@ int PythonQtShell_QBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -15417,7 +15417,7 @@ void PythonQtShell_QBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15439,7 +15439,7 @@ bool PythonQtShell_QBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15472,7 +15472,7 @@ QLayoutItem* PythonQtShell_QBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15505,7 +15505,7 @@ QLayout* PythonQtShell_QBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -15538,7 +15538,7 @@ QSize PythonQtShell_QBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15571,7 +15571,7 @@ int PythonQtShell_QBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15604,7 +15604,7 @@ QSize PythonQtShell_QBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15637,7 +15637,7 @@ void PythonQtShell_QBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -15659,7 +15659,7 @@ QSize PythonQtShell_QBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15692,7 +15692,7 @@ QLayoutItem* PythonQtShell_QBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -15725,7 +15725,7 @@ void PythonQtShell_QBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15890,7 +15890,7 @@ void PythonQtShell_QButtonGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15912,7 +15912,7 @@ void PythonQtShell_QButtonGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15934,7 +15934,7 @@ bool PythonQtShell_QButtonGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15967,7 +15967,7 @@ bool PythonQtShell_QButtonGroup::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16000,7 +16000,7 @@ void PythonQtShell_QButtonGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16095,7 +16095,7 @@ void PythonQtShell_QCalendarWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -16117,7 +16117,7 @@ void PythonQtShell_QCalendarWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16139,7 +16139,7 @@ void PythonQtShell_QCalendarWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16161,7 +16161,7 @@ void PythonQtShell_QCalendarWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -16183,7 +16183,7 @@ void PythonQtShell_QCalendarWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -16205,7 +16205,7 @@ void PythonQtShell_QCalendarWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16227,7 +16227,7 @@ int PythonQtShell_QCalendarWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16260,7 +16260,7 @@ void PythonQtShell_QCalendarWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -16282,7 +16282,7 @@ void PythonQtShell_QCalendarWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -16304,7 +16304,7 @@ void PythonQtShell_QCalendarWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -16326,7 +16326,7 @@ void PythonQtShell_QCalendarWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -16348,7 +16348,7 @@ void PythonQtShell_QCalendarWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16370,7 +16370,7 @@ bool PythonQtShell_QCalendarWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16403,7 +16403,7 @@ bool PythonQtShell_QCalendarWidget::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16436,7 +16436,7 @@ void PythonQtShell_QCalendarWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16458,7 +16458,7 @@ bool PythonQtShell_QCalendarWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -16491,7 +16491,7 @@ void PythonQtShell_QCalendarWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -16513,7 +16513,7 @@ bool PythonQtShell_QCalendarWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -16546,7 +16546,7 @@ int PythonQtShell_QCalendarWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16579,7 +16579,7 @@ void PythonQtShell_QCalendarWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -16601,7 +16601,7 @@ void PythonQtShell_QCalendarWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -16623,7 +16623,7 @@ void PythonQtShell_QCalendarWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -16645,7 +16645,7 @@ QVariant PythonQtShell_QCalendarWidget::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -16678,7 +16678,7 @@ void PythonQtShell_QCalendarWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16700,7 +16700,7 @@ void PythonQtShell_QCalendarWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -16722,7 +16722,7 @@ void PythonQtShell_QCalendarWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16744,7 +16744,7 @@ int PythonQtShell_QCalendarWidget::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -16777,7 +16777,7 @@ QSize PythonQtShell_QCalendarWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16810,7 +16810,7 @@ void PythonQtShell_QCalendarWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16832,7 +16832,7 @@ void PythonQtShell_QCalendarWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16854,7 +16854,7 @@ void PythonQtShell_QCalendarWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16876,7 +16876,7 @@ void PythonQtShell_QCalendarWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -16898,7 +16898,7 @@ void PythonQtShell_QCalendarWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -16920,7 +16920,7 @@ bool PythonQtShell_QCalendarWidget::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -16953,7 +16953,7 @@ void PythonQtShell_QCalendarWidget::paintCell(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintCell"); + static PyObject* name = PyUnicode_FromString("paintCell"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QDate&"}; @@ -16975,7 +16975,7 @@ QPaintEngine* PythonQtShell_QCalendarWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -17008,7 +17008,7 @@ void PythonQtShell_QCalendarWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -17030,7 +17030,7 @@ QPaintDevice* PythonQtShell_QCalendarWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -17063,7 +17063,7 @@ void PythonQtShell_QCalendarWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -17085,7 +17085,7 @@ void PythonQtShell_QCalendarWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -17107,7 +17107,7 @@ QPainter* PythonQtShell_QCalendarWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -17140,7 +17140,7 @@ void PythonQtShell_QCalendarWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -17162,7 +17162,7 @@ QSize PythonQtShell_QCalendarWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -17195,7 +17195,7 @@ void PythonQtShell_QCalendarWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -17217,7 +17217,7 @@ void PythonQtShell_QCalendarWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17239,7 +17239,7 @@ void PythonQtShell_QCalendarWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17439,7 +17439,7 @@ void PythonQtShell_QCheckBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17461,7 +17461,7 @@ void PythonQtShell_QCheckBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17483,7 +17483,7 @@ void PythonQtShell_QCheckBox::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17505,7 +17505,7 @@ void PythonQtShell_QCheckBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17527,7 +17527,7 @@ void PythonQtShell_QCheckBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17549,7 +17549,7 @@ void PythonQtShell_QCheckBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17571,7 +17571,7 @@ void PythonQtShell_QCheckBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17593,7 +17593,7 @@ int PythonQtShell_QCheckBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17626,7 +17626,7 @@ void PythonQtShell_QCheckBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17648,7 +17648,7 @@ void PythonQtShell_QCheckBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17670,7 +17670,7 @@ void PythonQtShell_QCheckBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17692,7 +17692,7 @@ void PythonQtShell_QCheckBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17714,7 +17714,7 @@ void PythonQtShell_QCheckBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17736,7 +17736,7 @@ bool PythonQtShell_QCheckBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17769,7 +17769,7 @@ bool PythonQtShell_QCheckBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17802,7 +17802,7 @@ void PythonQtShell_QCheckBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17824,7 +17824,7 @@ bool PythonQtShell_QCheckBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -17857,7 +17857,7 @@ void PythonQtShell_QCheckBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -17879,7 +17879,7 @@ bool PythonQtShell_QCheckBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17912,7 +17912,7 @@ int PythonQtShell_QCheckBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -17945,7 +17945,7 @@ void PythonQtShell_QCheckBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -17967,7 +17967,7 @@ bool PythonQtShell_QCheckBox::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -18000,7 +18000,7 @@ void PythonQtShell_QCheckBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18022,7 +18022,7 @@ void PythonQtShell_QCheckBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18044,7 +18044,7 @@ QVariant PythonQtShell_QCheckBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18077,7 +18077,7 @@ void PythonQtShell_QCheckBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18099,7 +18099,7 @@ void PythonQtShell_QCheckBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18121,7 +18121,7 @@ void PythonQtShell_QCheckBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18143,7 +18143,7 @@ int PythonQtShell_QCheckBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18176,7 +18176,7 @@ QSize PythonQtShell_QCheckBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18209,7 +18209,7 @@ void PythonQtShell_QCheckBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18231,7 +18231,7 @@ void PythonQtShell_QCheckBox::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18253,7 +18253,7 @@ void PythonQtShell_QCheckBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18275,7 +18275,7 @@ void PythonQtShell_QCheckBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18297,7 +18297,7 @@ void PythonQtShell_QCheckBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18319,7 +18319,7 @@ bool PythonQtShell_QCheckBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18352,7 +18352,7 @@ void PythonQtShell_QCheckBox::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18374,7 +18374,7 @@ QPaintEngine* PythonQtShell_QCheckBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18407,7 +18407,7 @@ void PythonQtShell_QCheckBox::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18429,7 +18429,7 @@ QPaintDevice* PythonQtShell_QCheckBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18462,7 +18462,7 @@ void PythonQtShell_QCheckBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18484,7 +18484,7 @@ void PythonQtShell_QCheckBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -18506,7 +18506,7 @@ QPainter* PythonQtShell_QCheckBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18539,7 +18539,7 @@ void PythonQtShell_QCheckBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18561,7 +18561,7 @@ QSize PythonQtShell_QCheckBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18594,7 +18594,7 @@ void PythonQtShell_QCheckBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18616,7 +18616,7 @@ void PythonQtShell_QCheckBox::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18638,7 +18638,7 @@ void PythonQtShell_QCheckBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -18805,7 +18805,7 @@ void PythonQtShell_QColorDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -18827,7 +18827,7 @@ void PythonQtShell_QColorDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18849,7 +18849,7 @@ void PythonQtShell_QColorDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18871,7 +18871,7 @@ void PythonQtShell_QColorDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18893,7 +18893,7 @@ void PythonQtShell_QColorDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18915,7 +18915,7 @@ void PythonQtShell_QColorDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18937,7 +18937,7 @@ void PythonQtShell_QColorDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18959,7 +18959,7 @@ int PythonQtShell_QColorDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18992,7 +18992,7 @@ void PythonQtShell_QColorDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -19014,7 +19014,7 @@ void PythonQtShell_QColorDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -19036,7 +19036,7 @@ void PythonQtShell_QColorDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -19058,7 +19058,7 @@ void PythonQtShell_QColorDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -19080,7 +19080,7 @@ void PythonQtShell_QColorDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -19102,7 +19102,7 @@ void PythonQtShell_QColorDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19124,7 +19124,7 @@ bool PythonQtShell_QColorDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19157,7 +19157,7 @@ bool PythonQtShell_QColorDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -19190,7 +19190,7 @@ int PythonQtShell_QColorDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -19223,7 +19223,7 @@ void PythonQtShell_QColorDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19245,7 +19245,7 @@ bool PythonQtShell_QColorDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19278,7 +19278,7 @@ void PythonQtShell_QColorDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19300,7 +19300,7 @@ bool PythonQtShell_QColorDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19333,7 +19333,7 @@ int PythonQtShell_QColorDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19366,7 +19366,7 @@ void PythonQtShell_QColorDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19388,7 +19388,7 @@ void PythonQtShell_QColorDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19410,7 +19410,7 @@ void PythonQtShell_QColorDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19432,7 +19432,7 @@ QVariant PythonQtShell_QColorDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19465,7 +19465,7 @@ void PythonQtShell_QColorDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19487,7 +19487,7 @@ void PythonQtShell_QColorDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19509,7 +19509,7 @@ void PythonQtShell_QColorDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19531,7 +19531,7 @@ int PythonQtShell_QColorDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19564,7 +19564,7 @@ void PythonQtShell_QColorDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19586,7 +19586,7 @@ void PythonQtShell_QColorDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19608,7 +19608,7 @@ void PythonQtShell_QColorDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19630,7 +19630,7 @@ void PythonQtShell_QColorDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19652,7 +19652,7 @@ void PythonQtShell_QColorDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19674,7 +19674,7 @@ bool PythonQtShell_QColorDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19707,7 +19707,7 @@ QPaintEngine* PythonQtShell_QColorDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19740,7 +19740,7 @@ void PythonQtShell_QColorDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19762,7 +19762,7 @@ QPaintDevice* PythonQtShell_QColorDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19795,7 +19795,7 @@ void PythonQtShell_QColorDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19817,7 +19817,7 @@ void PythonQtShell_QColorDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19839,7 +19839,7 @@ void PythonQtShell_QColorDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -19861,7 +19861,7 @@ QPainter* PythonQtShell_QColorDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19894,7 +19894,7 @@ void PythonQtShell_QColorDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19916,7 +19916,7 @@ void PythonQtShell_QColorDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -19938,7 +19938,7 @@ void PythonQtShell_QColorDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -19960,7 +19960,7 @@ void PythonQtShell_QColorDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -20084,7 +20084,7 @@ void PythonQtShell_QColumnView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -20106,7 +20106,7 @@ void PythonQtShell_QColumnView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20128,7 +20128,7 @@ void PythonQtShell_QColumnView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -20150,7 +20150,7 @@ void PythonQtShell_QColumnView::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -20172,7 +20172,7 @@ void PythonQtShell_QColumnView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -20194,7 +20194,7 @@ void PythonQtShell_QColumnView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -20216,7 +20216,7 @@ void PythonQtShell_QColumnView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -20238,7 +20238,7 @@ QAbstractItemView* PythonQtShell_QColumnView::createColumn(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createColumn"); + static PyObject* name = PyUnicode_FromString("createColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractItemView*" , "const QModelIndex&"}; @@ -20271,7 +20271,7 @@ void PythonQtShell_QColumnView::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -20293,7 +20293,7 @@ void PythonQtShell_QColumnView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20315,7 +20315,7 @@ void PythonQtShell_QColumnView::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -20337,7 +20337,7 @@ int PythonQtShell_QColumnView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20370,7 +20370,7 @@ void PythonQtShell_QColumnView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -20392,7 +20392,7 @@ void PythonQtShell_QColumnView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -20414,7 +20414,7 @@ void PythonQtShell_QColumnView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -20436,7 +20436,7 @@ void PythonQtShell_QColumnView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -20458,7 +20458,7 @@ void PythonQtShell_QColumnView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -20480,7 +20480,7 @@ bool PythonQtShell_QColumnView::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -20513,7 +20513,7 @@ void PythonQtShell_QColumnView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -20535,7 +20535,7 @@ void PythonQtShell_QColumnView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -20557,7 +20557,7 @@ bool PythonQtShell_QColumnView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -20590,7 +20590,7 @@ bool PythonQtShell_QColumnView::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -20623,7 +20623,7 @@ void PythonQtShell_QColumnView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20645,7 +20645,7 @@ bool PythonQtShell_QColumnView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -20678,7 +20678,7 @@ void PythonQtShell_QColumnView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -20700,7 +20700,7 @@ bool PythonQtShell_QColumnView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -20733,7 +20733,7 @@ int PythonQtShell_QColumnView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -20766,7 +20766,7 @@ void PythonQtShell_QColumnView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -20788,7 +20788,7 @@ int PythonQtShell_QColumnView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -20821,7 +20821,7 @@ void PythonQtShell_QColumnView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -20843,7 +20843,7 @@ void PythonQtShell_QColumnView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -20865,7 +20865,7 @@ QModelIndex PythonQtShell_QColumnView::indexAt(const QPoint& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -20898,7 +20898,7 @@ void PythonQtShell_QColumnView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -20920,7 +20920,7 @@ void PythonQtShell_QColumnView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -20942,7 +20942,7 @@ QVariant PythonQtShell_QColumnView::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -20975,7 +20975,7 @@ bool PythonQtShell_QColumnView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -21008,7 +21008,7 @@ void PythonQtShell_QColumnView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21030,7 +21030,7 @@ void PythonQtShell_QColumnView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -21052,7 +21052,7 @@ void PythonQtShell_QColumnView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -21074,7 +21074,7 @@ void PythonQtShell_QColumnView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -21096,7 +21096,7 @@ int PythonQtShell_QColumnView::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -21129,7 +21129,7 @@ QSize PythonQtShell_QColumnView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -21162,7 +21162,7 @@ void PythonQtShell_QColumnView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21184,7 +21184,7 @@ void PythonQtShell_QColumnView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21206,7 +21206,7 @@ void PythonQtShell_QColumnView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21228,7 +21228,7 @@ void PythonQtShell_QColumnView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -21250,7 +21250,7 @@ QModelIndex PythonQtShell_QColumnView::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -21283,7 +21283,7 @@ void PythonQtShell_QColumnView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -21305,7 +21305,7 @@ bool PythonQtShell_QColumnView::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -21338,7 +21338,7 @@ QPaintEngine* PythonQtShell_QColumnView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -21371,7 +21371,7 @@ void PythonQtShell_QColumnView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -21393,7 +21393,7 @@ QPaintDevice* PythonQtShell_QColumnView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -21426,7 +21426,7 @@ void PythonQtShell_QColumnView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21448,7 +21448,7 @@ void PythonQtShell_QColumnView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -21470,7 +21470,7 @@ void PythonQtShell_QColumnView::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -21492,7 +21492,7 @@ void PythonQtShell_QColumnView::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -21514,7 +21514,7 @@ void PythonQtShell_QColumnView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -21536,7 +21536,7 @@ void PythonQtShell_QColumnView::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -21558,7 +21558,7 @@ void PythonQtShell_QColumnView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -21580,7 +21580,7 @@ QList PythonQtShell_QColumnView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -21613,7 +21613,7 @@ void PythonQtShell_QColumnView::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -21635,7 +21635,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QColumnView::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -21668,7 +21668,7 @@ void PythonQtShell_QColumnView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -21690,7 +21690,7 @@ void PythonQtShell_QColumnView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -21712,7 +21712,7 @@ void PythonQtShell_QColumnView::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -21734,7 +21734,7 @@ void PythonQtShell_QColumnView::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -21756,7 +21756,7 @@ void PythonQtShell_QColumnView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -21778,7 +21778,7 @@ void PythonQtShell_QColumnView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -21800,7 +21800,7 @@ QPainter* PythonQtShell_QColumnView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -21833,7 +21833,7 @@ void PythonQtShell_QColumnView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -21855,7 +21855,7 @@ QSize PythonQtShell_QColumnView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -21888,7 +21888,7 @@ int PythonQtShell_QColumnView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -21921,7 +21921,7 @@ int PythonQtShell_QColumnView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -21954,7 +21954,7 @@ void PythonQtShell_QColumnView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -21976,7 +21976,7 @@ void PythonQtShell_QColumnView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -21998,7 +21998,7 @@ void PythonQtShell_QColumnView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -22020,7 +22020,7 @@ void PythonQtShell_QColumnView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22042,7 +22042,7 @@ void PythonQtShell_QColumnView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22064,7 +22064,7 @@ void PythonQtShell_QColumnView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22086,7 +22086,7 @@ int PythonQtShell_QColumnView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -22119,7 +22119,7 @@ void PythonQtShell_QColumnView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -22141,7 +22141,7 @@ void PythonQtShell_QColumnView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -22163,7 +22163,7 @@ QStyleOptionViewItem PythonQtShell_QColumnView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -22196,7 +22196,7 @@ bool PythonQtShell_QColumnView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22229,7 +22229,7 @@ QSize PythonQtShell_QColumnView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -22262,7 +22262,7 @@ QRect PythonQtShell_QColumnView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -22295,7 +22295,7 @@ QRegion PythonQtShell_QColumnView::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -22328,7 +22328,7 @@ void PythonQtShell_QColumnView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -22413,7 +22413,7 @@ void PythonQtShell_QComboBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -22435,7 +22435,7 @@ void PythonQtShell_QComboBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22457,7 +22457,7 @@ void PythonQtShell_QComboBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -22479,7 +22479,7 @@ void PythonQtShell_QComboBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -22501,7 +22501,7 @@ void PythonQtShell_QComboBox::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -22523,7 +22523,7 @@ void PythonQtShell_QComboBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22545,7 +22545,7 @@ int PythonQtShell_QComboBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -22578,7 +22578,7 @@ void PythonQtShell_QComboBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -22600,7 +22600,7 @@ void PythonQtShell_QComboBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -22622,7 +22622,7 @@ void PythonQtShell_QComboBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -22644,7 +22644,7 @@ void PythonQtShell_QComboBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -22666,7 +22666,7 @@ void PythonQtShell_QComboBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -22688,7 +22688,7 @@ bool PythonQtShell_QComboBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -22721,7 +22721,7 @@ bool PythonQtShell_QComboBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -22754,7 +22754,7 @@ void PythonQtShell_QComboBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -22776,7 +22776,7 @@ bool PythonQtShell_QComboBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -22809,7 +22809,7 @@ void PythonQtShell_QComboBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -22831,7 +22831,7 @@ bool PythonQtShell_QComboBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -22864,7 +22864,7 @@ int PythonQtShell_QComboBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -22897,7 +22897,7 @@ void PythonQtShell_QComboBox::hideEvent(QHideEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -22919,7 +22919,7 @@ void PythonQtShell_QComboBox::hidePopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -22941,7 +22941,7 @@ void PythonQtShell_QComboBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -22963,7 +22963,7 @@ void PythonQtShell_QComboBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -22985,7 +22985,7 @@ QVariant PythonQtShell_QComboBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -23018,7 +23018,7 @@ void PythonQtShell_QComboBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -23040,7 +23040,7 @@ void PythonQtShell_QComboBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -23062,7 +23062,7 @@ void PythonQtShell_QComboBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -23084,7 +23084,7 @@ int PythonQtShell_QComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -23117,7 +23117,7 @@ QSize PythonQtShell_QComboBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -23150,7 +23150,7 @@ void PythonQtShell_QComboBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23172,7 +23172,7 @@ void PythonQtShell_QComboBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23194,7 +23194,7 @@ void PythonQtShell_QComboBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23216,7 +23216,7 @@ void PythonQtShell_QComboBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -23238,7 +23238,7 @@ void PythonQtShell_QComboBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -23260,7 +23260,7 @@ bool PythonQtShell_QComboBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -23293,7 +23293,7 @@ QPaintEngine* PythonQtShell_QComboBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -23326,7 +23326,7 @@ void PythonQtShell_QComboBox::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -23348,7 +23348,7 @@ QPaintDevice* PythonQtShell_QComboBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -23381,7 +23381,7 @@ void PythonQtShell_QComboBox::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -23403,7 +23403,7 @@ void PythonQtShell_QComboBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -23425,7 +23425,7 @@ QPainter* PythonQtShell_QComboBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -23458,7 +23458,7 @@ void PythonQtShell_QComboBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -23480,7 +23480,7 @@ void PythonQtShell_QComboBox::showPopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -23502,7 +23502,7 @@ QSize PythonQtShell_QComboBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -23535,7 +23535,7 @@ void PythonQtShell_QComboBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -23557,7 +23557,7 @@ void PythonQtShell_QComboBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -23579,7 +23579,7 @@ void PythonQtShell_QComboBox::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -23919,7 +23919,7 @@ void PythonQtShell_QCommandLinkButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -23941,7 +23941,7 @@ void PythonQtShell_QCommandLinkButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -23963,7 +23963,7 @@ void PythonQtShell_QCommandLinkButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -23985,7 +23985,7 @@ void PythonQtShell_QCommandLinkButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -24007,7 +24007,7 @@ void PythonQtShell_QCommandLinkButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -24029,7 +24029,7 @@ void PythonQtShell_QCommandLinkButton::contextMenuEvent(QContextMenuEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -24051,7 +24051,7 @@ void PythonQtShell_QCommandLinkButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24073,7 +24073,7 @@ int PythonQtShell_QCommandLinkButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -24106,7 +24106,7 @@ void PythonQtShell_QCommandLinkButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -24128,7 +24128,7 @@ void PythonQtShell_QCommandLinkButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -24150,7 +24150,7 @@ void PythonQtShell_QCommandLinkButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -24172,7 +24172,7 @@ void PythonQtShell_QCommandLinkButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -24194,7 +24194,7 @@ void PythonQtShell_QCommandLinkButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24216,7 +24216,7 @@ bool PythonQtShell_QCommandLinkButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -24249,7 +24249,7 @@ bool PythonQtShell_QCommandLinkButton::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -24282,7 +24282,7 @@ void PythonQtShell_QCommandLinkButton::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -24304,7 +24304,7 @@ bool PythonQtShell_QCommandLinkButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -24337,7 +24337,7 @@ void PythonQtShell_QCommandLinkButton::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -24359,7 +24359,7 @@ bool PythonQtShell_QCommandLinkButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -24392,7 +24392,7 @@ int PythonQtShell_QCommandLinkButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -24425,7 +24425,7 @@ void PythonQtShell_QCommandLinkButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -24447,7 +24447,7 @@ bool PythonQtShell_QCommandLinkButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -24480,7 +24480,7 @@ void PythonQtShell_QCommandLinkButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -24502,7 +24502,7 @@ void PythonQtShell_QCommandLinkButton::inputMethodEvent(QInputMethodEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -24524,7 +24524,7 @@ QVariant PythonQtShell_QCommandLinkButton::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -24557,7 +24557,7 @@ void PythonQtShell_QCommandLinkButton::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -24579,7 +24579,7 @@ void PythonQtShell_QCommandLinkButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -24601,7 +24601,7 @@ void PythonQtShell_QCommandLinkButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -24623,7 +24623,7 @@ int PythonQtShell_QCommandLinkButton::metric(QPaintDevice::PaintDeviceMetric a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -24656,7 +24656,7 @@ QSize PythonQtShell_QCommandLinkButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -24689,7 +24689,7 @@ void PythonQtShell_QCommandLinkButton::mouseDoubleClickEvent(QMouseEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24711,7 +24711,7 @@ void PythonQtShell_QCommandLinkButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24733,7 +24733,7 @@ void PythonQtShell_QCommandLinkButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24755,7 +24755,7 @@ void PythonQtShell_QCommandLinkButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -24777,7 +24777,7 @@ void PythonQtShell_QCommandLinkButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -24799,7 +24799,7 @@ bool PythonQtShell_QCommandLinkButton::nativeEvent(const QByteArray& eventType if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -24832,7 +24832,7 @@ void PythonQtShell_QCommandLinkButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -24854,7 +24854,7 @@ QPaintEngine* PythonQtShell_QCommandLinkButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -24887,7 +24887,7 @@ void PythonQtShell_QCommandLinkButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -24909,7 +24909,7 @@ QPaintDevice* PythonQtShell_QCommandLinkButton::redirected(QPoint* offset0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -24942,7 +24942,7 @@ void PythonQtShell_QCommandLinkButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -24964,7 +24964,7 @@ void PythonQtShell_QCommandLinkButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -24986,7 +24986,7 @@ QPainter* PythonQtShell_QCommandLinkButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -25019,7 +25019,7 @@ void PythonQtShell_QCommandLinkButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -25041,7 +25041,7 @@ QSize PythonQtShell_QCommandLinkButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -25074,7 +25074,7 @@ void PythonQtShell_QCommandLinkButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -25096,7 +25096,7 @@ void PythonQtShell_QCommandLinkButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -25118,7 +25118,7 @@ void PythonQtShell_QCommandLinkButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -25181,7 +25181,7 @@ void PythonQtShell_QCommonStyle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -25203,7 +25203,7 @@ void PythonQtShell_QCommonStyle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -25225,7 +25225,7 @@ void PythonQtShell_QCommonStyle::drawComplexControl(QStyle::ComplexControl cc0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -25247,7 +25247,7 @@ void PythonQtShell_QCommonStyle::drawControl(QStyle::ControlElement element0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -25269,7 +25269,7 @@ void PythonQtShell_QCommonStyle::drawItemPixmap(QPainter* painter0, const QRect if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -25291,7 +25291,7 @@ void PythonQtShell_QCommonStyle::drawItemText(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -25313,7 +25313,7 @@ void PythonQtShell_QCommonStyle::drawPrimitive(QStyle::PrimitiveElement pe0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -25335,7 +25335,7 @@ bool PythonQtShell_QCommonStyle::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -25368,7 +25368,7 @@ bool PythonQtShell_QCommonStyle::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -25401,7 +25401,7 @@ QPixmap PythonQtShell_QCommonStyle::generatedIconPixmap(QIcon::Mode iconMode0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -25434,7 +25434,7 @@ QStyle::SubControl PythonQtShell_QCommonStyle::hitTestComplexControl(QStyle::Co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -25467,7 +25467,7 @@ QRect PythonQtShell_QCommonStyle::itemPixmapRect(const QRect& r0, int flags1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -25500,7 +25500,7 @@ int PythonQtShell_QCommonStyle::layoutSpacing(QSizePolicy::ControlType control if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -25533,7 +25533,7 @@ int PythonQtShell_QCommonStyle::pixelMetric(QStyle::PixelMetric m0, const QSty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -25566,7 +25566,7 @@ void PythonQtShell_QCommonStyle::polish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -25588,7 +25588,7 @@ void PythonQtShell_QCommonStyle::polish(QPalette& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -25610,7 +25610,7 @@ void PythonQtShell_QCommonStyle::polish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -25632,7 +25632,7 @@ QSize PythonQtShell_QCommonStyle::sizeFromContents(QStyle::ContentsType ct0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -25665,7 +25665,7 @@ QIcon PythonQtShell_QCommonStyle::standardIcon(QStyle::StandardPixmap standard if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -25698,7 +25698,7 @@ QPalette PythonQtShell_QCommonStyle::standardPalette() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -25731,7 +25731,7 @@ QPixmap PythonQtShell_QCommonStyle::standardPixmap(QStyle::StandardPixmap sp0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -25764,7 +25764,7 @@ int PythonQtShell_QCommonStyle::styleHint(QStyle::StyleHint sh0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -25797,7 +25797,7 @@ QRect PythonQtShell_QCommonStyle::subControlRect(QStyle::ComplexControl cc0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -25830,7 +25830,7 @@ QRect PythonQtShell_QCommonStyle::subElementRect(QStyle::SubElement r0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -25863,7 +25863,7 @@ void PythonQtShell_QCommonStyle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -25885,7 +25885,7 @@ void PythonQtShell_QCommonStyle::unpolish(QApplication* application0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -25907,7 +25907,7 @@ void PythonQtShell_QCommonStyle::unpolish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp index dc733057b..aeeeef32f 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui1.cpp @@ -88,7 +88,7 @@ void PythonQtShell_QCompleter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -110,7 +110,7 @@ void PythonQtShell_QCompleter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -132,7 +132,7 @@ bool PythonQtShell_QCompleter::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -165,7 +165,7 @@ bool PythonQtShell_QCompleter::eventFilter(QObject* o0, QEvent* e1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -198,7 +198,7 @@ QString PythonQtShell_QCompleter::pathFromIndex(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pathFromIndex"); + static PyObject* name = PyUnicode_FromString("pathFromIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QModelIndex&"}; @@ -231,7 +231,7 @@ QStringList PythonQtShell_QCompleter::splitPath(const QString& path0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("splitPath"); + static PyObject* name = PyUnicode_FromString("splitPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "const QString&"}; @@ -264,7 +264,7 @@ void PythonQtShell_QCompleter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -559,7 +559,7 @@ void PythonQtShell_QDataWidgetMapper::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -581,7 +581,7 @@ void PythonQtShell_QDataWidgetMapper::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -603,7 +603,7 @@ bool PythonQtShell_QDataWidgetMapper::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -636,7 +636,7 @@ bool PythonQtShell_QDataWidgetMapper::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -669,7 +669,7 @@ void PythonQtShell_QDataWidgetMapper::setCurrentIndex(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -691,7 +691,7 @@ void PythonQtShell_QDataWidgetMapper::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -826,7 +826,7 @@ void PythonQtShell_QDateEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -848,7 +848,7 @@ void PythonQtShell_QDateEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -870,7 +870,7 @@ void PythonQtShell_QDateEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -892,7 +892,7 @@ void PythonQtShell_QDateEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -914,7 +914,7 @@ void PythonQtShell_QDateEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -936,7 +936,7 @@ void PythonQtShell_QDateEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -958,7 +958,7 @@ void PythonQtShell_QDateEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -980,7 +980,7 @@ QDateTime PythonQtShell_QDateEdit::dateTimeFromText(const QString& text0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -1013,7 +1013,7 @@ int PythonQtShell_QDateEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1046,7 +1046,7 @@ void PythonQtShell_QDateEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1068,7 +1068,7 @@ void PythonQtShell_QDateEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1090,7 +1090,7 @@ void PythonQtShell_QDateEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1112,7 +1112,7 @@ void PythonQtShell_QDateEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1134,7 +1134,7 @@ void PythonQtShell_QDateEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1156,7 +1156,7 @@ bool PythonQtShell_QDateEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1189,7 +1189,7 @@ bool PythonQtShell_QDateEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1222,7 +1222,7 @@ void PythonQtShell_QDateEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -1244,7 +1244,7 @@ void PythonQtShell_QDateEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1266,7 +1266,7 @@ bool PythonQtShell_QDateEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1299,7 +1299,7 @@ void PythonQtShell_QDateEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1321,7 +1321,7 @@ bool PythonQtShell_QDateEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1354,7 +1354,7 @@ int PythonQtShell_QDateEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1387,7 +1387,7 @@ void PythonQtShell_QDateEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1409,7 +1409,7 @@ void PythonQtShell_QDateEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1431,7 +1431,7 @@ void PythonQtShell_QDateEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1453,7 +1453,7 @@ QVariant PythonQtShell_QDateEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1486,7 +1486,7 @@ void PythonQtShell_QDateEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1508,7 +1508,7 @@ void PythonQtShell_QDateEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1530,7 +1530,7 @@ void PythonQtShell_QDateEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1552,7 +1552,7 @@ int PythonQtShell_QDateEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1585,7 +1585,7 @@ void PythonQtShell_QDateEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1607,7 +1607,7 @@ void PythonQtShell_QDateEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1629,7 +1629,7 @@ void PythonQtShell_QDateEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1651,7 +1651,7 @@ void PythonQtShell_QDateEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1673,7 +1673,7 @@ void PythonQtShell_QDateEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1695,7 +1695,7 @@ bool PythonQtShell_QDateEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1728,7 +1728,7 @@ QPaintEngine* PythonQtShell_QDateEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1761,7 +1761,7 @@ void PythonQtShell_QDateEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1783,7 +1783,7 @@ QPaintDevice* PythonQtShell_QDateEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1816,7 +1816,7 @@ void PythonQtShell_QDateEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1838,7 +1838,7 @@ void PythonQtShell_QDateEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1860,7 +1860,7 @@ QPainter* PythonQtShell_QDateEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1893,7 +1893,7 @@ void PythonQtShell_QDateEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1915,7 +1915,7 @@ void PythonQtShell_QDateEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1937,7 +1937,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDateEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -1970,7 +1970,7 @@ void PythonQtShell_QDateEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1992,7 +1992,7 @@ QString PythonQtShell_QDateEdit::textFromDateTime(const QDateTime& dt0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2025,7 +2025,7 @@ void PythonQtShell_QDateEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2047,7 +2047,7 @@ QValidator::State PythonQtShell_QDateEdit::validate(QString& input0, int& pos if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2080,7 +2080,7 @@ void PythonQtShell_QDateEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2129,7 +2129,7 @@ void PythonQtShell_QDateTimeEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2151,7 +2151,7 @@ void PythonQtShell_QDateTimeEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2173,7 +2173,7 @@ void PythonQtShell_QDateTimeEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2195,7 +2195,7 @@ void PythonQtShell_QDateTimeEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2217,7 +2217,7 @@ void PythonQtShell_QDateTimeEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2239,7 +2239,7 @@ void PythonQtShell_QDateTimeEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2261,7 +2261,7 @@ void PythonQtShell_QDateTimeEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2283,7 +2283,7 @@ QDateTime PythonQtShell_QDateTimeEdit::dateTimeFromText(const QString& text0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -2316,7 +2316,7 @@ int PythonQtShell_QDateTimeEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2349,7 +2349,7 @@ void PythonQtShell_QDateTimeEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2371,7 +2371,7 @@ void PythonQtShell_QDateTimeEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2393,7 +2393,7 @@ void PythonQtShell_QDateTimeEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2415,7 +2415,7 @@ void PythonQtShell_QDateTimeEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2437,7 +2437,7 @@ void PythonQtShell_QDateTimeEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2459,7 +2459,7 @@ bool PythonQtShell_QDateTimeEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2492,7 +2492,7 @@ bool PythonQtShell_QDateTimeEdit::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2525,7 +2525,7 @@ void PythonQtShell_QDateTimeEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2547,7 +2547,7 @@ void PythonQtShell_QDateTimeEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2569,7 +2569,7 @@ bool PythonQtShell_QDateTimeEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2602,7 +2602,7 @@ void PythonQtShell_QDateTimeEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2624,7 +2624,7 @@ bool PythonQtShell_QDateTimeEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2657,7 +2657,7 @@ int PythonQtShell_QDateTimeEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2690,7 +2690,7 @@ void PythonQtShell_QDateTimeEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2712,7 +2712,7 @@ void PythonQtShell_QDateTimeEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2734,7 +2734,7 @@ void PythonQtShell_QDateTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2756,7 +2756,7 @@ QVariant PythonQtShell_QDateTimeEdit::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2789,7 +2789,7 @@ void PythonQtShell_QDateTimeEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2811,7 +2811,7 @@ void PythonQtShell_QDateTimeEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2833,7 +2833,7 @@ void PythonQtShell_QDateTimeEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2855,7 +2855,7 @@ int PythonQtShell_QDateTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2888,7 +2888,7 @@ void PythonQtShell_QDateTimeEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2910,7 +2910,7 @@ void PythonQtShell_QDateTimeEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2932,7 +2932,7 @@ void PythonQtShell_QDateTimeEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2954,7 +2954,7 @@ void PythonQtShell_QDateTimeEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2976,7 +2976,7 @@ void PythonQtShell_QDateTimeEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2998,7 +2998,7 @@ bool PythonQtShell_QDateTimeEdit::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3031,7 +3031,7 @@ QPaintEngine* PythonQtShell_QDateTimeEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3064,7 +3064,7 @@ void PythonQtShell_QDateTimeEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3086,7 +3086,7 @@ QPaintDevice* PythonQtShell_QDateTimeEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3119,7 +3119,7 @@ void PythonQtShell_QDateTimeEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3141,7 +3141,7 @@ void PythonQtShell_QDateTimeEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3163,7 +3163,7 @@ QPainter* PythonQtShell_QDateTimeEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3196,7 +3196,7 @@ void PythonQtShell_QDateTimeEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3218,7 +3218,7 @@ void PythonQtShell_QDateTimeEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3240,7 +3240,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDateTimeEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -3273,7 +3273,7 @@ void PythonQtShell_QDateTimeEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3295,7 +3295,7 @@ QString PythonQtShell_QDateTimeEdit::textFromDateTime(const QDateTime& dt0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -3328,7 +3328,7 @@ void PythonQtShell_QDateTimeEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3350,7 +3350,7 @@ QValidator::State PythonQtShell_QDateTimeEdit::validate(QString& input0, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3383,7 +3383,7 @@ void PythonQtShell_QDateTimeEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3694,7 +3694,7 @@ void PythonQtShell_QDesktopWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3716,7 +3716,7 @@ void PythonQtShell_QDesktopWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3738,7 +3738,7 @@ void PythonQtShell_QDesktopWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3760,7 +3760,7 @@ void PythonQtShell_QDesktopWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3782,7 +3782,7 @@ void PythonQtShell_QDesktopWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3804,7 +3804,7 @@ void PythonQtShell_QDesktopWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3826,7 +3826,7 @@ int PythonQtShell_QDesktopWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3859,7 +3859,7 @@ void PythonQtShell_QDesktopWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3881,7 +3881,7 @@ void PythonQtShell_QDesktopWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3903,7 +3903,7 @@ void PythonQtShell_QDesktopWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3925,7 +3925,7 @@ void PythonQtShell_QDesktopWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3947,7 +3947,7 @@ void PythonQtShell_QDesktopWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3969,7 +3969,7 @@ bool PythonQtShell_QDesktopWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4002,7 +4002,7 @@ bool PythonQtShell_QDesktopWidget::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4035,7 +4035,7 @@ void PythonQtShell_QDesktopWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4057,7 +4057,7 @@ bool PythonQtShell_QDesktopWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4090,7 +4090,7 @@ void PythonQtShell_QDesktopWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4112,7 +4112,7 @@ bool PythonQtShell_QDesktopWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4145,7 +4145,7 @@ int PythonQtShell_QDesktopWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4178,7 +4178,7 @@ void PythonQtShell_QDesktopWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4200,7 +4200,7 @@ void PythonQtShell_QDesktopWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4222,7 +4222,7 @@ void PythonQtShell_QDesktopWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4244,7 +4244,7 @@ QVariant PythonQtShell_QDesktopWidget::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4277,7 +4277,7 @@ void PythonQtShell_QDesktopWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4299,7 +4299,7 @@ void PythonQtShell_QDesktopWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4321,7 +4321,7 @@ void PythonQtShell_QDesktopWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4343,7 +4343,7 @@ int PythonQtShell_QDesktopWidget::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4376,7 +4376,7 @@ QSize PythonQtShell_QDesktopWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4409,7 +4409,7 @@ void PythonQtShell_QDesktopWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4431,7 +4431,7 @@ void PythonQtShell_QDesktopWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4453,7 +4453,7 @@ void PythonQtShell_QDesktopWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4475,7 +4475,7 @@ void PythonQtShell_QDesktopWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4497,7 +4497,7 @@ void PythonQtShell_QDesktopWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4519,7 +4519,7 @@ bool PythonQtShell_QDesktopWidget::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4552,7 +4552,7 @@ QPaintEngine* PythonQtShell_QDesktopWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4585,7 +4585,7 @@ void PythonQtShell_QDesktopWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4607,7 +4607,7 @@ QPaintDevice* PythonQtShell_QDesktopWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4640,7 +4640,7 @@ void PythonQtShell_QDesktopWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4662,7 +4662,7 @@ void PythonQtShell_QDesktopWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4684,7 +4684,7 @@ QPainter* PythonQtShell_QDesktopWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4717,7 +4717,7 @@ void PythonQtShell_QDesktopWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4739,7 +4739,7 @@ QSize PythonQtShell_QDesktopWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4772,7 +4772,7 @@ void PythonQtShell_QDesktopWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4794,7 +4794,7 @@ void PythonQtShell_QDesktopWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4816,7 +4816,7 @@ void PythonQtShell_QDesktopWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4926,7 +4926,7 @@ void PythonQtShell_QDial::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4948,7 +4948,7 @@ void PythonQtShell_QDial::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4970,7 +4970,7 @@ void PythonQtShell_QDial::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4992,7 +4992,7 @@ void PythonQtShell_QDial::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5014,7 +5014,7 @@ void PythonQtShell_QDial::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5036,7 +5036,7 @@ void PythonQtShell_QDial::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5058,7 +5058,7 @@ int PythonQtShell_QDial::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5091,7 +5091,7 @@ void PythonQtShell_QDial::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5113,7 +5113,7 @@ void PythonQtShell_QDial::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5135,7 +5135,7 @@ void PythonQtShell_QDial::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5157,7 +5157,7 @@ void PythonQtShell_QDial::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5179,7 +5179,7 @@ void PythonQtShell_QDial::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5201,7 +5201,7 @@ bool PythonQtShell_QDial::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5234,7 +5234,7 @@ bool PythonQtShell_QDial::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5267,7 +5267,7 @@ void PythonQtShell_QDial::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5289,7 +5289,7 @@ bool PythonQtShell_QDial::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5322,7 +5322,7 @@ void PythonQtShell_QDial::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5344,7 +5344,7 @@ bool PythonQtShell_QDial::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5377,7 +5377,7 @@ int PythonQtShell_QDial::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5410,7 +5410,7 @@ void PythonQtShell_QDial::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5432,7 +5432,7 @@ void PythonQtShell_QDial::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5454,7 +5454,7 @@ void PythonQtShell_QDial::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5476,7 +5476,7 @@ QVariant PythonQtShell_QDial::inputMethodQuery(Qt::InputMethodQuery arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5509,7 +5509,7 @@ void PythonQtShell_QDial::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5531,7 +5531,7 @@ void PythonQtShell_QDial::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5553,7 +5553,7 @@ void PythonQtShell_QDial::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5575,7 +5575,7 @@ int PythonQtShell_QDial::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5608,7 +5608,7 @@ QSize PythonQtShell_QDial::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5641,7 +5641,7 @@ void PythonQtShell_QDial::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5663,7 +5663,7 @@ void PythonQtShell_QDial::mouseMoveEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5685,7 +5685,7 @@ void PythonQtShell_QDial::mousePressEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5707,7 +5707,7 @@ void PythonQtShell_QDial::mouseReleaseEvent(QMouseEvent* me0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5729,7 +5729,7 @@ void PythonQtShell_QDial::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5751,7 +5751,7 @@ bool PythonQtShell_QDial::nativeEvent(const QByteArray& eventType0, void* mes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5784,7 +5784,7 @@ QPaintEngine* PythonQtShell_QDial::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5817,7 +5817,7 @@ void PythonQtShell_QDial::paintEvent(QPaintEvent* pe0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5839,7 +5839,7 @@ QPaintDevice* PythonQtShell_QDial::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5872,7 +5872,7 @@ void PythonQtShell_QDial::resizeEvent(QResizeEvent* re0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5894,7 +5894,7 @@ void PythonQtShell_QDial::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5916,7 +5916,7 @@ QPainter* PythonQtShell_QDial::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5949,7 +5949,7 @@ void PythonQtShell_QDial::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5971,7 +5971,7 @@ QSize PythonQtShell_QDial::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6004,7 +6004,7 @@ void PythonQtShell_QDial::sliderChange(QAbstractSlider::SliderChange change0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -6026,7 +6026,7 @@ void PythonQtShell_QDial::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6048,7 +6048,7 @@ void PythonQtShell_QDial::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6070,7 +6070,7 @@ void PythonQtShell_QDial::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6155,7 +6155,7 @@ void PythonQtShell_QDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6177,7 +6177,7 @@ void PythonQtShell_QDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6199,7 +6199,7 @@ void PythonQtShell_QDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6221,7 +6221,7 @@ void PythonQtShell_QDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6243,7 +6243,7 @@ void PythonQtShell_QDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6265,7 +6265,7 @@ void PythonQtShell_QDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6287,7 +6287,7 @@ void PythonQtShell_QDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6309,7 +6309,7 @@ int PythonQtShell_QDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6342,7 +6342,7 @@ void PythonQtShell_QDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6364,7 +6364,7 @@ void PythonQtShell_QDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6386,7 +6386,7 @@ void PythonQtShell_QDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6408,7 +6408,7 @@ void PythonQtShell_QDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6430,7 +6430,7 @@ void PythonQtShell_QDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6452,7 +6452,7 @@ void PythonQtShell_QDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6474,7 +6474,7 @@ bool PythonQtShell_QDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6507,7 +6507,7 @@ bool PythonQtShell_QDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6540,7 +6540,7 @@ int PythonQtShell_QDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6573,7 +6573,7 @@ void PythonQtShell_QDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6595,7 +6595,7 @@ bool PythonQtShell_QDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6628,7 +6628,7 @@ void PythonQtShell_QDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6650,7 +6650,7 @@ bool PythonQtShell_QDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6683,7 +6683,7 @@ int PythonQtShell_QDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6716,7 +6716,7 @@ void PythonQtShell_QDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6738,7 +6738,7 @@ void PythonQtShell_QDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6760,7 +6760,7 @@ void PythonQtShell_QDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6782,7 +6782,7 @@ QVariant PythonQtShell_QDialog::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6815,7 +6815,7 @@ void PythonQtShell_QDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6837,7 +6837,7 @@ void PythonQtShell_QDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6859,7 +6859,7 @@ void PythonQtShell_QDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6881,7 +6881,7 @@ int PythonQtShell_QDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6914,7 +6914,7 @@ void PythonQtShell_QDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6936,7 +6936,7 @@ void PythonQtShell_QDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6958,7 +6958,7 @@ void PythonQtShell_QDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6980,7 +6980,7 @@ void PythonQtShell_QDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7002,7 +7002,7 @@ void PythonQtShell_QDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7024,7 +7024,7 @@ bool PythonQtShell_QDialog::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7057,7 +7057,7 @@ void PythonQtShell_QDialog::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7079,7 +7079,7 @@ QPaintEngine* PythonQtShell_QDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7112,7 +7112,7 @@ void PythonQtShell_QDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7134,7 +7134,7 @@ QPaintDevice* PythonQtShell_QDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7167,7 +7167,7 @@ void PythonQtShell_QDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7189,7 +7189,7 @@ void PythonQtShell_QDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7211,7 +7211,7 @@ void PythonQtShell_QDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7233,7 +7233,7 @@ QPainter* PythonQtShell_QDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7266,7 +7266,7 @@ void PythonQtShell_QDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7288,7 +7288,7 @@ void PythonQtShell_QDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7310,7 +7310,7 @@ void PythonQtShell_QDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7332,7 +7332,7 @@ void PythonQtShell_QDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7417,7 +7417,7 @@ void PythonQtShell_QDialogButtonBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7439,7 +7439,7 @@ void PythonQtShell_QDialogButtonBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7461,7 +7461,7 @@ void PythonQtShell_QDialogButtonBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7483,7 +7483,7 @@ void PythonQtShell_QDialogButtonBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7505,7 +7505,7 @@ void PythonQtShell_QDialogButtonBox::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7527,7 +7527,7 @@ void PythonQtShell_QDialogButtonBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7549,7 +7549,7 @@ int PythonQtShell_QDialogButtonBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7582,7 +7582,7 @@ void PythonQtShell_QDialogButtonBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7604,7 +7604,7 @@ void PythonQtShell_QDialogButtonBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7626,7 +7626,7 @@ void PythonQtShell_QDialogButtonBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7648,7 +7648,7 @@ void PythonQtShell_QDialogButtonBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7670,7 +7670,7 @@ void PythonQtShell_QDialogButtonBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7692,7 +7692,7 @@ bool PythonQtShell_QDialogButtonBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7725,7 +7725,7 @@ bool PythonQtShell_QDialogButtonBox::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7758,7 +7758,7 @@ void PythonQtShell_QDialogButtonBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7780,7 +7780,7 @@ bool PythonQtShell_QDialogButtonBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7813,7 +7813,7 @@ void PythonQtShell_QDialogButtonBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7835,7 +7835,7 @@ bool PythonQtShell_QDialogButtonBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7868,7 +7868,7 @@ int PythonQtShell_QDialogButtonBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7901,7 +7901,7 @@ void PythonQtShell_QDialogButtonBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7923,7 +7923,7 @@ void PythonQtShell_QDialogButtonBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7945,7 +7945,7 @@ void PythonQtShell_QDialogButtonBox::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7967,7 +7967,7 @@ QVariant PythonQtShell_QDialogButtonBox::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8000,7 +8000,7 @@ void PythonQtShell_QDialogButtonBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8022,7 +8022,7 @@ void PythonQtShell_QDialogButtonBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8044,7 +8044,7 @@ void PythonQtShell_QDialogButtonBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8066,7 +8066,7 @@ int PythonQtShell_QDialogButtonBox::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8099,7 +8099,7 @@ QSize PythonQtShell_QDialogButtonBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8132,7 +8132,7 @@ void PythonQtShell_QDialogButtonBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8154,7 +8154,7 @@ void PythonQtShell_QDialogButtonBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8176,7 +8176,7 @@ void PythonQtShell_QDialogButtonBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8198,7 +8198,7 @@ void PythonQtShell_QDialogButtonBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8220,7 +8220,7 @@ void PythonQtShell_QDialogButtonBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8242,7 +8242,7 @@ bool PythonQtShell_QDialogButtonBox::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8275,7 +8275,7 @@ QPaintEngine* PythonQtShell_QDialogButtonBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8308,7 +8308,7 @@ void PythonQtShell_QDialogButtonBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8330,7 +8330,7 @@ QPaintDevice* PythonQtShell_QDialogButtonBox::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8363,7 +8363,7 @@ void PythonQtShell_QDialogButtonBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8385,7 +8385,7 @@ void PythonQtShell_QDialogButtonBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8407,7 +8407,7 @@ QPainter* PythonQtShell_QDialogButtonBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8440,7 +8440,7 @@ void PythonQtShell_QDialogButtonBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8462,7 +8462,7 @@ QSize PythonQtShell_QDialogButtonBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8495,7 +8495,7 @@ void PythonQtShell_QDialogButtonBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8517,7 +8517,7 @@ void PythonQtShell_QDialogButtonBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8539,7 +8539,7 @@ void PythonQtShell_QDialogButtonBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8671,7 +8671,7 @@ QModelIndex PythonQtShell_QDirModel::buddy(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -8704,7 +8704,7 @@ bool PythonQtShell_QDirModel::canDropMimeData(const QMimeData* data0, Qt::Drop if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -8737,7 +8737,7 @@ bool PythonQtShell_QDirModel::canFetchMore(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8770,7 +8770,7 @@ void PythonQtShell_QDirModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8792,7 +8792,7 @@ int PythonQtShell_QDirModel::columnCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -8825,7 +8825,7 @@ void PythonQtShell_QDirModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8847,7 +8847,7 @@ QVariant PythonQtShell_QDirModel::data(const QModelIndex& index0, int role1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -8880,7 +8880,7 @@ bool PythonQtShell_QDirModel::dropMimeData(const QMimeData* data0, Qt::DropAct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -8913,7 +8913,7 @@ bool PythonQtShell_QDirModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8946,7 +8946,7 @@ bool PythonQtShell_QDirModel::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8979,7 +8979,7 @@ void PythonQtShell_QDirModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9001,7 +9001,7 @@ Qt::ItemFlags PythonQtShell_QDirModel::flags(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -9034,7 +9034,7 @@ bool PythonQtShell_QDirModel::hasChildren(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -9067,7 +9067,7 @@ QVariant PythonQtShell_QDirModel::headerData(int section0, Qt::Orientation or if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -9100,7 +9100,7 @@ QModelIndex PythonQtShell_QDirModel::index(int row0, int column1, const QMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -9133,7 +9133,7 @@ bool PythonQtShell_QDirModel::insertColumns(int column0, int count1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9166,7 +9166,7 @@ bool PythonQtShell_QDirModel::insertRows(int row0, int count1, const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9199,7 +9199,7 @@ QMap PythonQtShell_QDirModel::itemData(const QModelIndex& ind if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -9232,7 +9232,7 @@ QList PythonQtShell_QDirModel::match(const QModelIndex& start0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -9265,7 +9265,7 @@ QMimeData* PythonQtShell_QDirModel::mimeData(const QList& indexe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -9298,7 +9298,7 @@ QStringList PythonQtShell_QDirModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -9331,7 +9331,7 @@ bool PythonQtShell_QDirModel::moveColumns(const QModelIndex& sourceParent0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -9364,7 +9364,7 @@ bool PythonQtShell_QDirModel::moveRows(const QModelIndex& sourceParent0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -9397,7 +9397,7 @@ QModelIndex PythonQtShell_QDirModel::parent(const QModelIndex& child0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -9430,7 +9430,7 @@ bool PythonQtShell_QDirModel::removeColumns(int column0, int count1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9463,7 +9463,7 @@ bool PythonQtShell_QDirModel::removeRows(int row0, int count1, const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -9496,7 +9496,7 @@ void PythonQtShell_QDirModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9518,7 +9518,7 @@ QHash PythonQtShell_QDirModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -9551,7 +9551,7 @@ int PythonQtShell_QDirModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -9584,7 +9584,7 @@ bool PythonQtShell_QDirModel::setData(const QModelIndex& index0, const QVarian if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -9617,7 +9617,7 @@ bool PythonQtShell_QDirModel::setHeaderData(int section0, Qt::Orientation ori if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -9650,7 +9650,7 @@ bool PythonQtShell_QDirModel::setItemData(const QModelIndex& index0, const QMa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -9683,7 +9683,7 @@ QModelIndex PythonQtShell_QDirModel::sibling(int row0, int column1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -9716,7 +9716,7 @@ void PythonQtShell_QDirModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -9738,7 +9738,7 @@ QSize PythonQtShell_QDirModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -9771,7 +9771,7 @@ bool PythonQtShell_QDirModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9804,7 +9804,7 @@ Qt::DropActions PythonQtShell_QDirModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -9837,7 +9837,7 @@ Qt::DropActions PythonQtShell_QDirModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -9870,7 +9870,7 @@ void PythonQtShell_QDirModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10034,7 +10034,7 @@ void PythonQtShell_QDockWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10056,7 +10056,7 @@ void PythonQtShell_QDockWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10078,7 +10078,7 @@ void PythonQtShell_QDockWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10100,7 +10100,7 @@ void PythonQtShell_QDockWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10122,7 +10122,7 @@ void PythonQtShell_QDockWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10144,7 +10144,7 @@ void PythonQtShell_QDockWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10166,7 +10166,7 @@ int PythonQtShell_QDockWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10199,7 +10199,7 @@ void PythonQtShell_QDockWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10221,7 +10221,7 @@ void PythonQtShell_QDockWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10243,7 +10243,7 @@ void PythonQtShell_QDockWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10265,7 +10265,7 @@ void PythonQtShell_QDockWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10287,7 +10287,7 @@ void PythonQtShell_QDockWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10309,7 +10309,7 @@ bool PythonQtShell_QDockWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10342,7 +10342,7 @@ bool PythonQtShell_QDockWidget::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10375,7 +10375,7 @@ void PythonQtShell_QDockWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10397,7 +10397,7 @@ bool PythonQtShell_QDockWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10430,7 +10430,7 @@ void PythonQtShell_QDockWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10452,7 +10452,7 @@ bool PythonQtShell_QDockWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10485,7 +10485,7 @@ int PythonQtShell_QDockWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10518,7 +10518,7 @@ void PythonQtShell_QDockWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10540,7 +10540,7 @@ void PythonQtShell_QDockWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10562,7 +10562,7 @@ void PythonQtShell_QDockWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10584,7 +10584,7 @@ QVariant PythonQtShell_QDockWidget::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10617,7 +10617,7 @@ void PythonQtShell_QDockWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10639,7 +10639,7 @@ void PythonQtShell_QDockWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10661,7 +10661,7 @@ void PythonQtShell_QDockWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10683,7 +10683,7 @@ int PythonQtShell_QDockWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10716,7 +10716,7 @@ QSize PythonQtShell_QDockWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10749,7 +10749,7 @@ void PythonQtShell_QDockWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10771,7 +10771,7 @@ void PythonQtShell_QDockWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10793,7 +10793,7 @@ void PythonQtShell_QDockWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10815,7 +10815,7 @@ void PythonQtShell_QDockWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10837,7 +10837,7 @@ void PythonQtShell_QDockWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10859,7 +10859,7 @@ bool PythonQtShell_QDockWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10892,7 +10892,7 @@ QPaintEngine* PythonQtShell_QDockWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10925,7 +10925,7 @@ void PythonQtShell_QDockWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10947,7 +10947,7 @@ QPaintDevice* PythonQtShell_QDockWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10980,7 +10980,7 @@ void PythonQtShell_QDockWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11002,7 +11002,7 @@ void PythonQtShell_QDockWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11024,7 +11024,7 @@ QPainter* PythonQtShell_QDockWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11057,7 +11057,7 @@ void PythonQtShell_QDockWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11079,7 +11079,7 @@ QSize PythonQtShell_QDockWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11112,7 +11112,7 @@ void PythonQtShell_QDockWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11134,7 +11134,7 @@ void PythonQtShell_QDockWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11156,7 +11156,7 @@ void PythonQtShell_QDockWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11270,7 +11270,7 @@ void PythonQtShell_QDoubleSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11292,7 +11292,7 @@ void PythonQtShell_QDoubleSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11314,7 +11314,7 @@ void PythonQtShell_QDoubleSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11336,7 +11336,7 @@ void PythonQtShell_QDoubleSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11358,7 +11358,7 @@ void PythonQtShell_QDoubleSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11380,7 +11380,7 @@ void PythonQtShell_QDoubleSpinBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11402,7 +11402,7 @@ void PythonQtShell_QDoubleSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11424,7 +11424,7 @@ int PythonQtShell_QDoubleSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11457,7 +11457,7 @@ void PythonQtShell_QDoubleSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11479,7 +11479,7 @@ void PythonQtShell_QDoubleSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11501,7 +11501,7 @@ void PythonQtShell_QDoubleSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11523,7 +11523,7 @@ void PythonQtShell_QDoubleSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11545,7 +11545,7 @@ void PythonQtShell_QDoubleSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11567,7 +11567,7 @@ bool PythonQtShell_QDoubleSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11600,7 +11600,7 @@ bool PythonQtShell_QDoubleSpinBox::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11633,7 +11633,7 @@ void PythonQtShell_QDoubleSpinBox::fixup(QString& str0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -11655,7 +11655,7 @@ void PythonQtShell_QDoubleSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11677,7 +11677,7 @@ bool PythonQtShell_QDoubleSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11710,7 +11710,7 @@ void PythonQtShell_QDoubleSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11732,7 +11732,7 @@ bool PythonQtShell_QDoubleSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11765,7 +11765,7 @@ int PythonQtShell_QDoubleSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11798,7 +11798,7 @@ void PythonQtShell_QDoubleSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11820,7 +11820,7 @@ void PythonQtShell_QDoubleSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11842,7 +11842,7 @@ void PythonQtShell_QDoubleSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11864,7 +11864,7 @@ QVariant PythonQtShell_QDoubleSpinBox::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11897,7 +11897,7 @@ void PythonQtShell_QDoubleSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11919,7 +11919,7 @@ void PythonQtShell_QDoubleSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11941,7 +11941,7 @@ void PythonQtShell_QDoubleSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11963,7 +11963,7 @@ int PythonQtShell_QDoubleSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11996,7 +11996,7 @@ void PythonQtShell_QDoubleSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12018,7 +12018,7 @@ void PythonQtShell_QDoubleSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12040,7 +12040,7 @@ void PythonQtShell_QDoubleSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12062,7 +12062,7 @@ void PythonQtShell_QDoubleSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12084,7 +12084,7 @@ void PythonQtShell_QDoubleSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12106,7 +12106,7 @@ bool PythonQtShell_QDoubleSpinBox::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12139,7 +12139,7 @@ QPaintEngine* PythonQtShell_QDoubleSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12172,7 +12172,7 @@ void PythonQtShell_QDoubleSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12194,7 +12194,7 @@ QPaintDevice* PythonQtShell_QDoubleSpinBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12227,7 +12227,7 @@ void PythonQtShell_QDoubleSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12249,7 +12249,7 @@ void PythonQtShell_QDoubleSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12271,7 +12271,7 @@ QPainter* PythonQtShell_QDoubleSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12304,7 +12304,7 @@ void PythonQtShell_QDoubleSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12326,7 +12326,7 @@ void PythonQtShell_QDoubleSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12348,7 +12348,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QDoubleSpinBox::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -12381,7 +12381,7 @@ void PythonQtShell_QDoubleSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12403,7 +12403,7 @@ QString PythonQtShell_QDoubleSpinBox::textFromValue(double val0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "double"}; @@ -12436,7 +12436,7 @@ void PythonQtShell_QDoubleSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12458,7 +12458,7 @@ QValidator::State PythonQtShell_QDoubleSpinBox::validate(QString& input0, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12491,7 +12491,7 @@ double PythonQtShell_QDoubleSpinBox::valueFromText(const QString& text0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"double" , "const QString&"}; @@ -12524,7 +12524,7 @@ void PythonQtShell_QDoubleSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12654,7 +12654,7 @@ void PythonQtShell_QDoubleValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12676,7 +12676,7 @@ void PythonQtShell_QDoubleValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12698,7 +12698,7 @@ bool PythonQtShell_QDoubleValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12731,7 +12731,7 @@ bool PythonQtShell_QDoubleValidator::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12764,7 +12764,7 @@ void PythonQtShell_QDoubleValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -12786,7 +12786,7 @@ void PythonQtShell_QDoubleValidator::setRange(double bottom0, double top1, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "double" , "double" , "int"}; @@ -12808,7 +12808,7 @@ void PythonQtShell_QDoubleValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12830,7 +12830,7 @@ QValidator::State PythonQtShell_QDoubleValidator::validate(QString& arg__1, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -12935,7 +12935,7 @@ void PythonQtShell_QDrag::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12957,7 +12957,7 @@ void PythonQtShell_QDrag::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12979,7 +12979,7 @@ bool PythonQtShell_QDrag::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13012,7 +13012,7 @@ bool PythonQtShell_QDrag::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13045,7 +13045,7 @@ void PythonQtShell_QDrag::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13317,7 +13317,7 @@ void PythonQtShell_QErrorMessage::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13339,7 +13339,7 @@ void PythonQtShell_QErrorMessage::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13361,7 +13361,7 @@ void PythonQtShell_QErrorMessage::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13383,7 +13383,7 @@ void PythonQtShell_QErrorMessage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13405,7 +13405,7 @@ void PythonQtShell_QErrorMessage::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13427,7 +13427,7 @@ void PythonQtShell_QErrorMessage::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13449,7 +13449,7 @@ void PythonQtShell_QErrorMessage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13471,7 +13471,7 @@ int PythonQtShell_QErrorMessage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13504,7 +13504,7 @@ void PythonQtShell_QErrorMessage::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13526,7 +13526,7 @@ void PythonQtShell_QErrorMessage::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13548,7 +13548,7 @@ void PythonQtShell_QErrorMessage::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13570,7 +13570,7 @@ void PythonQtShell_QErrorMessage::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13592,7 +13592,7 @@ void PythonQtShell_QErrorMessage::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13614,7 +13614,7 @@ void PythonQtShell_QErrorMessage::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13636,7 +13636,7 @@ bool PythonQtShell_QErrorMessage::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13669,7 +13669,7 @@ bool PythonQtShell_QErrorMessage::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13702,7 +13702,7 @@ int PythonQtShell_QErrorMessage::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13735,7 +13735,7 @@ void PythonQtShell_QErrorMessage::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13757,7 +13757,7 @@ bool PythonQtShell_QErrorMessage::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13790,7 +13790,7 @@ void PythonQtShell_QErrorMessage::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13812,7 +13812,7 @@ bool PythonQtShell_QErrorMessage::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13845,7 +13845,7 @@ int PythonQtShell_QErrorMessage::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13878,7 +13878,7 @@ void PythonQtShell_QErrorMessage::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13900,7 +13900,7 @@ void PythonQtShell_QErrorMessage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13922,7 +13922,7 @@ void PythonQtShell_QErrorMessage::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13944,7 +13944,7 @@ QVariant PythonQtShell_QErrorMessage::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13977,7 +13977,7 @@ void PythonQtShell_QErrorMessage::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13999,7 +13999,7 @@ void PythonQtShell_QErrorMessage::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14021,7 +14021,7 @@ void PythonQtShell_QErrorMessage::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14043,7 +14043,7 @@ int PythonQtShell_QErrorMessage::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14076,7 +14076,7 @@ void PythonQtShell_QErrorMessage::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14098,7 +14098,7 @@ void PythonQtShell_QErrorMessage::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14120,7 +14120,7 @@ void PythonQtShell_QErrorMessage::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14142,7 +14142,7 @@ void PythonQtShell_QErrorMessage::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14164,7 +14164,7 @@ void PythonQtShell_QErrorMessage::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14186,7 +14186,7 @@ bool PythonQtShell_QErrorMessage::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14219,7 +14219,7 @@ void PythonQtShell_QErrorMessage::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14241,7 +14241,7 @@ QPaintEngine* PythonQtShell_QErrorMessage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14274,7 +14274,7 @@ void PythonQtShell_QErrorMessage::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14296,7 +14296,7 @@ QPaintDevice* PythonQtShell_QErrorMessage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14329,7 +14329,7 @@ void PythonQtShell_QErrorMessage::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14351,7 +14351,7 @@ void PythonQtShell_QErrorMessage::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14373,7 +14373,7 @@ void PythonQtShell_QErrorMessage::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14395,7 +14395,7 @@ QPainter* PythonQtShell_QErrorMessage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14428,7 +14428,7 @@ void PythonQtShell_QErrorMessage::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14450,7 +14450,7 @@ void PythonQtShell_QErrorMessage::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14472,7 +14472,7 @@ void PythonQtShell_QErrorMessage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14494,7 +14494,7 @@ void PythonQtShell_QErrorMessage::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14559,7 +14559,7 @@ void PythonQtShell_QFileDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14581,7 +14581,7 @@ void PythonQtShell_QFileDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14603,7 +14603,7 @@ void PythonQtShell_QFileDialog::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14625,7 +14625,7 @@ void PythonQtShell_QFileDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14647,7 +14647,7 @@ void PythonQtShell_QFileDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14669,7 +14669,7 @@ void PythonQtShell_QFileDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14691,7 +14691,7 @@ void PythonQtShell_QFileDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14713,7 +14713,7 @@ int PythonQtShell_QFileDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14746,7 +14746,7 @@ void PythonQtShell_QFileDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -14768,7 +14768,7 @@ void PythonQtShell_QFileDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14790,7 +14790,7 @@ void PythonQtShell_QFileDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14812,7 +14812,7 @@ void PythonQtShell_QFileDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14834,7 +14834,7 @@ void PythonQtShell_QFileDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14856,7 +14856,7 @@ void PythonQtShell_QFileDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14878,7 +14878,7 @@ bool PythonQtShell_QFileDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14911,7 +14911,7 @@ bool PythonQtShell_QFileDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14944,7 +14944,7 @@ int PythonQtShell_QFileDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14977,7 +14977,7 @@ void PythonQtShell_QFileDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14999,7 +14999,7 @@ bool PythonQtShell_QFileDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15032,7 +15032,7 @@ void PythonQtShell_QFileDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15054,7 +15054,7 @@ bool PythonQtShell_QFileDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15087,7 +15087,7 @@ int PythonQtShell_QFileDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15120,7 +15120,7 @@ void PythonQtShell_QFileDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15142,7 +15142,7 @@ void PythonQtShell_QFileDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15164,7 +15164,7 @@ void PythonQtShell_QFileDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15186,7 +15186,7 @@ QVariant PythonQtShell_QFileDialog::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15219,7 +15219,7 @@ void PythonQtShell_QFileDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15241,7 +15241,7 @@ void PythonQtShell_QFileDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15263,7 +15263,7 @@ void PythonQtShell_QFileDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15285,7 +15285,7 @@ int PythonQtShell_QFileDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15318,7 +15318,7 @@ void PythonQtShell_QFileDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15340,7 +15340,7 @@ void PythonQtShell_QFileDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15362,7 +15362,7 @@ void PythonQtShell_QFileDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15384,7 +15384,7 @@ void PythonQtShell_QFileDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15406,7 +15406,7 @@ void PythonQtShell_QFileDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15428,7 +15428,7 @@ bool PythonQtShell_QFileDialog::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15461,7 +15461,7 @@ QPaintEngine* PythonQtShell_QFileDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15494,7 +15494,7 @@ void PythonQtShell_QFileDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15516,7 +15516,7 @@ QPaintDevice* PythonQtShell_QFileDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15549,7 +15549,7 @@ void PythonQtShell_QFileDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15571,7 +15571,7 @@ void PythonQtShell_QFileDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15593,7 +15593,7 @@ void PythonQtShell_QFileDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15615,7 +15615,7 @@ QPainter* PythonQtShell_QFileDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15648,7 +15648,7 @@ void PythonQtShell_QFileDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15670,7 +15670,7 @@ void PythonQtShell_QFileDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15692,7 +15692,7 @@ void PythonQtShell_QFileDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15714,7 +15714,7 @@ void PythonQtShell_QFileDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -16083,7 +16083,7 @@ QIcon PythonQtShell_QFileIconProvider::icon(QFileIconProvider::IconType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QFileIconProvider::IconType"}; @@ -16116,7 +16116,7 @@ QIcon PythonQtShell_QFileIconProvider::icon(const QFileInfo& info0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("icon"); + static PyObject* name = PyUnicode_FromString("icon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "const QFileInfo&"}; @@ -16149,7 +16149,7 @@ QString PythonQtShell_QFileIconProvider::type(const QFileInfo& info0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QFileInfo&"}; @@ -16242,7 +16242,7 @@ QModelIndex PythonQtShell_QFileSystemModel::buddy(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -16275,7 +16275,7 @@ bool PythonQtShell_QFileSystemModel::canDropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -16308,7 +16308,7 @@ bool PythonQtShell_QFileSystemModel::canFetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -16341,7 +16341,7 @@ void PythonQtShell_QFileSystemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -16363,7 +16363,7 @@ int PythonQtShell_QFileSystemModel::columnCount(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -16396,7 +16396,7 @@ void PythonQtShell_QFileSystemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -16418,7 +16418,7 @@ QVariant PythonQtShell_QFileSystemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -16451,7 +16451,7 @@ bool PythonQtShell_QFileSystemModel::dropMimeData(const QMimeData* data0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -16484,7 +16484,7 @@ bool PythonQtShell_QFileSystemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16517,7 +16517,7 @@ bool PythonQtShell_QFileSystemModel::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -16550,7 +16550,7 @@ void PythonQtShell_QFileSystemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -16572,7 +16572,7 @@ Qt::ItemFlags PythonQtShell_QFileSystemModel::flags(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -16605,7 +16605,7 @@ bool PythonQtShell_QFileSystemModel::hasChildren(const QModelIndex& parent0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -16638,7 +16638,7 @@ QVariant PythonQtShell_QFileSystemModel::headerData(int section0, Qt::Orientat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -16671,7 +16671,7 @@ QModelIndex PythonQtShell_QFileSystemModel::index(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -16704,7 +16704,7 @@ bool PythonQtShell_QFileSystemModel::insertColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -16737,7 +16737,7 @@ bool PythonQtShell_QFileSystemModel::insertRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -16770,7 +16770,7 @@ QMap PythonQtShell_QFileSystemModel::itemData(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -16803,7 +16803,7 @@ QList PythonQtShell_QFileSystemModel::match(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -16836,7 +16836,7 @@ QMimeData* PythonQtShell_QFileSystemModel::mimeData(const QList& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -16869,7 +16869,7 @@ QStringList PythonQtShell_QFileSystemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -16902,7 +16902,7 @@ bool PythonQtShell_QFileSystemModel::moveColumns(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -16935,7 +16935,7 @@ bool PythonQtShell_QFileSystemModel::moveRows(const QModelIndex& sourceParent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -16968,7 +16968,7 @@ QModelIndex PythonQtShell_QFileSystemModel::parent(const QModelIndex& child0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -17001,7 +17001,7 @@ bool PythonQtShell_QFileSystemModel::removeColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17034,7 +17034,7 @@ bool PythonQtShell_QFileSystemModel::removeRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -17067,7 +17067,7 @@ void PythonQtShell_QFileSystemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -17089,7 +17089,7 @@ QHash PythonQtShell_QFileSystemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -17122,7 +17122,7 @@ int PythonQtShell_QFileSystemModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -17155,7 +17155,7 @@ bool PythonQtShell_QFileSystemModel::setData(const QModelIndex& index0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -17188,7 +17188,7 @@ bool PythonQtShell_QFileSystemModel::setHeaderData(int section0, Qt::Orientati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -17221,7 +17221,7 @@ bool PythonQtShell_QFileSystemModel::setItemData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -17254,7 +17254,7 @@ QModelIndex PythonQtShell_QFileSystemModel::sibling(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -17287,7 +17287,7 @@ void PythonQtShell_QFileSystemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -17309,7 +17309,7 @@ QSize PythonQtShell_QFileSystemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -17342,7 +17342,7 @@ bool PythonQtShell_QFileSystemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -17375,7 +17375,7 @@ Qt::DropActions PythonQtShell_QFileSystemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -17408,7 +17408,7 @@ Qt::DropActions PythonQtShell_QFileSystemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -17441,7 +17441,7 @@ void PythonQtShell_QFileSystemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -17652,7 +17652,7 @@ void PythonQtShell_QFocusFrame::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -17674,7 +17674,7 @@ void PythonQtShell_QFocusFrame::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17696,7 +17696,7 @@ void PythonQtShell_QFocusFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -17718,7 +17718,7 @@ void PythonQtShell_QFocusFrame::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -17740,7 +17740,7 @@ void PythonQtShell_QFocusFrame::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -17762,7 +17762,7 @@ void PythonQtShell_QFocusFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17784,7 +17784,7 @@ int PythonQtShell_QFocusFrame::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -17817,7 +17817,7 @@ void PythonQtShell_QFocusFrame::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -17839,7 +17839,7 @@ void PythonQtShell_QFocusFrame::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -17861,7 +17861,7 @@ void PythonQtShell_QFocusFrame::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -17883,7 +17883,7 @@ void PythonQtShell_QFocusFrame::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -17905,7 +17905,7 @@ void PythonQtShell_QFocusFrame::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -17927,7 +17927,7 @@ bool PythonQtShell_QFocusFrame::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -17960,7 +17960,7 @@ bool PythonQtShell_QFocusFrame::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -17993,7 +17993,7 @@ void PythonQtShell_QFocusFrame::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18015,7 +18015,7 @@ bool PythonQtShell_QFocusFrame::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -18048,7 +18048,7 @@ void PythonQtShell_QFocusFrame::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -18070,7 +18070,7 @@ bool PythonQtShell_QFocusFrame::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -18103,7 +18103,7 @@ int PythonQtShell_QFocusFrame::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -18136,7 +18136,7 @@ void PythonQtShell_QFocusFrame::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -18158,7 +18158,7 @@ void PythonQtShell_QFocusFrame::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -18180,7 +18180,7 @@ void PythonQtShell_QFocusFrame::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -18202,7 +18202,7 @@ QVariant PythonQtShell_QFocusFrame::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -18235,7 +18235,7 @@ void PythonQtShell_QFocusFrame::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18257,7 +18257,7 @@ void PythonQtShell_QFocusFrame::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -18279,7 +18279,7 @@ void PythonQtShell_QFocusFrame::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18301,7 +18301,7 @@ int PythonQtShell_QFocusFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -18334,7 +18334,7 @@ QSize PythonQtShell_QFocusFrame::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18367,7 +18367,7 @@ void PythonQtShell_QFocusFrame::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18389,7 +18389,7 @@ void PythonQtShell_QFocusFrame::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18411,7 +18411,7 @@ void PythonQtShell_QFocusFrame::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18433,7 +18433,7 @@ void PythonQtShell_QFocusFrame::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -18455,7 +18455,7 @@ void PythonQtShell_QFocusFrame::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -18477,7 +18477,7 @@ bool PythonQtShell_QFocusFrame::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -18510,7 +18510,7 @@ QPaintEngine* PythonQtShell_QFocusFrame::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -18543,7 +18543,7 @@ void PythonQtShell_QFocusFrame::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -18565,7 +18565,7 @@ QPaintDevice* PythonQtShell_QFocusFrame::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -18598,7 +18598,7 @@ void PythonQtShell_QFocusFrame::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -18620,7 +18620,7 @@ void PythonQtShell_QFocusFrame::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -18642,7 +18642,7 @@ QPainter* PythonQtShell_QFocusFrame::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -18675,7 +18675,7 @@ void PythonQtShell_QFocusFrame::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -18697,7 +18697,7 @@ QSize PythonQtShell_QFocusFrame::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -18730,7 +18730,7 @@ void PythonQtShell_QFocusFrame::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -18752,7 +18752,7 @@ void PythonQtShell_QFocusFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -18774,7 +18774,7 @@ void PythonQtShell_QFocusFrame::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -18834,7 +18834,7 @@ void PythonQtShell_QFontComboBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -18856,7 +18856,7 @@ void PythonQtShell_QFontComboBox::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18878,7 +18878,7 @@ void PythonQtShell_QFontComboBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -18900,7 +18900,7 @@ void PythonQtShell_QFontComboBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -18922,7 +18922,7 @@ void PythonQtShell_QFontComboBox::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -18944,7 +18944,7 @@ void PythonQtShell_QFontComboBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -18966,7 +18966,7 @@ int PythonQtShell_QFontComboBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -18999,7 +18999,7 @@ void PythonQtShell_QFontComboBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -19021,7 +19021,7 @@ void PythonQtShell_QFontComboBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -19043,7 +19043,7 @@ void PythonQtShell_QFontComboBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -19065,7 +19065,7 @@ void PythonQtShell_QFontComboBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -19087,7 +19087,7 @@ void PythonQtShell_QFontComboBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19109,7 +19109,7 @@ bool PythonQtShell_QFontComboBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -19142,7 +19142,7 @@ bool PythonQtShell_QFontComboBox::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -19175,7 +19175,7 @@ void PythonQtShell_QFontComboBox::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19197,7 +19197,7 @@ bool PythonQtShell_QFontComboBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -19230,7 +19230,7 @@ void PythonQtShell_QFontComboBox::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -19252,7 +19252,7 @@ bool PythonQtShell_QFontComboBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -19285,7 +19285,7 @@ int PythonQtShell_QFontComboBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -19318,7 +19318,7 @@ void PythonQtShell_QFontComboBox::hideEvent(QHideEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -19340,7 +19340,7 @@ void PythonQtShell_QFontComboBox::hidePopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hidePopup"); + static PyObject* name = PyUnicode_FromString("hidePopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19362,7 +19362,7 @@ void PythonQtShell_QFontComboBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -19384,7 +19384,7 @@ void PythonQtShell_QFontComboBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -19406,7 +19406,7 @@ QVariant PythonQtShell_QFontComboBox::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -19439,7 +19439,7 @@ void PythonQtShell_QFontComboBox::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19461,7 +19461,7 @@ void PythonQtShell_QFontComboBox::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -19483,7 +19483,7 @@ void PythonQtShell_QFontComboBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -19505,7 +19505,7 @@ int PythonQtShell_QFontComboBox::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -19538,7 +19538,7 @@ QSize PythonQtShell_QFontComboBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19571,7 +19571,7 @@ void PythonQtShell_QFontComboBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19593,7 +19593,7 @@ void PythonQtShell_QFontComboBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19615,7 +19615,7 @@ void PythonQtShell_QFontComboBox::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19637,7 +19637,7 @@ void PythonQtShell_QFontComboBox::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -19659,7 +19659,7 @@ void PythonQtShell_QFontComboBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -19681,7 +19681,7 @@ bool PythonQtShell_QFontComboBox::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -19714,7 +19714,7 @@ QPaintEngine* PythonQtShell_QFontComboBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -19747,7 +19747,7 @@ void PythonQtShell_QFontComboBox::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -19769,7 +19769,7 @@ QPaintDevice* PythonQtShell_QFontComboBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -19802,7 +19802,7 @@ void PythonQtShell_QFontComboBox::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -19824,7 +19824,7 @@ void PythonQtShell_QFontComboBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -19846,7 +19846,7 @@ QPainter* PythonQtShell_QFontComboBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -19879,7 +19879,7 @@ void PythonQtShell_QFontComboBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -19901,7 +19901,7 @@ void PythonQtShell_QFontComboBox::showPopup() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showPopup"); + static PyObject* name = PyUnicode_FromString("showPopup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -19923,7 +19923,7 @@ QSize PythonQtShell_QFontComboBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -19956,7 +19956,7 @@ void PythonQtShell_QFontComboBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -19978,7 +19978,7 @@ void PythonQtShell_QFontComboBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -20000,7 +20000,7 @@ void PythonQtShell_QFontComboBox::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp index 6eb3db67d..ad047102f 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui10.cpp @@ -323,7 +323,7 @@ void PythonQtShell_QSwipeGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -345,7 +345,7 @@ void PythonQtShell_QSwipeGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -367,7 +367,7 @@ bool PythonQtShell_QSwipeGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -400,7 +400,7 @@ bool PythonQtShell_QSwipeGesture::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -433,7 +433,7 @@ void PythonQtShell_QSwipeGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -498,7 +498,7 @@ void PythonQtShell_QSyntaxHighlighter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -520,7 +520,7 @@ void PythonQtShell_QSyntaxHighlighter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -542,7 +542,7 @@ bool PythonQtShell_QSyntaxHighlighter::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -575,7 +575,7 @@ bool PythonQtShell_QSyntaxHighlighter::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -608,7 +608,7 @@ void PythonQtShell_QSyntaxHighlighter::highlightBlock(const QString& text0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("highlightBlock"); + static PyObject* name = PyUnicode_FromString("highlightBlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -630,7 +630,7 @@ void PythonQtShell_QSyntaxHighlighter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -744,7 +744,7 @@ void PythonQtShell_QSystemTrayIcon::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -766,7 +766,7 @@ void PythonQtShell_QSystemTrayIcon::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -788,7 +788,7 @@ bool PythonQtShell_QSystemTrayIcon::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -821,7 +821,7 @@ bool PythonQtShell_QSystemTrayIcon::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -854,7 +854,7 @@ void PythonQtShell_QSystemTrayIcon::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -953,7 +953,7 @@ void PythonQtShell_QTabBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -975,7 +975,7 @@ void PythonQtShell_QTabBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -997,7 +997,7 @@ void PythonQtShell_QTabBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1019,7 +1019,7 @@ void PythonQtShell_QTabBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1041,7 +1041,7 @@ void PythonQtShell_QTabBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1063,7 +1063,7 @@ void PythonQtShell_QTabBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1085,7 +1085,7 @@ int PythonQtShell_QTabBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1118,7 +1118,7 @@ void PythonQtShell_QTabBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1140,7 +1140,7 @@ void PythonQtShell_QTabBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1162,7 +1162,7 @@ void PythonQtShell_QTabBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1184,7 +1184,7 @@ void PythonQtShell_QTabBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1206,7 +1206,7 @@ void PythonQtShell_QTabBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1228,7 +1228,7 @@ bool PythonQtShell_QTabBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1261,7 +1261,7 @@ bool PythonQtShell_QTabBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1294,7 +1294,7 @@ void PythonQtShell_QTabBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1316,7 +1316,7 @@ bool PythonQtShell_QTabBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1349,7 +1349,7 @@ void PythonQtShell_QTabBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1371,7 +1371,7 @@ bool PythonQtShell_QTabBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1404,7 +1404,7 @@ int PythonQtShell_QTabBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1437,7 +1437,7 @@ void PythonQtShell_QTabBar::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1459,7 +1459,7 @@ void PythonQtShell_QTabBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1481,7 +1481,7 @@ void PythonQtShell_QTabBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1503,7 +1503,7 @@ QVariant PythonQtShell_QTabBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1536,7 +1536,7 @@ void PythonQtShell_QTabBar::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1558,7 +1558,7 @@ void PythonQtShell_QTabBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1580,7 +1580,7 @@ void PythonQtShell_QTabBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1602,7 +1602,7 @@ int PythonQtShell_QTabBar::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1635,7 +1635,7 @@ QSize PythonQtShell_QTabBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1668,7 +1668,7 @@ QSize PythonQtShell_QTabBar::minimumTabSizeHint(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumTabSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumTabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -1701,7 +1701,7 @@ void PythonQtShell_QTabBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1723,7 +1723,7 @@ void PythonQtShell_QTabBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1745,7 +1745,7 @@ void PythonQtShell_QTabBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1767,7 +1767,7 @@ void PythonQtShell_QTabBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1789,7 +1789,7 @@ void PythonQtShell_QTabBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1811,7 +1811,7 @@ bool PythonQtShell_QTabBar::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1844,7 +1844,7 @@ QPaintEngine* PythonQtShell_QTabBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1877,7 +1877,7 @@ void PythonQtShell_QTabBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1899,7 +1899,7 @@ QPaintDevice* PythonQtShell_QTabBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1932,7 +1932,7 @@ void PythonQtShell_QTabBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1954,7 +1954,7 @@ void PythonQtShell_QTabBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1976,7 +1976,7 @@ QPainter* PythonQtShell_QTabBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2009,7 +2009,7 @@ void PythonQtShell_QTabBar::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2031,7 +2031,7 @@ QSize PythonQtShell_QTabBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2064,7 +2064,7 @@ void PythonQtShell_QTabBar::tabInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2086,7 +2086,7 @@ void PythonQtShell_QTabBar::tabLayoutChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabLayoutChange"); + static PyObject* name = PyUnicode_FromString("tabLayoutChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2108,7 +2108,7 @@ void PythonQtShell_QTabBar::tabRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2130,7 +2130,7 @@ QSize PythonQtShell_QTabBar::tabSizeHint(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabSizeHint"); + static PyObject* name = PyUnicode_FromString("tabSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -2163,7 +2163,7 @@ void PythonQtShell_QTabBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2185,7 +2185,7 @@ void PythonQtShell_QTabBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2207,7 +2207,7 @@ void PythonQtShell_QTabBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2542,7 +2542,7 @@ void PythonQtShell_QTabWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2564,7 +2564,7 @@ void PythonQtShell_QTabWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2586,7 +2586,7 @@ void PythonQtShell_QTabWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2608,7 +2608,7 @@ void PythonQtShell_QTabWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2630,7 +2630,7 @@ void PythonQtShell_QTabWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2652,7 +2652,7 @@ void PythonQtShell_QTabWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2674,7 +2674,7 @@ int PythonQtShell_QTabWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2707,7 +2707,7 @@ void PythonQtShell_QTabWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2729,7 +2729,7 @@ void PythonQtShell_QTabWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2751,7 +2751,7 @@ void PythonQtShell_QTabWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2773,7 +2773,7 @@ void PythonQtShell_QTabWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2795,7 +2795,7 @@ void PythonQtShell_QTabWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2817,7 +2817,7 @@ bool PythonQtShell_QTabWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2850,7 +2850,7 @@ bool PythonQtShell_QTabWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2883,7 +2883,7 @@ void PythonQtShell_QTabWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2905,7 +2905,7 @@ bool PythonQtShell_QTabWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2938,7 +2938,7 @@ void PythonQtShell_QTabWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2960,7 +2960,7 @@ bool PythonQtShell_QTabWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2993,7 +2993,7 @@ int PythonQtShell_QTabWidget::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3026,7 +3026,7 @@ void PythonQtShell_QTabWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3048,7 +3048,7 @@ void PythonQtShell_QTabWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3070,7 +3070,7 @@ void PythonQtShell_QTabWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3092,7 +3092,7 @@ QVariant PythonQtShell_QTabWidget::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3125,7 +3125,7 @@ void PythonQtShell_QTabWidget::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3147,7 +3147,7 @@ void PythonQtShell_QTabWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3169,7 +3169,7 @@ void PythonQtShell_QTabWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3191,7 +3191,7 @@ int PythonQtShell_QTabWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3224,7 +3224,7 @@ QSize PythonQtShell_QTabWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3257,7 +3257,7 @@ void PythonQtShell_QTabWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3279,7 +3279,7 @@ void PythonQtShell_QTabWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3301,7 +3301,7 @@ void PythonQtShell_QTabWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3323,7 +3323,7 @@ void PythonQtShell_QTabWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3345,7 +3345,7 @@ void PythonQtShell_QTabWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3367,7 +3367,7 @@ bool PythonQtShell_QTabWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3400,7 +3400,7 @@ QPaintEngine* PythonQtShell_QTabWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3433,7 +3433,7 @@ void PythonQtShell_QTabWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3455,7 +3455,7 @@ QPaintDevice* PythonQtShell_QTabWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3488,7 +3488,7 @@ void PythonQtShell_QTabWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3510,7 +3510,7 @@ void PythonQtShell_QTabWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3532,7 +3532,7 @@ QPainter* PythonQtShell_QTabWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3565,7 +3565,7 @@ void PythonQtShell_QTabWidget::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3587,7 +3587,7 @@ QSize PythonQtShell_QTabWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3620,7 +3620,7 @@ void PythonQtShell_QTabWidget::tabInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabInserted"); + static PyObject* name = PyUnicode_FromString("tabInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3642,7 +3642,7 @@ void PythonQtShell_QTabWidget::tabRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabRemoved"); + static PyObject* name = PyUnicode_FromString("tabRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3664,7 +3664,7 @@ void PythonQtShell_QTabWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3686,7 +3686,7 @@ void PythonQtShell_QTabWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3708,7 +3708,7 @@ void PythonQtShell_QTabWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3993,7 +3993,7 @@ void PythonQtShell_QTableView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4015,7 +4015,7 @@ void PythonQtShell_QTableView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4037,7 +4037,7 @@ void PythonQtShell_QTableView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4059,7 +4059,7 @@ void PythonQtShell_QTableView::closeEditor(QWidget* editor0, QAbstractItemDeleg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -4081,7 +4081,7 @@ void PythonQtShell_QTableView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4103,7 +4103,7 @@ void PythonQtShell_QTableView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -4125,7 +4125,7 @@ void PythonQtShell_QTableView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4147,7 +4147,7 @@ void PythonQtShell_QTableView::currentChanged(const QModelIndex& current0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -4169,7 +4169,7 @@ void PythonQtShell_QTableView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4191,7 +4191,7 @@ void PythonQtShell_QTableView::dataChanged(const QModelIndex& topLeft0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -4213,7 +4213,7 @@ int PythonQtShell_QTableView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4246,7 +4246,7 @@ void PythonQtShell_QTableView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4268,7 +4268,7 @@ void PythonQtShell_QTableView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4290,7 +4290,7 @@ void PythonQtShell_QTableView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4312,7 +4312,7 @@ void PythonQtShell_QTableView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4334,7 +4334,7 @@ void PythonQtShell_QTableView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4356,7 +4356,7 @@ bool PythonQtShell_QTableView::edit(const QModelIndex& index0, QAbstractItemVi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -4389,7 +4389,7 @@ void PythonQtShell_QTableView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4411,7 +4411,7 @@ void PythonQtShell_QTableView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4433,7 +4433,7 @@ bool PythonQtShell_QTableView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4466,7 +4466,7 @@ bool PythonQtShell_QTableView::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4499,7 +4499,7 @@ void PythonQtShell_QTableView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4521,7 +4521,7 @@ bool PythonQtShell_QTableView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4554,7 +4554,7 @@ void PythonQtShell_QTableView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4576,7 +4576,7 @@ bool PythonQtShell_QTableView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4609,7 +4609,7 @@ int PythonQtShell_QTableView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4642,7 +4642,7 @@ void PythonQtShell_QTableView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4664,7 +4664,7 @@ int PythonQtShell_QTableView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4697,7 +4697,7 @@ void PythonQtShell_QTableView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4719,7 +4719,7 @@ void PythonQtShell_QTableView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4741,7 +4741,7 @@ QModelIndex PythonQtShell_QTableView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -4774,7 +4774,7 @@ void PythonQtShell_QTableView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4796,7 +4796,7 @@ void PythonQtShell_QTableView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4818,7 +4818,7 @@ QVariant PythonQtShell_QTableView::inputMethodQuery(Qt::InputMethodQuery query if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4851,7 +4851,7 @@ bool PythonQtShell_QTableView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -4884,7 +4884,7 @@ void PythonQtShell_QTableView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4906,7 +4906,7 @@ void PythonQtShell_QTableView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4928,7 +4928,7 @@ void PythonQtShell_QTableView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4950,7 +4950,7 @@ void PythonQtShell_QTableView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4972,7 +4972,7 @@ int PythonQtShell_QTableView::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5005,7 +5005,7 @@ QSize PythonQtShell_QTableView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5038,7 +5038,7 @@ void PythonQtShell_QTableView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5060,7 +5060,7 @@ void PythonQtShell_QTableView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5082,7 +5082,7 @@ void PythonQtShell_QTableView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5104,7 +5104,7 @@ void PythonQtShell_QTableView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5126,7 +5126,7 @@ QModelIndex PythonQtShell_QTableView::moveCursor(QAbstractItemView::CursorActio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -5159,7 +5159,7 @@ void PythonQtShell_QTableView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5181,7 +5181,7 @@ bool PythonQtShell_QTableView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5214,7 +5214,7 @@ QPaintEngine* PythonQtShell_QTableView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5247,7 +5247,7 @@ void PythonQtShell_QTableView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5269,7 +5269,7 @@ QPaintDevice* PythonQtShell_QTableView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5302,7 +5302,7 @@ void PythonQtShell_QTableView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5324,7 +5324,7 @@ void PythonQtShell_QTableView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5346,7 +5346,7 @@ void PythonQtShell_QTableView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5368,7 +5368,7 @@ void PythonQtShell_QTableView::rowsInserted(const QModelIndex& parent0, int st if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -5390,7 +5390,7 @@ void PythonQtShell_QTableView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -5412,7 +5412,7 @@ void PythonQtShell_QTableView::scrollTo(const QModelIndex& index0, QAbstractIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -5434,7 +5434,7 @@ void PythonQtShell_QTableView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5456,7 +5456,7 @@ QList PythonQtShell_QTableView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5489,7 +5489,7 @@ void PythonQtShell_QTableView::selectionChanged(const QItemSelection& selected0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -5511,7 +5511,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTableView::selectionCommand( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -5544,7 +5544,7 @@ void PythonQtShell_QTableView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -5566,7 +5566,7 @@ void PythonQtShell_QTableView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -5588,7 +5588,7 @@ void PythonQtShell_QTableView::setSelection(const QRect& rect0, QItemSelectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -5610,7 +5610,7 @@ void PythonQtShell_QTableView::setSelectionModel(QItemSelectionModel* selection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -5632,7 +5632,7 @@ void PythonQtShell_QTableView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5654,7 +5654,7 @@ void PythonQtShell_QTableView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5676,7 +5676,7 @@ QPainter* PythonQtShell_QTableView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5709,7 +5709,7 @@ void PythonQtShell_QTableView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5731,7 +5731,7 @@ QSize PythonQtShell_QTableView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5764,7 +5764,7 @@ int PythonQtShell_QTableView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5797,7 +5797,7 @@ int PythonQtShell_QTableView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5830,7 +5830,7 @@ void PythonQtShell_QTableView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -5852,7 +5852,7 @@ void PythonQtShell_QTableView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5874,7 +5874,7 @@ void PythonQtShell_QTableView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5896,7 +5896,7 @@ void PythonQtShell_QTableView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5918,7 +5918,7 @@ void PythonQtShell_QTableView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5940,7 +5940,7 @@ void PythonQtShell_QTableView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5962,7 +5962,7 @@ int PythonQtShell_QTableView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5995,7 +5995,7 @@ void PythonQtShell_QTableView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QTableView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6039,7 +6039,7 @@ QStyleOptionViewItem PythonQtShell_QTableView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -6072,7 +6072,7 @@ bool PythonQtShell_QTableView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6105,7 +6105,7 @@ QSize PythonQtShell_QTableView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6138,7 +6138,7 @@ QRect PythonQtShell_QTableView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -6171,7 +6171,7 @@ QRegion PythonQtShell_QTableView::visualRegionForSelection(const QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -6204,7 +6204,7 @@ void PythonQtShell_QTableView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6399,7 +6399,7 @@ void PythonQtShell_QTableWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6421,7 +6421,7 @@ void PythonQtShell_QTableWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6443,7 +6443,7 @@ void PythonQtShell_QTableWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6465,7 +6465,7 @@ void PythonQtShell_QTableWidget::closeEditor(QWidget* editor0, QAbstractItemDel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -6487,7 +6487,7 @@ void PythonQtShell_QTableWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6509,7 +6509,7 @@ void PythonQtShell_QTableWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6531,7 +6531,7 @@ void PythonQtShell_QTableWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6553,7 +6553,7 @@ void PythonQtShell_QTableWidget::currentChanged(const QModelIndex& current0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -6575,7 +6575,7 @@ void PythonQtShell_QTableWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6597,7 +6597,7 @@ void PythonQtShell_QTableWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -6619,7 +6619,7 @@ int PythonQtShell_QTableWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6652,7 +6652,7 @@ void PythonQtShell_QTableWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6674,7 +6674,7 @@ void PythonQtShell_QTableWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6696,7 +6696,7 @@ void PythonQtShell_QTableWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6718,7 +6718,7 @@ void PythonQtShell_QTableWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6740,7 +6740,7 @@ void PythonQtShell_QTableWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6762,7 +6762,7 @@ bool PythonQtShell_QTableWidget::dropMimeData(int row0, int column1, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -6795,7 +6795,7 @@ bool PythonQtShell_QTableWidget::edit(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -6828,7 +6828,7 @@ void PythonQtShell_QTableWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -6850,7 +6850,7 @@ void PythonQtShell_QTableWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6872,7 +6872,7 @@ bool PythonQtShell_QTableWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6905,7 +6905,7 @@ bool PythonQtShell_QTableWidget::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6938,7 +6938,7 @@ void PythonQtShell_QTableWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6960,7 +6960,7 @@ bool PythonQtShell_QTableWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6993,7 +6993,7 @@ void PythonQtShell_QTableWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7015,7 +7015,7 @@ bool PythonQtShell_QTableWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7048,7 +7048,7 @@ int PythonQtShell_QTableWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7081,7 +7081,7 @@ void PythonQtShell_QTableWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7103,7 +7103,7 @@ int PythonQtShell_QTableWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7136,7 +7136,7 @@ void PythonQtShell_QTableWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7158,7 +7158,7 @@ void PythonQtShell_QTableWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7180,7 +7180,7 @@ QModelIndex PythonQtShell_QTableWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -7213,7 +7213,7 @@ void PythonQtShell_QTableWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7235,7 +7235,7 @@ void PythonQtShell_QTableWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7257,7 +7257,7 @@ QVariant PythonQtShell_QTableWidget::inputMethodQuery(Qt::InputMethodQuery que if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7290,7 +7290,7 @@ bool PythonQtShell_QTableWidget::isIndexHidden(const QModelIndex& index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -7323,7 +7323,7 @@ void PythonQtShell_QTableWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7345,7 +7345,7 @@ void PythonQtShell_QTableWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7367,7 +7367,7 @@ void PythonQtShell_QTableWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7389,7 +7389,7 @@ void PythonQtShell_QTableWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7411,7 +7411,7 @@ int PythonQtShell_QTableWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7444,7 +7444,7 @@ QMimeData* PythonQtShell_QTableWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -7477,7 +7477,7 @@ QStringList PythonQtShell_QTableWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -7510,7 +7510,7 @@ QSize PythonQtShell_QTableWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7543,7 +7543,7 @@ void PythonQtShell_QTableWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7565,7 +7565,7 @@ void PythonQtShell_QTableWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7587,7 +7587,7 @@ void PythonQtShell_QTableWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7609,7 +7609,7 @@ void PythonQtShell_QTableWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7631,7 +7631,7 @@ QModelIndex PythonQtShell_QTableWidget::moveCursor(QAbstractItemView::CursorAct if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -7664,7 +7664,7 @@ void PythonQtShell_QTableWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7686,7 +7686,7 @@ bool PythonQtShell_QTableWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7719,7 +7719,7 @@ QPaintEngine* PythonQtShell_QTableWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7752,7 +7752,7 @@ void PythonQtShell_QTableWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7774,7 +7774,7 @@ QPaintDevice* PythonQtShell_QTableWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7807,7 +7807,7 @@ void PythonQtShell_QTableWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7829,7 +7829,7 @@ void PythonQtShell_QTableWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7851,7 +7851,7 @@ void PythonQtShell_QTableWidget::rowsAboutToBeRemoved(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7873,7 +7873,7 @@ void PythonQtShell_QTableWidget::rowsInserted(const QModelIndex& parent0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -7895,7 +7895,7 @@ void PythonQtShell_QTableWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7917,7 +7917,7 @@ void PythonQtShell_QTableWidget::scrollTo(const QModelIndex& index0, QAbstractI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -7939,7 +7939,7 @@ void PythonQtShell_QTableWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7961,7 +7961,7 @@ QList PythonQtShell_QTableWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7994,7 +7994,7 @@ void PythonQtShell_QTableWidget::selectionChanged(const QItemSelection& selecte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -8016,7 +8016,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTableWidget::selectionComman if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -8049,7 +8049,7 @@ void PythonQtShell_QTableWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -8071,7 +8071,7 @@ void PythonQtShell_QTableWidget::setSelection(const QRect& rect0, QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -8093,7 +8093,7 @@ void PythonQtShell_QTableWidget::setSelectionModel(QItemSelectionModel* selecti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -8115,7 +8115,7 @@ void PythonQtShell_QTableWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8137,7 +8137,7 @@ void PythonQtShell_QTableWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8159,7 +8159,7 @@ QPainter* PythonQtShell_QTableWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8192,7 +8192,7 @@ void PythonQtShell_QTableWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8214,7 +8214,7 @@ QSize PythonQtShell_QTableWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8247,7 +8247,7 @@ int PythonQtShell_QTableWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8280,7 +8280,7 @@ int PythonQtShell_QTableWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8313,7 +8313,7 @@ void PythonQtShell_QTableWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -8335,7 +8335,7 @@ Qt::DropActions PythonQtShell_QTableWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -8368,7 +8368,7 @@ void PythonQtShell_QTableWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8390,7 +8390,7 @@ void PythonQtShell_QTableWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8412,7 +8412,7 @@ void PythonQtShell_QTableWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8434,7 +8434,7 @@ void PythonQtShell_QTableWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8456,7 +8456,7 @@ void PythonQtShell_QTableWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8478,7 +8478,7 @@ int PythonQtShell_QTableWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8511,7 +8511,7 @@ void PythonQtShell_QTableWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8533,7 +8533,7 @@ void PythonQtShell_QTableWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8555,7 +8555,7 @@ QStyleOptionViewItem PythonQtShell_QTableWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -8588,7 +8588,7 @@ bool PythonQtShell_QTableWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8621,7 +8621,7 @@ QSize PythonQtShell_QTableWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8654,7 +8654,7 @@ QRect PythonQtShell_QTableWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -8687,7 +8687,7 @@ QRegion PythonQtShell_QTableWidget::visualRegionForSelection(const QItemSelecti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -8720,7 +8720,7 @@ void PythonQtShell_QTableWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9014,7 +9014,7 @@ QTableWidgetItem* PythonQtShell_QTableWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTableWidgetItem*"}; @@ -9047,7 +9047,7 @@ QVariant PythonQtShell_QTableWidgetItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -9080,7 +9080,7 @@ void PythonQtShell_QTableWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9102,7 +9102,7 @@ void PythonQtShell_QTableWidgetItem::setData(int role0, const QVariant& value1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -9124,7 +9124,7 @@ void PythonQtShell_QTableWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -9512,7 +9512,7 @@ void PythonQtShell_QTapAndHoldGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9534,7 +9534,7 @@ void PythonQtShell_QTapAndHoldGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9556,7 +9556,7 @@ bool PythonQtShell_QTapAndHoldGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9589,7 +9589,7 @@ bool PythonQtShell_QTapAndHoldGesture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9622,7 +9622,7 @@ void PythonQtShell_QTapAndHoldGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9687,7 +9687,7 @@ void PythonQtShell_QTapGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9709,7 +9709,7 @@ void PythonQtShell_QTapGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9731,7 +9731,7 @@ bool PythonQtShell_QTapGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9764,7 +9764,7 @@ bool PythonQtShell_QTapGesture::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9797,7 +9797,7 @@ void PythonQtShell_QTapGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10176,7 +10176,7 @@ void PythonQtShell_QTextBlockGroup::blockFormatChanged(const QTextBlock& block0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -10198,7 +10198,7 @@ void PythonQtShell_QTextBlockGroup::blockInserted(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -10220,7 +10220,7 @@ void PythonQtShell_QTextBlockGroup::blockRemoved(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -10242,7 +10242,7 @@ void PythonQtShell_QTextBlockGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10264,7 +10264,7 @@ void PythonQtShell_QTextBlockGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10286,7 +10286,7 @@ bool PythonQtShell_QTextBlockGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10319,7 +10319,7 @@ bool PythonQtShell_QTextBlockGroup::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10352,7 +10352,7 @@ void PythonQtShell_QTextBlockGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10427,7 +10427,7 @@ void PythonQtShell_QTextBrowser::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10449,7 +10449,7 @@ void PythonQtShell_QTextBrowser::backward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("backward"); + static PyObject* name = PyUnicode_FromString("backward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10471,7 +10471,7 @@ bool PythonQtShell_QTextBrowser::canInsertFromMimeData(const QMimeData* source if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -10504,7 +10504,7 @@ void PythonQtShell_QTextBrowser::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10526,7 +10526,7 @@ void PythonQtShell_QTextBrowser::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10548,7 +10548,7 @@ void PythonQtShell_QTextBrowser::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10570,7 +10570,7 @@ void PythonQtShell_QTextBrowser::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10592,7 +10592,7 @@ QMimeData* PythonQtShell_QTextBrowser::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -10625,7 +10625,7 @@ void PythonQtShell_QTextBrowser::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10647,7 +10647,7 @@ int PythonQtShell_QTextBrowser::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10680,7 +10680,7 @@ void PythonQtShell_QTextBrowser::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -10702,7 +10702,7 @@ void PythonQtShell_QTextBrowser::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10724,7 +10724,7 @@ void PythonQtShell_QTextBrowser::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10746,7 +10746,7 @@ void PythonQtShell_QTextBrowser::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10768,7 +10768,7 @@ void PythonQtShell_QTextBrowser::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10790,7 +10790,7 @@ void PythonQtShell_QTextBrowser::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10812,7 +10812,7 @@ bool PythonQtShell_QTextBrowser::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10845,7 +10845,7 @@ bool PythonQtShell_QTextBrowser::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10878,7 +10878,7 @@ void PythonQtShell_QTextBrowser::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10900,7 +10900,7 @@ bool PythonQtShell_QTextBrowser::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10933,7 +10933,7 @@ void PythonQtShell_QTextBrowser::focusOutEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10955,7 +10955,7 @@ void PythonQtShell_QTextBrowser::forward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("forward"); + static PyObject* name = PyUnicode_FromString("forward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10977,7 +10977,7 @@ bool PythonQtShell_QTextBrowser::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11010,7 +11010,7 @@ int PythonQtShell_QTextBrowser::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11043,7 +11043,7 @@ void PythonQtShell_QTextBrowser::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11065,7 +11065,7 @@ void PythonQtShell_QTextBrowser::home() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("home"); + static PyObject* name = PyUnicode_FromString("home"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11087,7 +11087,7 @@ void PythonQtShell_QTextBrowser::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11109,7 +11109,7 @@ void PythonQtShell_QTextBrowser::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11131,7 +11131,7 @@ QVariant PythonQtShell_QTextBrowser::inputMethodQuery(Qt::InputMethodQuery pro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11164,7 +11164,7 @@ void PythonQtShell_QTextBrowser::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -11186,7 +11186,7 @@ void PythonQtShell_QTextBrowser::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11208,7 +11208,7 @@ void PythonQtShell_QTextBrowser::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11230,7 +11230,7 @@ void PythonQtShell_QTextBrowser::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11252,7 +11252,7 @@ QVariant PythonQtShell_QTextBrowser::loadResource(int type0, const QUrl& name if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -11285,7 +11285,7 @@ int PythonQtShell_QTextBrowser::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11318,7 +11318,7 @@ QSize PythonQtShell_QTextBrowser::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11351,7 +11351,7 @@ void PythonQtShell_QTextBrowser::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11373,7 +11373,7 @@ void PythonQtShell_QTextBrowser::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11395,7 +11395,7 @@ void PythonQtShell_QTextBrowser::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11417,7 +11417,7 @@ void PythonQtShell_QTextBrowser::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11439,7 +11439,7 @@ void PythonQtShell_QTextBrowser::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11461,7 +11461,7 @@ bool PythonQtShell_QTextBrowser::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11494,7 +11494,7 @@ QPaintEngine* PythonQtShell_QTextBrowser::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11527,7 +11527,7 @@ void PythonQtShell_QTextBrowser::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11549,7 +11549,7 @@ QPaintDevice* PythonQtShell_QTextBrowser::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11582,7 +11582,7 @@ void PythonQtShell_QTextBrowser::reload() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reload"); + static PyObject* name = PyUnicode_FromString("reload"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11604,7 +11604,7 @@ void PythonQtShell_QTextBrowser::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11626,7 +11626,7 @@ void PythonQtShell_QTextBrowser::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11648,7 +11648,7 @@ void PythonQtShell_QTextBrowser::setSource(const QUrl& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSource"); + static PyObject* name = PyUnicode_FromString("setSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QUrl&"}; @@ -11670,7 +11670,7 @@ void PythonQtShell_QTextBrowser::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11692,7 +11692,7 @@ void PythonQtShell_QTextBrowser::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11714,7 +11714,7 @@ QPainter* PythonQtShell_QTextBrowser::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11747,7 +11747,7 @@ void PythonQtShell_QTextBrowser::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11769,7 +11769,7 @@ QSize PythonQtShell_QTextBrowser::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11802,7 +11802,7 @@ void PythonQtShell_QTextBrowser::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11824,7 +11824,7 @@ void PythonQtShell_QTextBrowser::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11846,7 +11846,7 @@ bool PythonQtShell_QTextBrowser::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11879,7 +11879,7 @@ QSize PythonQtShell_QTextBrowser::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11912,7 +11912,7 @@ void PythonQtShell_QTextBrowser::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12713,7 +12713,7 @@ void PythonQtShell_QTextDocument::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12735,7 +12735,7 @@ void PythonQtShell_QTextDocument::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12757,7 +12757,7 @@ QTextObject* PythonQtShell_QTextDocument::createObject(const QTextFormat& f0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTextObject*" , "const QTextFormat&"}; @@ -12790,7 +12790,7 @@ void PythonQtShell_QTextDocument::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12812,7 +12812,7 @@ bool PythonQtShell_QTextDocument::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12845,7 +12845,7 @@ bool PythonQtShell_QTextDocument::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12878,7 +12878,7 @@ QVariant PythonQtShell_QTextDocument::loadResource(int type0, const QUrl& nam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -12911,7 +12911,7 @@ void PythonQtShell_QTextDocument::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13462,7 +13462,7 @@ void PythonQtShell_QTextEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13484,7 +13484,7 @@ bool PythonQtShell_QTextEdit::canInsertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -13517,7 +13517,7 @@ void PythonQtShell_QTextEdit::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13539,7 +13539,7 @@ void PythonQtShell_QTextEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13561,7 +13561,7 @@ void PythonQtShell_QTextEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13583,7 +13583,7 @@ void PythonQtShell_QTextEdit::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13605,7 +13605,7 @@ QMimeData* PythonQtShell_QTextEdit::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -13638,7 +13638,7 @@ void PythonQtShell_QTextEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13660,7 +13660,7 @@ int PythonQtShell_QTextEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13693,7 +13693,7 @@ void PythonQtShell_QTextEdit::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -13715,7 +13715,7 @@ void PythonQtShell_QTextEdit::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13737,7 +13737,7 @@ void PythonQtShell_QTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13759,7 +13759,7 @@ void PythonQtShell_QTextEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13781,7 +13781,7 @@ void PythonQtShell_QTextEdit::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13803,7 +13803,7 @@ void PythonQtShell_QTextEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13825,7 +13825,7 @@ bool PythonQtShell_QTextEdit::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13858,7 +13858,7 @@ bool PythonQtShell_QTextEdit::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13891,7 +13891,7 @@ void PythonQtShell_QTextEdit::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13913,7 +13913,7 @@ bool PythonQtShell_QTextEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13946,7 +13946,7 @@ void PythonQtShell_QTextEdit::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13968,7 +13968,7 @@ bool PythonQtShell_QTextEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14001,7 +14001,7 @@ int PythonQtShell_QTextEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14034,7 +14034,7 @@ void PythonQtShell_QTextEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14056,7 +14056,7 @@ void PythonQtShell_QTextEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14078,7 +14078,7 @@ void PythonQtShell_QTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14100,7 +14100,7 @@ QVariant PythonQtShell_QTextEdit::inputMethodQuery(Qt::InputMethodQuery proper if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14133,7 +14133,7 @@ void PythonQtShell_QTextEdit::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -14155,7 +14155,7 @@ void PythonQtShell_QTextEdit::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14177,7 +14177,7 @@ void PythonQtShell_QTextEdit::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14199,7 +14199,7 @@ void PythonQtShell_QTextEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14221,7 +14221,7 @@ QVariant PythonQtShell_QTextEdit::loadResource(int type0, const QUrl& name1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -14254,7 +14254,7 @@ int PythonQtShell_QTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14287,7 +14287,7 @@ QSize PythonQtShell_QTextEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14320,7 +14320,7 @@ void PythonQtShell_QTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14342,7 +14342,7 @@ void PythonQtShell_QTextEdit::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14364,7 +14364,7 @@ void PythonQtShell_QTextEdit::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14386,7 +14386,7 @@ void PythonQtShell_QTextEdit::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14408,7 +14408,7 @@ void PythonQtShell_QTextEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14430,7 +14430,7 @@ bool PythonQtShell_QTextEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14463,7 +14463,7 @@ QPaintEngine* PythonQtShell_QTextEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14496,7 +14496,7 @@ void PythonQtShell_QTextEdit::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14518,7 +14518,7 @@ QPaintDevice* PythonQtShell_QTextEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14551,7 +14551,7 @@ void PythonQtShell_QTextEdit::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14573,7 +14573,7 @@ void PythonQtShell_QTextEdit::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -14595,7 +14595,7 @@ void PythonQtShell_QTextEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14617,7 +14617,7 @@ void PythonQtShell_QTextEdit::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14639,7 +14639,7 @@ QPainter* PythonQtShell_QTextEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14672,7 +14672,7 @@ void PythonQtShell_QTextEdit::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14694,7 +14694,7 @@ QSize PythonQtShell_QTextEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14727,7 +14727,7 @@ void PythonQtShell_QTextEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14749,7 +14749,7 @@ void PythonQtShell_QTextEdit::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14771,7 +14771,7 @@ bool PythonQtShell_QTextEdit::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14804,7 +14804,7 @@ QSize PythonQtShell_QTextEdit::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14837,7 +14837,7 @@ void PythonQtShell_QTextEdit::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -15296,7 +15296,7 @@ void PythonQtShell_QTextFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -15318,7 +15318,7 @@ void PythonQtShell_QTextFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15340,7 +15340,7 @@ bool PythonQtShell_QTextFrame::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15373,7 +15373,7 @@ bool PythonQtShell_QTextFrame::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15406,7 +15406,7 @@ void PythonQtShell_QTextFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp index 53890b5d0..654b04d72 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui11.cpp @@ -507,7 +507,7 @@ void PythonQtShell_QTextList::blockFormatChanged(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockFormatChanged"); + static PyObject* name = PyUnicode_FromString("blockFormatChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -529,7 +529,7 @@ void PythonQtShell_QTextList::blockInserted(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockInserted"); + static PyObject* name = PyUnicode_FromString("blockInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -551,7 +551,7 @@ void PythonQtShell_QTextList::blockRemoved(const QTextBlock& block0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockRemoved"); + static PyObject* name = PyUnicode_FromString("blockRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextBlock&"}; @@ -573,7 +573,7 @@ void PythonQtShell_QTextList::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -595,7 +595,7 @@ void PythonQtShell_QTextList::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -617,7 +617,7 @@ bool PythonQtShell_QTextList::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -650,7 +650,7 @@ bool PythonQtShell_QTextList::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -683,7 +683,7 @@ void PythonQtShell_QTextList::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -832,7 +832,7 @@ void PythonQtShell_QTextObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -854,7 +854,7 @@ void PythonQtShell_QTextObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -876,7 +876,7 @@ bool PythonQtShell_QTextObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -909,7 +909,7 @@ bool PythonQtShell_QTextObject::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -942,7 +942,7 @@ void PythonQtShell_QTextObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1130,7 +1130,7 @@ void PythonQtShell_QTextTable::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1152,7 +1152,7 @@ void PythonQtShell_QTextTable::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1174,7 +1174,7 @@ bool PythonQtShell_QTextTable::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1207,7 +1207,7 @@ bool PythonQtShell_QTextTable::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1240,7 +1240,7 @@ void PythonQtShell_QTextTable::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1632,7 +1632,7 @@ void PythonQtShell_QTimeEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1654,7 +1654,7 @@ void PythonQtShell_QTimeEdit::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1676,7 +1676,7 @@ void PythonQtShell_QTimeEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1698,7 +1698,7 @@ void PythonQtShell_QTimeEdit::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1720,7 +1720,7 @@ void PythonQtShell_QTimeEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1742,7 +1742,7 @@ void PythonQtShell_QTimeEdit::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1764,7 +1764,7 @@ void PythonQtShell_QTimeEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1786,7 +1786,7 @@ QDateTime PythonQtShell_QTimeEdit::dateTimeFromText(const QString& text0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dateTimeFromText"); + static PyObject* name = PyUnicode_FromString("dateTimeFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QDateTime" , "const QString&"}; @@ -1819,7 +1819,7 @@ int PythonQtShell_QTimeEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1852,7 +1852,7 @@ void PythonQtShell_QTimeEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1874,7 +1874,7 @@ void PythonQtShell_QTimeEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1896,7 +1896,7 @@ void PythonQtShell_QTimeEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1918,7 +1918,7 @@ void PythonQtShell_QTimeEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1940,7 +1940,7 @@ void PythonQtShell_QTimeEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1962,7 +1962,7 @@ bool PythonQtShell_QTimeEdit::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1995,7 +1995,7 @@ bool PythonQtShell_QTimeEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2028,7 +2028,7 @@ void PythonQtShell_QTimeEdit::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -2050,7 +2050,7 @@ void PythonQtShell_QTimeEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2072,7 +2072,7 @@ bool PythonQtShell_QTimeEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2105,7 +2105,7 @@ void PythonQtShell_QTimeEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2127,7 +2127,7 @@ bool PythonQtShell_QTimeEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2160,7 +2160,7 @@ int PythonQtShell_QTimeEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2193,7 +2193,7 @@ void PythonQtShell_QTimeEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2215,7 +2215,7 @@ void PythonQtShell_QTimeEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2237,7 +2237,7 @@ void PythonQtShell_QTimeEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2259,7 +2259,7 @@ QVariant PythonQtShell_QTimeEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2292,7 +2292,7 @@ void PythonQtShell_QTimeEdit::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2314,7 +2314,7 @@ void PythonQtShell_QTimeEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2336,7 +2336,7 @@ void PythonQtShell_QTimeEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2358,7 +2358,7 @@ int PythonQtShell_QTimeEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2391,7 +2391,7 @@ void PythonQtShell_QTimeEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2413,7 +2413,7 @@ void PythonQtShell_QTimeEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2435,7 +2435,7 @@ void PythonQtShell_QTimeEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2457,7 +2457,7 @@ void PythonQtShell_QTimeEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2479,7 +2479,7 @@ void PythonQtShell_QTimeEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2501,7 +2501,7 @@ bool PythonQtShell_QTimeEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2534,7 +2534,7 @@ QPaintEngine* PythonQtShell_QTimeEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2567,7 +2567,7 @@ void PythonQtShell_QTimeEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2589,7 +2589,7 @@ QPaintDevice* PythonQtShell_QTimeEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2622,7 +2622,7 @@ void PythonQtShell_QTimeEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2644,7 +2644,7 @@ void PythonQtShell_QTimeEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2666,7 +2666,7 @@ QPainter* PythonQtShell_QTimeEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2699,7 +2699,7 @@ void PythonQtShell_QTimeEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2721,7 +2721,7 @@ void PythonQtShell_QTimeEdit::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2743,7 +2743,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QTimeEdit::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -2776,7 +2776,7 @@ void PythonQtShell_QTimeEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2798,7 +2798,7 @@ QString PythonQtShell_QTimeEdit::textFromDateTime(const QDateTime& dt0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromDateTime"); + static PyObject* name = PyUnicode_FromString("textFromDateTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QDateTime&"}; @@ -2831,7 +2831,7 @@ void PythonQtShell_QTimeEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2853,7 +2853,7 @@ QValidator::State PythonQtShell_QTimeEdit::validate(QString& input0, int& pos if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -2886,7 +2886,7 @@ void PythonQtShell_QTimeEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2935,7 +2935,7 @@ void PythonQtShell_QToolBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2957,7 +2957,7 @@ void PythonQtShell_QToolBar::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2979,7 +2979,7 @@ void PythonQtShell_QToolBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3001,7 +3001,7 @@ void PythonQtShell_QToolBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3023,7 +3023,7 @@ void PythonQtShell_QToolBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3045,7 +3045,7 @@ void PythonQtShell_QToolBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3067,7 +3067,7 @@ int PythonQtShell_QToolBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3100,7 +3100,7 @@ void PythonQtShell_QToolBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3122,7 +3122,7 @@ void PythonQtShell_QToolBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3144,7 +3144,7 @@ void PythonQtShell_QToolBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3166,7 +3166,7 @@ void PythonQtShell_QToolBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3188,7 +3188,7 @@ void PythonQtShell_QToolBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3210,7 +3210,7 @@ bool PythonQtShell_QToolBar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3243,7 +3243,7 @@ bool PythonQtShell_QToolBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3276,7 +3276,7 @@ void PythonQtShell_QToolBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3298,7 +3298,7 @@ bool PythonQtShell_QToolBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3331,7 +3331,7 @@ void PythonQtShell_QToolBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3353,7 +3353,7 @@ bool PythonQtShell_QToolBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3386,7 +3386,7 @@ int PythonQtShell_QToolBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3419,7 +3419,7 @@ void PythonQtShell_QToolBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3441,7 +3441,7 @@ void PythonQtShell_QToolBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3463,7 +3463,7 @@ void PythonQtShell_QToolBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3485,7 +3485,7 @@ QVariant PythonQtShell_QToolBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3518,7 +3518,7 @@ void PythonQtShell_QToolBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3540,7 +3540,7 @@ void PythonQtShell_QToolBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3562,7 +3562,7 @@ void PythonQtShell_QToolBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3584,7 +3584,7 @@ int PythonQtShell_QToolBar::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3617,7 +3617,7 @@ QSize PythonQtShell_QToolBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3650,7 +3650,7 @@ void PythonQtShell_QToolBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3672,7 +3672,7 @@ void PythonQtShell_QToolBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3694,7 +3694,7 @@ void PythonQtShell_QToolBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3716,7 +3716,7 @@ void PythonQtShell_QToolBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3738,7 +3738,7 @@ void PythonQtShell_QToolBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3760,7 +3760,7 @@ bool PythonQtShell_QToolBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3793,7 +3793,7 @@ QPaintEngine* PythonQtShell_QToolBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3826,7 +3826,7 @@ void PythonQtShell_QToolBar::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3848,7 +3848,7 @@ QPaintDevice* PythonQtShell_QToolBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3881,7 +3881,7 @@ void PythonQtShell_QToolBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3903,7 +3903,7 @@ void PythonQtShell_QToolBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3925,7 +3925,7 @@ QPainter* PythonQtShell_QToolBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3958,7 +3958,7 @@ void PythonQtShell_QToolBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3980,7 +3980,7 @@ QSize PythonQtShell_QToolBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4013,7 +4013,7 @@ void PythonQtShell_QToolBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4035,7 +4035,7 @@ void PythonQtShell_QToolBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4057,7 +4057,7 @@ void PythonQtShell_QToolBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4252,7 +4252,7 @@ void PythonQtShell_QToolBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4274,7 +4274,7 @@ void PythonQtShell_QToolBox::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4296,7 +4296,7 @@ void PythonQtShell_QToolBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4318,7 +4318,7 @@ void PythonQtShell_QToolBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4340,7 +4340,7 @@ void PythonQtShell_QToolBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4362,7 +4362,7 @@ void PythonQtShell_QToolBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4384,7 +4384,7 @@ int PythonQtShell_QToolBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4417,7 +4417,7 @@ void PythonQtShell_QToolBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4439,7 +4439,7 @@ void PythonQtShell_QToolBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4461,7 +4461,7 @@ void PythonQtShell_QToolBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4483,7 +4483,7 @@ void PythonQtShell_QToolBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4505,7 +4505,7 @@ void PythonQtShell_QToolBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4527,7 +4527,7 @@ bool PythonQtShell_QToolBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4560,7 +4560,7 @@ bool PythonQtShell_QToolBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4593,7 +4593,7 @@ void PythonQtShell_QToolBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4615,7 +4615,7 @@ bool PythonQtShell_QToolBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4648,7 +4648,7 @@ void PythonQtShell_QToolBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4670,7 +4670,7 @@ bool PythonQtShell_QToolBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4703,7 +4703,7 @@ int PythonQtShell_QToolBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4736,7 +4736,7 @@ void PythonQtShell_QToolBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4758,7 +4758,7 @@ void PythonQtShell_QToolBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4780,7 +4780,7 @@ void PythonQtShell_QToolBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4802,7 +4802,7 @@ QVariant PythonQtShell_QToolBox::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4835,7 +4835,7 @@ void PythonQtShell_QToolBox::itemInserted(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemInserted"); + static PyObject* name = PyUnicode_FromString("itemInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4857,7 +4857,7 @@ void PythonQtShell_QToolBox::itemRemoved(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemRemoved"); + static PyObject* name = PyUnicode_FromString("itemRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4879,7 +4879,7 @@ void PythonQtShell_QToolBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4901,7 +4901,7 @@ void PythonQtShell_QToolBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4923,7 +4923,7 @@ void PythonQtShell_QToolBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4945,7 +4945,7 @@ int PythonQtShell_QToolBox::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4978,7 +4978,7 @@ QSize PythonQtShell_QToolBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5011,7 +5011,7 @@ void PythonQtShell_QToolBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5033,7 +5033,7 @@ void PythonQtShell_QToolBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5055,7 +5055,7 @@ void PythonQtShell_QToolBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5077,7 +5077,7 @@ void PythonQtShell_QToolBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5099,7 +5099,7 @@ void PythonQtShell_QToolBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5121,7 +5121,7 @@ bool PythonQtShell_QToolBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5154,7 +5154,7 @@ QPaintEngine* PythonQtShell_QToolBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5187,7 +5187,7 @@ void PythonQtShell_QToolBox::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5209,7 +5209,7 @@ QPaintDevice* PythonQtShell_QToolBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5242,7 +5242,7 @@ void PythonQtShell_QToolBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5264,7 +5264,7 @@ void PythonQtShell_QToolBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5286,7 +5286,7 @@ QPainter* PythonQtShell_QToolBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5319,7 +5319,7 @@ void PythonQtShell_QToolBox::showEvent(QShowEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5341,7 +5341,7 @@ QSize PythonQtShell_QToolBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5374,7 +5374,7 @@ void PythonQtShell_QToolBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5396,7 +5396,7 @@ void PythonQtShell_QToolBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5418,7 +5418,7 @@ void PythonQtShell_QToolBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5563,7 +5563,7 @@ void PythonQtShell_QToolButton::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5585,7 +5585,7 @@ void PythonQtShell_QToolButton::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5607,7 +5607,7 @@ void PythonQtShell_QToolButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5629,7 +5629,7 @@ void PythonQtShell_QToolButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5651,7 +5651,7 @@ void PythonQtShell_QToolButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5673,7 +5673,7 @@ void PythonQtShell_QToolButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5695,7 +5695,7 @@ void PythonQtShell_QToolButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5717,7 +5717,7 @@ int PythonQtShell_QToolButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5750,7 +5750,7 @@ void PythonQtShell_QToolButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5772,7 +5772,7 @@ void PythonQtShell_QToolButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5794,7 +5794,7 @@ void PythonQtShell_QToolButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5816,7 +5816,7 @@ void PythonQtShell_QToolButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5838,7 +5838,7 @@ void PythonQtShell_QToolButton::enterEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5860,7 +5860,7 @@ bool PythonQtShell_QToolButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5893,7 +5893,7 @@ bool PythonQtShell_QToolButton::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5926,7 +5926,7 @@ void PythonQtShell_QToolButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5948,7 +5948,7 @@ bool PythonQtShell_QToolButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5981,7 +5981,7 @@ void PythonQtShell_QToolButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6003,7 +6003,7 @@ bool PythonQtShell_QToolButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6036,7 +6036,7 @@ int PythonQtShell_QToolButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6069,7 +6069,7 @@ void PythonQtShell_QToolButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6091,7 +6091,7 @@ bool PythonQtShell_QToolButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -6124,7 +6124,7 @@ void PythonQtShell_QToolButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6146,7 +6146,7 @@ void PythonQtShell_QToolButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6168,7 +6168,7 @@ QVariant PythonQtShell_QToolButton::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6201,7 +6201,7 @@ void PythonQtShell_QToolButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6223,7 +6223,7 @@ void PythonQtShell_QToolButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6245,7 +6245,7 @@ void PythonQtShell_QToolButton::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6267,7 +6267,7 @@ int PythonQtShell_QToolButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6300,7 +6300,7 @@ QSize PythonQtShell_QToolButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6333,7 +6333,7 @@ void PythonQtShell_QToolButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6355,7 +6355,7 @@ void PythonQtShell_QToolButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6377,7 +6377,7 @@ void PythonQtShell_QToolButton::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6399,7 +6399,7 @@ void PythonQtShell_QToolButton::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6421,7 +6421,7 @@ void PythonQtShell_QToolButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6443,7 +6443,7 @@ bool PythonQtShell_QToolButton::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6476,7 +6476,7 @@ void PythonQtShell_QToolButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6498,7 +6498,7 @@ QPaintEngine* PythonQtShell_QToolButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6531,7 +6531,7 @@ void PythonQtShell_QToolButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6553,7 +6553,7 @@ QPaintDevice* PythonQtShell_QToolButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6586,7 +6586,7 @@ void PythonQtShell_QToolButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6608,7 +6608,7 @@ void PythonQtShell_QToolButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6630,7 +6630,7 @@ QPainter* PythonQtShell_QToolButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6663,7 +6663,7 @@ void PythonQtShell_QToolButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6685,7 +6685,7 @@ QSize PythonQtShell_QToolButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6718,7 +6718,7 @@ void PythonQtShell_QToolButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6740,7 +6740,7 @@ void PythonQtShell_QToolButton::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6762,7 +6762,7 @@ void PythonQtShell_QToolButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7609,7 +7609,7 @@ void PythonQtShell_QTreeView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7631,7 +7631,7 @@ void PythonQtShell_QTreeView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7653,7 +7653,7 @@ void PythonQtShell_QTreeView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7675,7 +7675,7 @@ void PythonQtShell_QTreeView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -7697,7 +7697,7 @@ void PythonQtShell_QTreeView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7719,7 +7719,7 @@ void PythonQtShell_QTreeView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7741,7 +7741,7 @@ void PythonQtShell_QTreeView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7763,7 +7763,7 @@ void PythonQtShell_QTreeView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -7785,7 +7785,7 @@ void PythonQtShell_QTreeView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7807,7 +7807,7 @@ void PythonQtShell_QTreeView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -7829,7 +7829,7 @@ int PythonQtShell_QTreeView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7862,7 +7862,7 @@ void PythonQtShell_QTreeView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7884,7 +7884,7 @@ void PythonQtShell_QTreeView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7906,7 +7906,7 @@ void PythonQtShell_QTreeView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7928,7 +7928,7 @@ void PythonQtShell_QTreeView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7950,7 +7950,7 @@ void PythonQtShell_QTreeView::drawBranches(QPainter* painter0, const QRect& re if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -7972,7 +7972,7 @@ void PythonQtShell_QTreeView::drawRow(QPainter* painter0, const QStyleOptionVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -7994,7 +7994,7 @@ void PythonQtShell_QTreeView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8016,7 +8016,7 @@ bool PythonQtShell_QTreeView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -8049,7 +8049,7 @@ void PythonQtShell_QTreeView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -8071,7 +8071,7 @@ void PythonQtShell_QTreeView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8093,7 +8093,7 @@ bool PythonQtShell_QTreeView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8126,7 +8126,7 @@ bool PythonQtShell_QTreeView::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8159,7 +8159,7 @@ void PythonQtShell_QTreeView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8181,7 +8181,7 @@ bool PythonQtShell_QTreeView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8214,7 +8214,7 @@ void PythonQtShell_QTreeView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8236,7 +8236,7 @@ bool PythonQtShell_QTreeView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8269,7 +8269,7 @@ int PythonQtShell_QTreeView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8302,7 +8302,7 @@ void PythonQtShell_QTreeView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8324,7 +8324,7 @@ int PythonQtShell_QTreeView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8357,7 +8357,7 @@ void PythonQtShell_QTreeView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8379,7 +8379,7 @@ void PythonQtShell_QTreeView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8401,7 +8401,7 @@ QModelIndex PythonQtShell_QTreeView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -8434,7 +8434,7 @@ void PythonQtShell_QTreeView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8456,7 +8456,7 @@ void PythonQtShell_QTreeView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8478,7 +8478,7 @@ QVariant PythonQtShell_QTreeView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8511,7 +8511,7 @@ bool PythonQtShell_QTreeView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -8544,7 +8544,7 @@ void PythonQtShell_QTreeView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8566,7 +8566,7 @@ void PythonQtShell_QTreeView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8588,7 +8588,7 @@ void PythonQtShell_QTreeView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -8610,7 +8610,7 @@ void PythonQtShell_QTreeView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8632,7 +8632,7 @@ int PythonQtShell_QTreeView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8665,7 +8665,7 @@ QSize PythonQtShell_QTreeView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8698,7 +8698,7 @@ void PythonQtShell_QTreeView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8720,7 +8720,7 @@ void PythonQtShell_QTreeView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8742,7 +8742,7 @@ void PythonQtShell_QTreeView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8764,7 +8764,7 @@ void PythonQtShell_QTreeView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8786,7 +8786,7 @@ QModelIndex PythonQtShell_QTreeView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -8819,7 +8819,7 @@ void PythonQtShell_QTreeView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8841,7 +8841,7 @@ bool PythonQtShell_QTreeView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8874,7 +8874,7 @@ QPaintEngine* PythonQtShell_QTreeView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8907,7 +8907,7 @@ void PythonQtShell_QTreeView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8929,7 +8929,7 @@ QPaintDevice* PythonQtShell_QTreeView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8962,7 +8962,7 @@ void PythonQtShell_QTreeView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8984,7 +8984,7 @@ void PythonQtShell_QTreeView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9006,7 +9006,7 @@ void PythonQtShell_QTreeView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9028,7 +9028,7 @@ void PythonQtShell_QTreeView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -9050,7 +9050,7 @@ void PythonQtShell_QTreeView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -9072,7 +9072,7 @@ void PythonQtShell_QTreeView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -9094,7 +9094,7 @@ void PythonQtShell_QTreeView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9116,7 +9116,7 @@ QList PythonQtShell_QTreeView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -9149,7 +9149,7 @@ void PythonQtShell_QTreeView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -9171,7 +9171,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTreeView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -9204,7 +9204,7 @@ void PythonQtShell_QTreeView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -9226,7 +9226,7 @@ void PythonQtShell_QTreeView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -9248,7 +9248,7 @@ void PythonQtShell_QTreeView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -9270,7 +9270,7 @@ void PythonQtShell_QTreeView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -9292,7 +9292,7 @@ void PythonQtShell_QTreeView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9314,7 +9314,7 @@ void PythonQtShell_QTreeView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -9336,7 +9336,7 @@ QPainter* PythonQtShell_QTreeView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9369,7 +9369,7 @@ void PythonQtShell_QTreeView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9391,7 +9391,7 @@ QSize PythonQtShell_QTreeView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9424,7 +9424,7 @@ int PythonQtShell_QTreeView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9457,7 +9457,7 @@ int PythonQtShell_QTreeView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9490,7 +9490,7 @@ void PythonQtShell_QTreeView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -9512,7 +9512,7 @@ void PythonQtShell_QTreeView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9534,7 +9534,7 @@ void PythonQtShell_QTreeView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9556,7 +9556,7 @@ void PythonQtShell_QTreeView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9578,7 +9578,7 @@ void PythonQtShell_QTreeView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9600,7 +9600,7 @@ void PythonQtShell_QTreeView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9622,7 +9622,7 @@ int PythonQtShell_QTreeView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9655,7 +9655,7 @@ void PythonQtShell_QTreeView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9677,7 +9677,7 @@ void PythonQtShell_QTreeView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9699,7 +9699,7 @@ QStyleOptionViewItem PythonQtShell_QTreeView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -9732,7 +9732,7 @@ bool PythonQtShell_QTreeView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9765,7 +9765,7 @@ QSize PythonQtShell_QTreeView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9798,7 +9798,7 @@ QRect PythonQtShell_QTreeView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -9831,7 +9831,7 @@ QRegion PythonQtShell_QTreeView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -9864,7 +9864,7 @@ void PythonQtShell_QTreeView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10144,7 +10144,7 @@ void PythonQtShell_QTreeWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10166,7 +10166,7 @@ void PythonQtShell_QTreeWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10188,7 +10188,7 @@ void PythonQtShell_QTreeWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10210,7 +10210,7 @@ void PythonQtShell_QTreeWidget::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -10232,7 +10232,7 @@ void PythonQtShell_QTreeWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10254,7 +10254,7 @@ void PythonQtShell_QTreeWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -10276,7 +10276,7 @@ void PythonQtShell_QTreeWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10298,7 +10298,7 @@ void PythonQtShell_QTreeWidget::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -10320,7 +10320,7 @@ void PythonQtShell_QTreeWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10342,7 +10342,7 @@ void PythonQtShell_QTreeWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -10364,7 +10364,7 @@ int PythonQtShell_QTreeWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10397,7 +10397,7 @@ void PythonQtShell_QTreeWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10419,7 +10419,7 @@ void PythonQtShell_QTreeWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10441,7 +10441,7 @@ void PythonQtShell_QTreeWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10463,7 +10463,7 @@ void PythonQtShell_QTreeWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10485,7 +10485,7 @@ void PythonQtShell_QTreeWidget::drawBranches(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBranches"); + static PyObject* name = PyUnicode_FromString("drawBranches"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "const QModelIndex&"}; @@ -10507,7 +10507,7 @@ void PythonQtShell_QTreeWidget::drawRow(QPainter* painter0, const QStyleOptionV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRow"); + static PyObject* name = PyUnicode_FromString("drawRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -10529,7 +10529,7 @@ void PythonQtShell_QTreeWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10551,7 +10551,7 @@ bool PythonQtShell_QTreeWidget::dropMimeData(QTreeWidgetItem* parent0, int in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QTreeWidgetItem*" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -10584,7 +10584,7 @@ bool PythonQtShell_QTreeWidget::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -10617,7 +10617,7 @@ void PythonQtShell_QTreeWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -10639,7 +10639,7 @@ void PythonQtShell_QTreeWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10661,7 +10661,7 @@ bool PythonQtShell_QTreeWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10694,7 +10694,7 @@ bool PythonQtShell_QTreeWidget::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10727,7 +10727,7 @@ void PythonQtShell_QTreeWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10749,7 +10749,7 @@ bool PythonQtShell_QTreeWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10782,7 +10782,7 @@ void PythonQtShell_QTreeWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10804,7 +10804,7 @@ bool PythonQtShell_QTreeWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10837,7 +10837,7 @@ int PythonQtShell_QTreeWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10870,7 +10870,7 @@ void PythonQtShell_QTreeWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10892,7 +10892,7 @@ int PythonQtShell_QTreeWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10925,7 +10925,7 @@ void PythonQtShell_QTreeWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10947,7 +10947,7 @@ void PythonQtShell_QTreeWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10969,7 +10969,7 @@ QModelIndex PythonQtShell_QTreeWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -11002,7 +11002,7 @@ void PythonQtShell_QTreeWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11024,7 +11024,7 @@ void PythonQtShell_QTreeWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11046,7 +11046,7 @@ QVariant PythonQtShell_QTreeWidget::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11079,7 +11079,7 @@ bool PythonQtShell_QTreeWidget::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -11112,7 +11112,7 @@ void PythonQtShell_QTreeWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11134,7 +11134,7 @@ void PythonQtShell_QTreeWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11156,7 +11156,7 @@ void PythonQtShell_QTreeWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -11178,7 +11178,7 @@ void PythonQtShell_QTreeWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11200,7 +11200,7 @@ int PythonQtShell_QTreeWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11233,7 +11233,7 @@ QMimeData* PythonQtShell_QTreeWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -11266,7 +11266,7 @@ QStringList PythonQtShell_QTreeWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -11299,7 +11299,7 @@ QSize PythonQtShell_QTreeWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11332,7 +11332,7 @@ void PythonQtShell_QTreeWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11354,7 +11354,7 @@ void PythonQtShell_QTreeWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11376,7 +11376,7 @@ void PythonQtShell_QTreeWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11398,7 +11398,7 @@ void PythonQtShell_QTreeWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11420,7 +11420,7 @@ QModelIndex PythonQtShell_QTreeWidget::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -11453,7 +11453,7 @@ void PythonQtShell_QTreeWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11475,7 +11475,7 @@ bool PythonQtShell_QTreeWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11508,7 +11508,7 @@ QPaintEngine* PythonQtShell_QTreeWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11541,7 +11541,7 @@ void PythonQtShell_QTreeWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11563,7 +11563,7 @@ QPaintDevice* PythonQtShell_QTreeWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11596,7 +11596,7 @@ void PythonQtShell_QTreeWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11618,7 +11618,7 @@ void PythonQtShell_QTreeWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11640,7 +11640,7 @@ void PythonQtShell_QTreeWidget::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11662,7 +11662,7 @@ void PythonQtShell_QTreeWidget::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -11684,7 +11684,7 @@ void PythonQtShell_QTreeWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -11706,7 +11706,7 @@ void PythonQtShell_QTreeWidget::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -11728,7 +11728,7 @@ void PythonQtShell_QTreeWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11750,7 +11750,7 @@ QList PythonQtShell_QTreeWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -11783,7 +11783,7 @@ void PythonQtShell_QTreeWidget::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -11805,7 +11805,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QTreeWidget::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -11838,7 +11838,7 @@ void PythonQtShell_QTreeWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11860,7 +11860,7 @@ void PythonQtShell_QTreeWidget::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -11882,7 +11882,7 @@ void PythonQtShell_QTreeWidget::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -11904,7 +11904,7 @@ void PythonQtShell_QTreeWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11926,7 +11926,7 @@ void PythonQtShell_QTreeWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -11948,7 +11948,7 @@ QPainter* PythonQtShell_QTreeWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11981,7 +11981,7 @@ void PythonQtShell_QTreeWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12003,7 +12003,7 @@ QSize PythonQtShell_QTreeWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12036,7 +12036,7 @@ int PythonQtShell_QTreeWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12069,7 +12069,7 @@ int PythonQtShell_QTreeWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12102,7 +12102,7 @@ void PythonQtShell_QTreeWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -12124,7 +12124,7 @@ Qt::DropActions PythonQtShell_QTreeWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12157,7 +12157,7 @@ void PythonQtShell_QTreeWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12179,7 +12179,7 @@ void PythonQtShell_QTreeWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12201,7 +12201,7 @@ void PythonQtShell_QTreeWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12223,7 +12223,7 @@ void PythonQtShell_QTreeWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12245,7 +12245,7 @@ void PythonQtShell_QTreeWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12267,7 +12267,7 @@ int PythonQtShell_QTreeWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12300,7 +12300,7 @@ void PythonQtShell_QTreeWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12322,7 +12322,7 @@ void PythonQtShell_QTreeWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12344,7 +12344,7 @@ QStyleOptionViewItem PythonQtShell_QTreeWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -12377,7 +12377,7 @@ bool PythonQtShell_QTreeWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12410,7 +12410,7 @@ QSize PythonQtShell_QTreeWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12443,7 +12443,7 @@ QRect PythonQtShell_QTreeWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -12476,7 +12476,7 @@ QRegion PythonQtShell_QTreeWidget::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -12509,7 +12509,7 @@ void PythonQtShell_QTreeWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12769,7 +12769,7 @@ QTreeWidgetItem* PythonQtShell_QTreeWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTreeWidgetItem*"}; @@ -12802,7 +12802,7 @@ QVariant PythonQtShell_QTreeWidgetItem::data(int column0, int role1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "int"}; @@ -12835,7 +12835,7 @@ void PythonQtShell_QTreeWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -12857,7 +12857,7 @@ void PythonQtShell_QTreeWidgetItem::setData(int column0, int role1, const QVar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "const QVariant&"}; @@ -12879,7 +12879,7 @@ void PythonQtShell_QTreeWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -13234,7 +13234,7 @@ int PythonQtShell_QUndoCommand::id() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("id"); + static PyObject* name = PyUnicode_FromString("id"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13267,7 +13267,7 @@ bool PythonQtShell_QUndoCommand::mergeWith(const QUndoCommand* other0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mergeWith"); + static PyObject* name = PyUnicode_FromString("mergeWith"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUndoCommand*"}; @@ -13300,7 +13300,7 @@ void PythonQtShell_QUndoCommand::redo() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redo"); + static PyObject* name = PyUnicode_FromString("redo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13322,7 +13322,7 @@ void PythonQtShell_QUndoCommand::undo() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("undo"); + static PyObject* name = PyUnicode_FromString("undo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13403,7 +13403,7 @@ void PythonQtShell_QUndoGroup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13425,7 +13425,7 @@ void PythonQtShell_QUndoGroup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13447,7 +13447,7 @@ bool PythonQtShell_QUndoGroup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13480,7 +13480,7 @@ bool PythonQtShell_QUndoGroup::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13513,7 +13513,7 @@ void PythonQtShell_QUndoGroup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13613,7 +13613,7 @@ void PythonQtShell_QUndoStack::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13635,7 +13635,7 @@ void PythonQtShell_QUndoStack::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13657,7 +13657,7 @@ bool PythonQtShell_QUndoStack::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13690,7 +13690,7 @@ bool PythonQtShell_QUndoStack::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13723,7 +13723,7 @@ void PythonQtShell_QUndoStack::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp index 940469d94..13c3e5787 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui12.cpp @@ -73,7 +73,7 @@ void PythonQtShell_QUndoView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -95,7 +95,7 @@ void PythonQtShell_QUndoView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -117,7 +117,7 @@ void PythonQtShell_QUndoView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -139,7 +139,7 @@ void PythonQtShell_QUndoView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -161,7 +161,7 @@ void PythonQtShell_QUndoView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -183,7 +183,7 @@ void PythonQtShell_QUndoView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -205,7 +205,7 @@ void PythonQtShell_QUndoView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -227,7 +227,7 @@ void PythonQtShell_QUndoView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -249,7 +249,7 @@ void PythonQtShell_QUndoView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -271,7 +271,7 @@ void PythonQtShell_QUndoView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -293,7 +293,7 @@ int PythonQtShell_QUndoView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -326,7 +326,7 @@ void PythonQtShell_QUndoView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -348,7 +348,7 @@ void PythonQtShell_QUndoView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -370,7 +370,7 @@ void PythonQtShell_QUndoView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -392,7 +392,7 @@ void PythonQtShell_QUndoView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -414,7 +414,7 @@ void PythonQtShell_QUndoView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -436,7 +436,7 @@ bool PythonQtShell_QUndoView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -469,7 +469,7 @@ void PythonQtShell_QUndoView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -491,7 +491,7 @@ void PythonQtShell_QUndoView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -513,7 +513,7 @@ bool PythonQtShell_QUndoView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -546,7 +546,7 @@ bool PythonQtShell_QUndoView::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -579,7 +579,7 @@ void PythonQtShell_QUndoView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -601,7 +601,7 @@ bool PythonQtShell_QUndoView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -634,7 +634,7 @@ void PythonQtShell_QUndoView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -656,7 +656,7 @@ bool PythonQtShell_QUndoView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -689,7 +689,7 @@ int PythonQtShell_QUndoView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -722,7 +722,7 @@ void PythonQtShell_QUndoView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -744,7 +744,7 @@ int PythonQtShell_QUndoView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -777,7 +777,7 @@ void PythonQtShell_QUndoView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -799,7 +799,7 @@ void PythonQtShell_QUndoView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -821,7 +821,7 @@ QModelIndex PythonQtShell_QUndoView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -854,7 +854,7 @@ void PythonQtShell_QUndoView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -876,7 +876,7 @@ void PythonQtShell_QUndoView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -898,7 +898,7 @@ QVariant PythonQtShell_QUndoView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -931,7 +931,7 @@ bool PythonQtShell_QUndoView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -964,7 +964,7 @@ void PythonQtShell_QUndoView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -986,7 +986,7 @@ void PythonQtShell_QUndoView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1008,7 +1008,7 @@ void PythonQtShell_QUndoView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1030,7 +1030,7 @@ void PythonQtShell_QUndoView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1052,7 +1052,7 @@ int PythonQtShell_QUndoView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1085,7 +1085,7 @@ QSize PythonQtShell_QUndoView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1118,7 +1118,7 @@ void PythonQtShell_QUndoView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1140,7 +1140,7 @@ void PythonQtShell_QUndoView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1162,7 +1162,7 @@ void PythonQtShell_QUndoView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1184,7 +1184,7 @@ void PythonQtShell_QUndoView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1206,7 +1206,7 @@ QModelIndex PythonQtShell_QUndoView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -1239,7 +1239,7 @@ void PythonQtShell_QUndoView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1261,7 +1261,7 @@ bool PythonQtShell_QUndoView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1294,7 +1294,7 @@ QPaintEngine* PythonQtShell_QUndoView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1327,7 +1327,7 @@ void PythonQtShell_QUndoView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1349,7 +1349,7 @@ QPaintDevice* PythonQtShell_QUndoView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1382,7 +1382,7 @@ void PythonQtShell_QUndoView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1404,7 +1404,7 @@ void PythonQtShell_QUndoView::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1426,7 +1426,7 @@ void PythonQtShell_QUndoView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1448,7 +1448,7 @@ void PythonQtShell_QUndoView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -1470,7 +1470,7 @@ void PythonQtShell_QUndoView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -1492,7 +1492,7 @@ void PythonQtShell_QUndoView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -1514,7 +1514,7 @@ void PythonQtShell_QUndoView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1536,7 +1536,7 @@ QList PythonQtShell_QUndoView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -1569,7 +1569,7 @@ void PythonQtShell_QUndoView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -1591,7 +1591,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QUndoView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -1624,7 +1624,7 @@ void PythonQtShell_QUndoView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -1646,7 +1646,7 @@ void PythonQtShell_QUndoView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1668,7 +1668,7 @@ void PythonQtShell_QUndoView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -1690,7 +1690,7 @@ void PythonQtShell_QUndoView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -1712,7 +1712,7 @@ void PythonQtShell_QUndoView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1734,7 +1734,7 @@ void PythonQtShell_QUndoView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -1756,7 +1756,7 @@ QPainter* PythonQtShell_QUndoView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1789,7 +1789,7 @@ void PythonQtShell_QUndoView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1811,7 +1811,7 @@ QSize PythonQtShell_QUndoView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1844,7 +1844,7 @@ int PythonQtShell_QUndoView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1877,7 +1877,7 @@ int PythonQtShell_QUndoView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1910,7 +1910,7 @@ void PythonQtShell_QUndoView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -1932,7 +1932,7 @@ void PythonQtShell_QUndoView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1954,7 +1954,7 @@ void PythonQtShell_QUndoView::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1976,7 +1976,7 @@ void PythonQtShell_QUndoView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1998,7 +1998,7 @@ void PythonQtShell_QUndoView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2020,7 +2020,7 @@ void PythonQtShell_QUndoView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2042,7 +2042,7 @@ int PythonQtShell_QUndoView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2075,7 +2075,7 @@ void PythonQtShell_QUndoView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2097,7 +2097,7 @@ void PythonQtShell_QUndoView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2119,7 +2119,7 @@ QStyleOptionViewItem PythonQtShell_QUndoView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -2152,7 +2152,7 @@ bool PythonQtShell_QUndoView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2185,7 +2185,7 @@ QSize PythonQtShell_QUndoView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2218,7 +2218,7 @@ QRect PythonQtShell_QUndoView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -2251,7 +2251,7 @@ QRegion PythonQtShell_QUndoView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -2284,7 +2284,7 @@ void PythonQtShell_QUndoView::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2367,7 +2367,7 @@ void PythonQtShell_QVBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -2389,7 +2389,7 @@ void PythonQtShell_QVBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2411,7 +2411,7 @@ QSizePolicy::ControlTypes PythonQtShell_QVBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -2444,7 +2444,7 @@ int PythonQtShell_QVBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2477,7 +2477,7 @@ void PythonQtShell_QVBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2499,7 +2499,7 @@ bool PythonQtShell_QVBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2532,7 +2532,7 @@ bool PythonQtShell_QVBoxLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2565,7 +2565,7 @@ Qt::Orientations PythonQtShell_QVBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -2598,7 +2598,7 @@ QRect PythonQtShell_QVBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2631,7 +2631,7 @@ bool PythonQtShell_QVBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2664,7 +2664,7 @@ int PythonQtShell_QVBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2697,7 +2697,7 @@ int PythonQtShell_QVBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -2730,7 +2730,7 @@ void PythonQtShell_QVBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2752,7 +2752,7 @@ bool PythonQtShell_QVBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2785,7 +2785,7 @@ QLayoutItem* PythonQtShell_QVBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2818,7 +2818,7 @@ QLayout* PythonQtShell_QVBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -2851,7 +2851,7 @@ QSize PythonQtShell_QVBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2884,7 +2884,7 @@ int PythonQtShell_QVBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2917,7 +2917,7 @@ QSize PythonQtShell_QVBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2950,7 +2950,7 @@ void PythonQtShell_QVBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2972,7 +2972,7 @@ QSize PythonQtShell_QVBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3005,7 +3005,7 @@ QLayoutItem* PythonQtShell_QVBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -3038,7 +3038,7 @@ void PythonQtShell_QVBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3087,7 +3087,7 @@ void PythonQtShell_QValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3109,7 +3109,7 @@ void PythonQtShell_QValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3131,7 +3131,7 @@ bool PythonQtShell_QValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3164,7 +3164,7 @@ bool PythonQtShell_QValidator::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3197,7 +3197,7 @@ void PythonQtShell_QValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3219,7 +3219,7 @@ void PythonQtShell_QValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3241,7 +3241,7 @@ QValidator::State PythonQtShell_QValidator::validate(QString& arg__1, int& ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -4127,7 +4127,7 @@ void PythonQtShell_QWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4149,7 +4149,7 @@ void PythonQtShell_QWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4171,7 +4171,7 @@ void PythonQtShell_QWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4193,7 +4193,7 @@ void PythonQtShell_QWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4215,7 +4215,7 @@ void PythonQtShell_QWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4237,7 +4237,7 @@ void PythonQtShell_QWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4259,7 +4259,7 @@ int PythonQtShell_QWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4292,7 +4292,7 @@ void PythonQtShell_QWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4314,7 +4314,7 @@ void PythonQtShell_QWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4336,7 +4336,7 @@ void PythonQtShell_QWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4358,7 +4358,7 @@ void PythonQtShell_QWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4380,7 +4380,7 @@ void PythonQtShell_QWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4402,7 +4402,7 @@ bool PythonQtShell_QWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4435,7 +4435,7 @@ bool PythonQtShell_QWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4468,7 +4468,7 @@ void PythonQtShell_QWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4490,7 +4490,7 @@ bool PythonQtShell_QWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -4523,7 +4523,7 @@ void PythonQtShell_QWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4545,7 +4545,7 @@ bool PythonQtShell_QWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4578,7 +4578,7 @@ int PythonQtShell_QWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -4611,7 +4611,7 @@ void PythonQtShell_QWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4633,7 +4633,7 @@ void PythonQtShell_QWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4655,7 +4655,7 @@ void PythonQtShell_QWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4677,7 +4677,7 @@ QVariant PythonQtShell_QWidget::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4710,7 +4710,7 @@ void PythonQtShell_QWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4732,7 +4732,7 @@ void PythonQtShell_QWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4754,7 +4754,7 @@ void PythonQtShell_QWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4776,7 +4776,7 @@ int PythonQtShell_QWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4809,7 +4809,7 @@ QSize PythonQtShell_QWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4842,7 +4842,7 @@ void PythonQtShell_QWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4864,7 +4864,7 @@ void PythonQtShell_QWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4886,7 +4886,7 @@ void PythonQtShell_QWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4908,7 +4908,7 @@ void PythonQtShell_QWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4930,7 +4930,7 @@ void PythonQtShell_QWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4952,7 +4952,7 @@ bool PythonQtShell_QWidget::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4985,7 +4985,7 @@ QPaintEngine* PythonQtShell_QWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5018,7 +5018,7 @@ void PythonQtShell_QWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5040,7 +5040,7 @@ QPaintDevice* PythonQtShell_QWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5073,7 +5073,7 @@ void PythonQtShell_QWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5095,7 +5095,7 @@ void PythonQtShell_QWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5117,7 +5117,7 @@ QPainter* PythonQtShell_QWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5150,7 +5150,7 @@ void PythonQtShell_QWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5172,7 +5172,7 @@ QSize PythonQtShell_QWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5205,7 +5205,7 @@ void PythonQtShell_QWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5227,7 +5227,7 @@ void PythonQtShell_QWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5249,7 +5249,7 @@ void PythonQtShell_QWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6536,7 +6536,7 @@ void PythonQtShell_QWidgetAction::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6558,7 +6558,7 @@ QWidget* PythonQtShell_QWidgetAction::createWidget(QWidget* parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -6591,7 +6591,7 @@ void PythonQtShell_QWidgetAction::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6613,7 +6613,7 @@ void PythonQtShell_QWidgetAction::deleteWidget(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteWidget"); + static PyObject* name = PyUnicode_FromString("deleteWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -6635,7 +6635,7 @@ bool PythonQtShell_QWidgetAction::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6668,7 +6668,7 @@ bool PythonQtShell_QWidgetAction::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6701,7 +6701,7 @@ void PythonQtShell_QWidgetAction::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6781,7 +6781,7 @@ QSizePolicy::ControlTypes PythonQtShell_QWidgetItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -6814,7 +6814,7 @@ Qt::Orientations PythonQtShell_QWidgetItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -6847,7 +6847,7 @@ QRect PythonQtShell_QWidgetItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -6880,7 +6880,7 @@ bool PythonQtShell_QWidgetItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6913,7 +6913,7 @@ int PythonQtShell_QWidgetItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6946,7 +6946,7 @@ void PythonQtShell_QWidgetItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6968,7 +6968,7 @@ bool PythonQtShell_QWidgetItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7001,7 +7001,7 @@ QLayout* PythonQtShell_QWidgetItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -7034,7 +7034,7 @@ QSize PythonQtShell_QWidgetItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7067,7 +7067,7 @@ int PythonQtShell_QWidgetItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7100,7 +7100,7 @@ QSize PythonQtShell_QWidgetItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7133,7 +7133,7 @@ void PythonQtShell_QWidgetItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -7155,7 +7155,7 @@ QSize PythonQtShell_QWidgetItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7188,7 +7188,7 @@ QSpacerItem* PythonQtShell_QWidgetItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -7221,7 +7221,7 @@ QWidget* PythonQtShell_QWidgetItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -7264,7 +7264,7 @@ void PythonQtShell_QWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7286,7 +7286,7 @@ void PythonQtShell_QWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7308,7 +7308,7 @@ bool PythonQtShell_QWindow::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7341,7 +7341,7 @@ bool PythonQtShell_QWindow::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7374,7 +7374,7 @@ void PythonQtShell_QWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -7396,7 +7396,7 @@ void PythonQtShell_QWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7418,7 +7418,7 @@ QObject* PythonQtShell_QWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -7451,7 +7451,7 @@ void PythonQtShell_QWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7473,7 +7473,7 @@ QSurfaceFormat PythonQtShell_QWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -7506,7 +7506,7 @@ void PythonQtShell_QWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7528,7 +7528,7 @@ void PythonQtShell_QWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7550,7 +7550,7 @@ void PythonQtShell_QWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7572,7 +7572,7 @@ void PythonQtShell_QWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7594,7 +7594,7 @@ void PythonQtShell_QWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7616,7 +7616,7 @@ void PythonQtShell_QWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7638,7 +7638,7 @@ void PythonQtShell_QWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7660,7 +7660,7 @@ void PythonQtShell_QWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7682,7 +7682,7 @@ bool PythonQtShell_QWindow::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7715,7 +7715,7 @@ void PythonQtShell_QWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7737,7 +7737,7 @@ void PythonQtShell_QWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7759,7 +7759,7 @@ QSize PythonQtShell_QWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7792,7 +7792,7 @@ QSurface::SurfaceType PythonQtShell_QWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -7825,7 +7825,7 @@ void PythonQtShell_QWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7847,7 +7847,7 @@ void PythonQtShell_QWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7869,7 +7869,7 @@ void PythonQtShell_QWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -7891,7 +7891,7 @@ void PythonQtShell_QWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8428,7 +8428,7 @@ void PythonQtShell_QWizard::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8450,7 +8450,7 @@ void PythonQtShell_QWizard::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8472,7 +8472,7 @@ void PythonQtShell_QWizard::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8494,7 +8494,7 @@ void PythonQtShell_QWizard::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8516,7 +8516,7 @@ void PythonQtShell_QWizard::cleanupPage(int id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8538,7 +8538,7 @@ void PythonQtShell_QWizard::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8560,7 +8560,7 @@ void PythonQtShell_QWizard::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8582,7 +8582,7 @@ void PythonQtShell_QWizard::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8604,7 +8604,7 @@ int PythonQtShell_QWizard::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8637,7 +8637,7 @@ void PythonQtShell_QWizard::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8659,7 +8659,7 @@ void PythonQtShell_QWizard::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8681,7 +8681,7 @@ void PythonQtShell_QWizard::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8703,7 +8703,7 @@ void PythonQtShell_QWizard::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8725,7 +8725,7 @@ void PythonQtShell_QWizard::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8747,7 +8747,7 @@ void PythonQtShell_QWizard::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8769,7 +8769,7 @@ bool PythonQtShell_QWizard::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8802,7 +8802,7 @@ bool PythonQtShell_QWizard::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8835,7 +8835,7 @@ int PythonQtShell_QWizard::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8868,7 +8868,7 @@ void PythonQtShell_QWizard::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8890,7 +8890,7 @@ bool PythonQtShell_QWizard::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8923,7 +8923,7 @@ void PythonQtShell_QWizard::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8945,7 +8945,7 @@ bool PythonQtShell_QWizard::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8978,7 +8978,7 @@ int PythonQtShell_QWizard::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9011,7 +9011,7 @@ void PythonQtShell_QWizard::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9033,7 +9033,7 @@ void PythonQtShell_QWizard::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9055,7 +9055,7 @@ void PythonQtShell_QWizard::initializePage(int id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9077,7 +9077,7 @@ void PythonQtShell_QWizard::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9099,7 +9099,7 @@ QVariant PythonQtShell_QWizard::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9132,7 +9132,7 @@ void PythonQtShell_QWizard::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9154,7 +9154,7 @@ void PythonQtShell_QWizard::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9176,7 +9176,7 @@ void PythonQtShell_QWizard::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9198,7 +9198,7 @@ int PythonQtShell_QWizard::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9231,7 +9231,7 @@ void PythonQtShell_QWizard::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9253,7 +9253,7 @@ void PythonQtShell_QWizard::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9275,7 +9275,7 @@ void PythonQtShell_QWizard::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9297,7 +9297,7 @@ void PythonQtShell_QWizard::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9319,7 +9319,7 @@ void PythonQtShell_QWizard::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9341,7 +9341,7 @@ bool PythonQtShell_QWizard::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9374,7 +9374,7 @@ int PythonQtShell_QWizard::nextId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9407,7 +9407,7 @@ void PythonQtShell_QWizard::open() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9429,7 +9429,7 @@ QPaintEngine* PythonQtShell_QWizard::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9462,7 +9462,7 @@ void PythonQtShell_QWizard::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9484,7 +9484,7 @@ QPaintDevice* PythonQtShell_QWizard::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9517,7 +9517,7 @@ void PythonQtShell_QWizard::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9539,7 +9539,7 @@ void PythonQtShell_QWizard::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9561,7 +9561,7 @@ void PythonQtShell_QWizard::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9583,7 +9583,7 @@ QPainter* PythonQtShell_QWizard::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9616,7 +9616,7 @@ void PythonQtShell_QWizard::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9638,7 +9638,7 @@ QSize PythonQtShell_QWizard::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9671,7 +9671,7 @@ void PythonQtShell_QWizard::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9693,7 +9693,7 @@ void PythonQtShell_QWizard::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9715,7 +9715,7 @@ bool PythonQtShell_QWizard::validateCurrentPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validateCurrentPage"); + static PyObject* name = PyUnicode_FromString("validateCurrentPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9748,7 +9748,7 @@ void PythonQtShell_QWizard::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9973,7 +9973,7 @@ void PythonQtShell_QWizardPage::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9995,7 +9995,7 @@ void PythonQtShell_QWizardPage::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10017,7 +10017,7 @@ void PythonQtShell_QWizardPage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10039,7 +10039,7 @@ void PythonQtShell_QWizardPage::cleanupPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cleanupPage"); + static PyObject* name = PyUnicode_FromString("cleanupPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10061,7 +10061,7 @@ void PythonQtShell_QWizardPage::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10083,7 +10083,7 @@ void PythonQtShell_QWizardPage::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10105,7 +10105,7 @@ void PythonQtShell_QWizardPage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10127,7 +10127,7 @@ int PythonQtShell_QWizardPage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10160,7 +10160,7 @@ void PythonQtShell_QWizardPage::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10182,7 +10182,7 @@ void PythonQtShell_QWizardPage::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10204,7 +10204,7 @@ void PythonQtShell_QWizardPage::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10226,7 +10226,7 @@ void PythonQtShell_QWizardPage::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10248,7 +10248,7 @@ void PythonQtShell_QWizardPage::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10270,7 +10270,7 @@ bool PythonQtShell_QWizardPage::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10303,7 +10303,7 @@ bool PythonQtShell_QWizardPage::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10336,7 +10336,7 @@ void PythonQtShell_QWizardPage::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10358,7 +10358,7 @@ bool PythonQtShell_QWizardPage::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10391,7 +10391,7 @@ void PythonQtShell_QWizardPage::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10413,7 +10413,7 @@ bool PythonQtShell_QWizardPage::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10446,7 +10446,7 @@ int PythonQtShell_QWizardPage::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10479,7 +10479,7 @@ void PythonQtShell_QWizardPage::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10501,7 +10501,7 @@ void PythonQtShell_QWizardPage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10523,7 +10523,7 @@ void PythonQtShell_QWizardPage::initializePage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializePage"); + static PyObject* name = PyUnicode_FromString("initializePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10545,7 +10545,7 @@ void PythonQtShell_QWizardPage::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10567,7 +10567,7 @@ QVariant PythonQtShell_QWizardPage::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10600,7 +10600,7 @@ bool PythonQtShell_QWizardPage::isComplete() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isComplete"); + static PyObject* name = PyUnicode_FromString("isComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10633,7 +10633,7 @@ void PythonQtShell_QWizardPage::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10655,7 +10655,7 @@ void PythonQtShell_QWizardPage::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10677,7 +10677,7 @@ void PythonQtShell_QWizardPage::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10699,7 +10699,7 @@ int PythonQtShell_QWizardPage::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10732,7 +10732,7 @@ QSize PythonQtShell_QWizardPage::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10765,7 +10765,7 @@ void PythonQtShell_QWizardPage::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10787,7 +10787,7 @@ void PythonQtShell_QWizardPage::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10809,7 +10809,7 @@ void PythonQtShell_QWizardPage::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10831,7 +10831,7 @@ void PythonQtShell_QWizardPage::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10853,7 +10853,7 @@ void PythonQtShell_QWizardPage::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10875,7 +10875,7 @@ bool PythonQtShell_QWizardPage::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10908,7 +10908,7 @@ int PythonQtShell_QWizardPage::nextId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextId"); + static PyObject* name = PyUnicode_FromString("nextId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10941,7 +10941,7 @@ QPaintEngine* PythonQtShell_QWizardPage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10974,7 +10974,7 @@ void PythonQtShell_QWizardPage::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10996,7 +10996,7 @@ QPaintDevice* PythonQtShell_QWizardPage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11029,7 +11029,7 @@ void PythonQtShell_QWizardPage::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11051,7 +11051,7 @@ void PythonQtShell_QWizardPage::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11073,7 +11073,7 @@ QPainter* PythonQtShell_QWizardPage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11106,7 +11106,7 @@ void PythonQtShell_QWizardPage::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11128,7 +11128,7 @@ QSize PythonQtShell_QWizardPage::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11161,7 +11161,7 @@ void PythonQtShell_QWizardPage::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11183,7 +11183,7 @@ void PythonQtShell_QWizardPage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11205,7 +11205,7 @@ bool PythonQtShell_QWizardPage::validatePage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validatePage"); + static PyObject* name = PyUnicode_FromString("validatePage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11238,7 +11238,7 @@ void PythonQtShell_QWizardPage::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp index 911c653e4..e76fdc565 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui2.cpp @@ -225,7 +225,7 @@ void PythonQtShell_QFontDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -247,7 +247,7 @@ void PythonQtShell_QFontDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -269,7 +269,7 @@ void PythonQtShell_QFontDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -291,7 +291,7 @@ void PythonQtShell_QFontDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -313,7 +313,7 @@ void PythonQtShell_QFontDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -335,7 +335,7 @@ void PythonQtShell_QFontDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -357,7 +357,7 @@ void PythonQtShell_QFontDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -379,7 +379,7 @@ int PythonQtShell_QFontDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -412,7 +412,7 @@ void PythonQtShell_QFontDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -434,7 +434,7 @@ void PythonQtShell_QFontDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -456,7 +456,7 @@ void PythonQtShell_QFontDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -478,7 +478,7 @@ void PythonQtShell_QFontDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -500,7 +500,7 @@ void PythonQtShell_QFontDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -522,7 +522,7 @@ void PythonQtShell_QFontDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -544,7 +544,7 @@ bool PythonQtShell_QFontDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -577,7 +577,7 @@ bool PythonQtShell_QFontDialog::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -610,7 +610,7 @@ int PythonQtShell_QFontDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -643,7 +643,7 @@ void PythonQtShell_QFontDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -665,7 +665,7 @@ bool PythonQtShell_QFontDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -698,7 +698,7 @@ void PythonQtShell_QFontDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -720,7 +720,7 @@ bool PythonQtShell_QFontDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -753,7 +753,7 @@ int PythonQtShell_QFontDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -786,7 +786,7 @@ void PythonQtShell_QFontDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -808,7 +808,7 @@ void PythonQtShell_QFontDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -830,7 +830,7 @@ void PythonQtShell_QFontDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -852,7 +852,7 @@ QVariant PythonQtShell_QFontDialog::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -885,7 +885,7 @@ void PythonQtShell_QFontDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -907,7 +907,7 @@ void PythonQtShell_QFontDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -929,7 +929,7 @@ void PythonQtShell_QFontDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -951,7 +951,7 @@ int PythonQtShell_QFontDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -984,7 +984,7 @@ void PythonQtShell_QFontDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1006,7 +1006,7 @@ void PythonQtShell_QFontDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1028,7 +1028,7 @@ void PythonQtShell_QFontDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1050,7 +1050,7 @@ void PythonQtShell_QFontDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1072,7 +1072,7 @@ void PythonQtShell_QFontDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1094,7 +1094,7 @@ bool PythonQtShell_QFontDialog::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1127,7 +1127,7 @@ QPaintEngine* PythonQtShell_QFontDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1160,7 +1160,7 @@ void PythonQtShell_QFontDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1182,7 +1182,7 @@ QPaintDevice* PythonQtShell_QFontDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1215,7 +1215,7 @@ void PythonQtShell_QFontDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1237,7 +1237,7 @@ void PythonQtShell_QFontDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1259,7 +1259,7 @@ void PythonQtShell_QFontDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1281,7 +1281,7 @@ QPainter* PythonQtShell_QFontDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1314,7 +1314,7 @@ void PythonQtShell_QFontDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1336,7 +1336,7 @@ void PythonQtShell_QFontDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1358,7 +1358,7 @@ void PythonQtShell_QFontDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1380,7 +1380,7 @@ void PythonQtShell_QFontDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1879,7 +1879,7 @@ void PythonQtShell_QFormLayout::addItem(QLayoutItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -1901,7 +1901,7 @@ void PythonQtShell_QFormLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1923,7 +1923,7 @@ QSizePolicy::ControlTypes PythonQtShell_QFormLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -1956,7 +1956,7 @@ int PythonQtShell_QFormLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1989,7 +1989,7 @@ void PythonQtShell_QFormLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2011,7 +2011,7 @@ bool PythonQtShell_QFormLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2044,7 +2044,7 @@ bool PythonQtShell_QFormLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2077,7 +2077,7 @@ Qt::Orientations PythonQtShell_QFormLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -2110,7 +2110,7 @@ QRect PythonQtShell_QFormLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2143,7 +2143,7 @@ bool PythonQtShell_QFormLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2176,7 +2176,7 @@ int PythonQtShell_QFormLayout::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2209,7 +2209,7 @@ int PythonQtShell_QFormLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -2242,7 +2242,7 @@ void PythonQtShell_QFormLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2264,7 +2264,7 @@ bool PythonQtShell_QFormLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2297,7 +2297,7 @@ QLayoutItem* PythonQtShell_QFormLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2330,7 +2330,7 @@ QLayout* PythonQtShell_QFormLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -2363,7 +2363,7 @@ QSize PythonQtShell_QFormLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2396,7 +2396,7 @@ QSize PythonQtShell_QFormLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2429,7 +2429,7 @@ void PythonQtShell_QFormLayout::setGeometry(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2451,7 +2451,7 @@ QSize PythonQtShell_QFormLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2484,7 +2484,7 @@ QLayoutItem* PythonQtShell_QFormLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -2517,7 +2517,7 @@ void PythonQtShell_QFormLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2757,7 +2757,7 @@ void PythonQtShell_QFrame::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2779,7 +2779,7 @@ void PythonQtShell_QFrame::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2801,7 +2801,7 @@ void PythonQtShell_QFrame::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2823,7 +2823,7 @@ void PythonQtShell_QFrame::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2845,7 +2845,7 @@ void PythonQtShell_QFrame::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2867,7 +2867,7 @@ void PythonQtShell_QFrame::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2889,7 +2889,7 @@ int PythonQtShell_QFrame::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2922,7 +2922,7 @@ void PythonQtShell_QFrame::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2944,7 +2944,7 @@ void PythonQtShell_QFrame::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2966,7 +2966,7 @@ void PythonQtShell_QFrame::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2988,7 +2988,7 @@ void PythonQtShell_QFrame::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3010,7 +3010,7 @@ void PythonQtShell_QFrame::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3032,7 +3032,7 @@ bool PythonQtShell_QFrame::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3065,7 +3065,7 @@ bool PythonQtShell_QFrame::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3098,7 +3098,7 @@ void PythonQtShell_QFrame::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3120,7 +3120,7 @@ bool PythonQtShell_QFrame::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3153,7 +3153,7 @@ void PythonQtShell_QFrame::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3175,7 +3175,7 @@ bool PythonQtShell_QFrame::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3208,7 +3208,7 @@ int PythonQtShell_QFrame::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3241,7 +3241,7 @@ void PythonQtShell_QFrame::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3263,7 +3263,7 @@ void PythonQtShell_QFrame::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3285,7 +3285,7 @@ void PythonQtShell_QFrame::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3307,7 +3307,7 @@ QVariant PythonQtShell_QFrame::inputMethodQuery(Qt::InputMethodQuery arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3340,7 +3340,7 @@ void PythonQtShell_QFrame::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3362,7 +3362,7 @@ void PythonQtShell_QFrame::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3384,7 +3384,7 @@ void PythonQtShell_QFrame::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3406,7 +3406,7 @@ int PythonQtShell_QFrame::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3439,7 +3439,7 @@ QSize PythonQtShell_QFrame::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3472,7 +3472,7 @@ void PythonQtShell_QFrame::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3494,7 +3494,7 @@ void PythonQtShell_QFrame::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3516,7 +3516,7 @@ void PythonQtShell_QFrame::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3538,7 +3538,7 @@ void PythonQtShell_QFrame::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3560,7 +3560,7 @@ void PythonQtShell_QFrame::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3582,7 +3582,7 @@ bool PythonQtShell_QFrame::nativeEvent(const QByteArray& eventType0, void* me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3615,7 +3615,7 @@ QPaintEngine* PythonQtShell_QFrame::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3648,7 +3648,7 @@ void PythonQtShell_QFrame::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3670,7 +3670,7 @@ QPaintDevice* PythonQtShell_QFrame::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3703,7 +3703,7 @@ void PythonQtShell_QFrame::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3725,7 +3725,7 @@ void PythonQtShell_QFrame::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3747,7 +3747,7 @@ QPainter* PythonQtShell_QFrame::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3780,7 +3780,7 @@ void PythonQtShell_QFrame::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3802,7 +3802,7 @@ QSize PythonQtShell_QFrame::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3835,7 +3835,7 @@ void PythonQtShell_QFrame::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3857,7 +3857,7 @@ void PythonQtShell_QFrame::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3879,7 +3879,7 @@ void PythonQtShell_QFrame::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4004,7 +4004,7 @@ void PythonQtShell_QGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4026,7 +4026,7 @@ void PythonQtShell_QGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4048,7 +4048,7 @@ bool PythonQtShell_QGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4081,7 +4081,7 @@ bool PythonQtShell_QGesture::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4114,7 +4114,7 @@ void PythonQtShell_QGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4294,7 +4294,7 @@ QGesture* PythonQtShell_QGestureRecognizer::create(QObject* target0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGesture*" , "QObject*"}; @@ -4327,7 +4327,7 @@ QGestureRecognizer::Result PythonQtShell_QGestureRecognizer::recognize(QGesture if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("recognize"); + static PyObject* name = PyUnicode_FromString("recognize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGestureRecognizer::Result" , "QGesture*" , "QObject*" , "QEvent*"}; @@ -4360,7 +4360,7 @@ void PythonQtShell_QGestureRecognizer::reset(QGesture* state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGesture*"}; @@ -4640,7 +4640,7 @@ int PythonQtShell_QGraphicsAnchorLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4673,7 +4673,7 @@ void PythonQtShell_QGraphicsAnchorLayout::getContentsMargins(qreal* left0, qrea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -4695,7 +4695,7 @@ void PythonQtShell_QGraphicsAnchorLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4717,7 +4717,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsAnchorLayout::itemAt(int index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -4750,7 +4750,7 @@ void PythonQtShell_QGraphicsAnchorLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4772,7 +4772,7 @@ void PythonQtShell_QGraphicsAnchorLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -4794,7 +4794,7 @@ QSizeF PythonQtShell_QGraphicsAnchorLayout::sizeHint(Qt::SizeHint which0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -4827,7 +4827,7 @@ void PythonQtShell_QGraphicsAnchorLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4849,7 +4849,7 @@ void PythonQtShell_QGraphicsAnchorLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4936,7 +4936,7 @@ QRectF PythonQtShell_QGraphicsBlurEffect::boundingRectFor(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -4969,7 +4969,7 @@ void PythonQtShell_QGraphicsBlurEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4991,7 +4991,7 @@ void PythonQtShell_QGraphicsBlurEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5013,7 +5013,7 @@ void PythonQtShell_QGraphicsBlurEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5035,7 +5035,7 @@ bool PythonQtShell_QGraphicsBlurEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5068,7 +5068,7 @@ bool PythonQtShell_QGraphicsBlurEffect::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5101,7 +5101,7 @@ void PythonQtShell_QGraphicsBlurEffect::sourceChanged(QGraphicsEffect::ChangeFla if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5123,7 +5123,7 @@ void PythonQtShell_QGraphicsBlurEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5178,7 +5178,7 @@ QRectF PythonQtShell_QGraphicsColorizeEffect::boundingRectFor(const QRectF& so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5211,7 +5211,7 @@ void PythonQtShell_QGraphicsColorizeEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5233,7 +5233,7 @@ void PythonQtShell_QGraphicsColorizeEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5255,7 +5255,7 @@ void PythonQtShell_QGraphicsColorizeEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5277,7 +5277,7 @@ bool PythonQtShell_QGraphicsColorizeEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5310,7 +5310,7 @@ bool PythonQtShell_QGraphicsColorizeEffect::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5343,7 +5343,7 @@ void PythonQtShell_QGraphicsColorizeEffect::sourceChanged(QGraphicsEffect::Chang if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5365,7 +5365,7 @@ void PythonQtShell_QGraphicsColorizeEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5420,7 +5420,7 @@ QRectF PythonQtShell_QGraphicsDropShadowEffect::boundingRectFor(const QRectF& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5453,7 +5453,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5475,7 +5475,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5497,7 +5497,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5519,7 +5519,7 @@ bool PythonQtShell_QGraphicsDropShadowEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5552,7 +5552,7 @@ bool PythonQtShell_QGraphicsDropShadowEffect::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5585,7 +5585,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::sourceChanged(QGraphicsEffect::Cha if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5607,7 +5607,7 @@ void PythonQtShell_QGraphicsDropShadowEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5677,7 +5677,7 @@ QRectF PythonQtShell_QGraphicsEffect::boundingRectFor(const QRectF& sourceRect if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -5710,7 +5710,7 @@ void PythonQtShell_QGraphicsEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5732,7 +5732,7 @@ void PythonQtShell_QGraphicsEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5754,7 +5754,7 @@ void PythonQtShell_QGraphicsEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5776,7 +5776,7 @@ bool PythonQtShell_QGraphicsEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5809,7 +5809,7 @@ bool PythonQtShell_QGraphicsEffect::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5842,7 +5842,7 @@ void PythonQtShell_QGraphicsEffect::sourceChanged(QGraphicsEffect::ChangeFlags if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -5864,7 +5864,7 @@ void PythonQtShell_QGraphicsEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5959,7 +5959,7 @@ QRectF PythonQtShell_QGraphicsEllipseItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5992,7 +5992,7 @@ bool PythonQtShell_QGraphicsEllipseItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -6025,7 +6025,7 @@ QVariant PythonQtShell_QGraphicsEllipseItem::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -6058,7 +6058,7 @@ bool PythonQtShell_QGraphicsEllipseItem::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6091,7 +6091,7 @@ QPainterPath PythonQtShell_QGraphicsEllipseItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6124,7 +6124,7 @@ void PythonQtShell_QGraphicsEllipseItem::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6146,7 +6146,7 @@ void PythonQtShell_QGraphicsEllipseItem::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6168,7 +6168,7 @@ QPainterPath PythonQtShell_QGraphicsEllipseItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6201,7 +6201,7 @@ bool PythonQtShell_QGraphicsEllipseItem::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6234,7 +6234,7 @@ int PythonQtShell_QGraphicsEllipseItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6360,7 +6360,7 @@ int PythonQtShell_QGraphicsGridLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6393,7 +6393,7 @@ void PythonQtShell_QGraphicsGridLayout::getContentsMargins(qreal* left0, qreal* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -6415,7 +6415,7 @@ void PythonQtShell_QGraphicsGridLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6437,7 +6437,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsGridLayout::itemAt(int index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -6470,7 +6470,7 @@ void PythonQtShell_QGraphicsGridLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6492,7 +6492,7 @@ void PythonQtShell_QGraphicsGridLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -6514,7 +6514,7 @@ QSizeF PythonQtShell_QGraphicsGridLayout::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -6547,7 +6547,7 @@ void PythonQtShell_QGraphicsGridLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6569,7 +6569,7 @@ void PythonQtShell_QGraphicsGridLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6806,7 +6806,7 @@ void PythonQtShell_QGraphicsItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6828,7 +6828,7 @@ QRectF PythonQtShell_QGraphicsItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -6861,7 +6861,7 @@ bool PythonQtShell_QGraphicsItem::collidesWithItem(const QGraphicsItem* other0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -6894,7 +6894,7 @@ bool PythonQtShell_QGraphicsItem::collidesWithPath(const QPainterPath& path0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -6927,7 +6927,7 @@ bool PythonQtShell_QGraphicsItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -6960,7 +6960,7 @@ void PythonQtShell_QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -6982,7 +6982,7 @@ void PythonQtShell_QGraphicsItem::dragEnterEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7004,7 +7004,7 @@ void PythonQtShell_QGraphicsItem::dragLeaveEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7026,7 +7026,7 @@ void PythonQtShell_QGraphicsItem::dragMoveEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7048,7 +7048,7 @@ void PythonQtShell_QGraphicsItem::dropEvent(QGraphicsSceneDragDropEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -7070,7 +7070,7 @@ QVariant PythonQtShell_QGraphicsItem::extension(const QVariant& variant0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -7103,7 +7103,7 @@ void PythonQtShell_QGraphicsItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7125,7 +7125,7 @@ void PythonQtShell_QGraphicsItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7147,7 +7147,7 @@ void PythonQtShell_QGraphicsItem::hoverEnterEvent(QGraphicsSceneHoverEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -7169,7 +7169,7 @@ void PythonQtShell_QGraphicsItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -7191,7 +7191,7 @@ void PythonQtShell_QGraphicsItem::hoverMoveEvent(QGraphicsSceneHoverEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -7213,7 +7213,7 @@ void PythonQtShell_QGraphicsItem::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7235,7 +7235,7 @@ QVariant PythonQtShell_QGraphicsItem::inputMethodQuery(Qt::InputMethodQuery qu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7268,7 +7268,7 @@ bool PythonQtShell_QGraphicsItem::isObscuredBy(const QGraphicsItem* item0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -7301,7 +7301,7 @@ QVariant PythonQtShell_QGraphicsItem::itemChange(QGraphicsItem::GraphicsItemCha if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -7337,7 +7337,7 @@ void PythonQtShell_QGraphicsItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7359,7 +7359,7 @@ void PythonQtShell_QGraphicsItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7381,7 +7381,7 @@ void PythonQtShell_QGraphicsItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7403,7 +7403,7 @@ void PythonQtShell_QGraphicsItem::mouseMoveEvent(QGraphicsSceneMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7425,7 +7425,7 @@ void PythonQtShell_QGraphicsItem::mousePressEvent(QGraphicsSceneMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7447,7 +7447,7 @@ void PythonQtShell_QGraphicsItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -7469,7 +7469,7 @@ QPainterPath PythonQtShell_QGraphicsItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -7502,7 +7502,7 @@ void PythonQtShell_QGraphicsItem::paint(QPainter* painter0, const QStyleOptionG if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -7524,7 +7524,7 @@ bool PythonQtShell_QGraphicsItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7557,7 +7557,7 @@ bool PythonQtShell_QGraphicsItem::sceneEventFilter(QGraphicsItem* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -7590,7 +7590,7 @@ void PythonQtShell_QGraphicsItem::setExtension(QGraphicsItem::Extension extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -7612,7 +7612,7 @@ QPainterPath PythonQtShell_QGraphicsItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -7645,7 +7645,7 @@ bool PythonQtShell_QGraphicsItem::supportsExtension(QGraphicsItem::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -7678,7 +7678,7 @@ int PythonQtShell_QGraphicsItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7711,7 +7711,7 @@ void PythonQtShell_QGraphicsItem::wheelEvent(QGraphicsSceneWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -8785,7 +8785,7 @@ void PythonQtShell_QGraphicsItemAnimation::afterAnimationStep(qreal step0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("afterAnimationStep"); + static PyObject* name = PyUnicode_FromString("afterAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8807,7 +8807,7 @@ void PythonQtShell_QGraphicsItemAnimation::beforeAnimationStep(qreal step0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beforeAnimationStep"); + static PyObject* name = PyUnicode_FromString("beforeAnimationStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8829,7 +8829,7 @@ void PythonQtShell_QGraphicsItemAnimation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8851,7 +8851,7 @@ void PythonQtShell_QGraphicsItemAnimation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8873,7 +8873,7 @@ bool PythonQtShell_QGraphicsItemAnimation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8906,7 +8906,7 @@ bool PythonQtShell_QGraphicsItemAnimation::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8939,7 +8939,7 @@ void PythonQtShell_QGraphicsItemAnimation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9114,7 +9114,7 @@ void PythonQtShell_QGraphicsItemGroup::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9136,7 +9136,7 @@ QRectF PythonQtShell_QGraphicsItemGroup::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -9169,7 +9169,7 @@ bool PythonQtShell_QGraphicsItemGroup::collidesWithItem(const QGraphicsItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -9202,7 +9202,7 @@ bool PythonQtShell_QGraphicsItemGroup::collidesWithPath(const QPainterPath& pa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -9235,7 +9235,7 @@ bool PythonQtShell_QGraphicsItemGroup::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -9268,7 +9268,7 @@ void PythonQtShell_QGraphicsItemGroup::contextMenuEvent(QGraphicsSceneContextMen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -9290,7 +9290,7 @@ void PythonQtShell_QGraphicsItemGroup::dragEnterEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9312,7 +9312,7 @@ void PythonQtShell_QGraphicsItemGroup::dragLeaveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9334,7 +9334,7 @@ void PythonQtShell_QGraphicsItemGroup::dragMoveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9356,7 +9356,7 @@ void PythonQtShell_QGraphicsItemGroup::dropEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -9378,7 +9378,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -9411,7 +9411,7 @@ void PythonQtShell_QGraphicsItemGroup::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9433,7 +9433,7 @@ void PythonQtShell_QGraphicsItemGroup::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9455,7 +9455,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9477,7 +9477,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9499,7 +9499,7 @@ void PythonQtShell_QGraphicsItemGroup::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9521,7 +9521,7 @@ void PythonQtShell_QGraphicsItemGroup::inputMethodEvent(QInputMethodEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9543,7 +9543,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::inputMethodQuery(Qt::InputMethodQuer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9576,7 +9576,7 @@ bool PythonQtShell_QGraphicsItemGroup::isObscuredBy(const QGraphicsItem* item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -9609,7 +9609,7 @@ QVariant PythonQtShell_QGraphicsItemGroup::itemChange(QGraphicsItem::GraphicsIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9645,7 +9645,7 @@ void PythonQtShell_QGraphicsItemGroup::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9667,7 +9667,7 @@ void PythonQtShell_QGraphicsItemGroup::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9689,7 +9689,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseDoubleClickEvent(QGraphicsSceneMouse if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9711,7 +9711,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9733,7 +9733,7 @@ void PythonQtShell_QGraphicsItemGroup::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9755,7 +9755,7 @@ void PythonQtShell_QGraphicsItemGroup::mouseReleaseEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -9777,7 +9777,7 @@ QPainterPath PythonQtShell_QGraphicsItemGroup::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9810,7 +9810,7 @@ void PythonQtShell_QGraphicsItemGroup::paint(QPainter* painter0, const QStyleOp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9832,7 +9832,7 @@ bool PythonQtShell_QGraphicsItemGroup::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9865,7 +9865,7 @@ bool PythonQtShell_QGraphicsItemGroup::sceneEventFilter(QGraphicsItem* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -9898,7 +9898,7 @@ void PythonQtShell_QGraphicsItemGroup::setExtension(QGraphicsItem::Extension ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -9920,7 +9920,7 @@ QPainterPath PythonQtShell_QGraphicsItemGroup::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9953,7 +9953,7 @@ bool PythonQtShell_QGraphicsItemGroup::supportsExtension(QGraphicsItem::Extensi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -9986,7 +9986,7 @@ int PythonQtShell_QGraphicsItemGroup::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10019,7 +10019,7 @@ void PythonQtShell_QGraphicsItemGroup::wheelEvent(QGraphicsSceneWheelEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -10061,7 +10061,7 @@ int PythonQtShell_QGraphicsLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10094,7 +10094,7 @@ void PythonQtShell_QGraphicsLayout::getContentsMargins(qreal* left0, qreal* to if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10116,7 +10116,7 @@ void PythonQtShell_QGraphicsLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10138,7 +10138,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsLayout::itemAt(int i0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -10171,7 +10171,7 @@ void PythonQtShell_QGraphicsLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10193,7 +10193,7 @@ void PythonQtShell_QGraphicsLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -10215,7 +10215,7 @@ QSizeF PythonQtShell_QGraphicsLayout::sizeHint(Qt::SizeHint which0, const QSiz if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -10248,7 +10248,7 @@ void PythonQtShell_QGraphicsLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10270,7 +10270,7 @@ void PythonQtShell_QGraphicsLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10357,7 +10357,7 @@ void PythonQtShell_QGraphicsLayoutItem::getContentsMargins(qreal* left0, qreal* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -10379,7 +10379,7 @@ void PythonQtShell_QGraphicsLayoutItem::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -10401,7 +10401,7 @@ QSizeF PythonQtShell_QGraphicsLayoutItem::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -10434,7 +10434,7 @@ void PythonQtShell_QGraphicsLayoutItem::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10656,7 +10656,7 @@ void PythonQtShell_QGraphicsLineItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10678,7 +10678,7 @@ QRectF PythonQtShell_QGraphicsLineItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -10711,7 +10711,7 @@ bool PythonQtShell_QGraphicsLineItem::collidesWithItem(const QGraphicsItem* ot if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -10744,7 +10744,7 @@ bool PythonQtShell_QGraphicsLineItem::collidesWithPath(const QPainterPath& pat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -10777,7 +10777,7 @@ bool PythonQtShell_QGraphicsLineItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -10810,7 +10810,7 @@ void PythonQtShell_QGraphicsLineItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -10832,7 +10832,7 @@ void PythonQtShell_QGraphicsLineItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10854,7 +10854,7 @@ void PythonQtShell_QGraphicsLineItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10876,7 +10876,7 @@ void PythonQtShell_QGraphicsLineItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10898,7 +10898,7 @@ void PythonQtShell_QGraphicsLineItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -10920,7 +10920,7 @@ QVariant PythonQtShell_QGraphicsLineItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -10953,7 +10953,7 @@ void PythonQtShell_QGraphicsLineItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10975,7 +10975,7 @@ void PythonQtShell_QGraphicsLineItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10997,7 +10997,7 @@ void PythonQtShell_QGraphicsLineItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11019,7 +11019,7 @@ void PythonQtShell_QGraphicsLineItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11041,7 +11041,7 @@ void PythonQtShell_QGraphicsLineItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -11063,7 +11063,7 @@ void PythonQtShell_QGraphicsLineItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11085,7 +11085,7 @@ QVariant PythonQtShell_QGraphicsLineItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11118,7 +11118,7 @@ bool PythonQtShell_QGraphicsLineItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -11151,7 +11151,7 @@ QVariant PythonQtShell_QGraphicsLineItem::itemChange(QGraphicsItem::GraphicsIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -11187,7 +11187,7 @@ void PythonQtShell_QGraphicsLineItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11209,7 +11209,7 @@ void PythonQtShell_QGraphicsLineItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11231,7 +11231,7 @@ void PythonQtShell_QGraphicsLineItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11253,7 +11253,7 @@ void PythonQtShell_QGraphicsLineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11275,7 +11275,7 @@ void PythonQtShell_QGraphicsLineItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11297,7 +11297,7 @@ void PythonQtShell_QGraphicsLineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -11319,7 +11319,7 @@ QPainterPath PythonQtShell_QGraphicsLineItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11352,7 +11352,7 @@ void PythonQtShell_QGraphicsLineItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -11374,7 +11374,7 @@ bool PythonQtShell_QGraphicsLineItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11407,7 +11407,7 @@ bool PythonQtShell_QGraphicsLineItem::sceneEventFilter(QGraphicsItem* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -11440,7 +11440,7 @@ void PythonQtShell_QGraphicsLineItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -11462,7 +11462,7 @@ QPainterPath PythonQtShell_QGraphicsLineItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -11495,7 +11495,7 @@ bool PythonQtShell_QGraphicsLineItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -11528,7 +11528,7 @@ int PythonQtShell_QGraphicsLineItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11561,7 +11561,7 @@ void PythonQtShell_QGraphicsLineItem::wheelEvent(QGraphicsSceneWheelEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -11626,7 +11626,7 @@ int PythonQtShell_QGraphicsLinearLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11659,7 +11659,7 @@ void PythonQtShell_QGraphicsLinearLayout::getContentsMargins(qreal* left0, qrea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -11681,7 +11681,7 @@ void PythonQtShell_QGraphicsLinearLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11703,7 +11703,7 @@ QGraphicsLayoutItem* PythonQtShell_QGraphicsLinearLayout::itemAt(int index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QGraphicsLayoutItem*" , "int"}; @@ -11736,7 +11736,7 @@ void PythonQtShell_QGraphicsLinearLayout::removeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeAt"); + static PyObject* name = PyUnicode_FromString("removeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11758,7 +11758,7 @@ void PythonQtShell_QGraphicsLinearLayout::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -11780,7 +11780,7 @@ QSizeF PythonQtShell_QGraphicsLinearLayout::sizeHint(Qt::SizeHint which0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -11813,7 +11813,7 @@ void PythonQtShell_QGraphicsLinearLayout::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11835,7 +11835,7 @@ void PythonQtShell_QGraphicsLinearLayout::widgetEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widgetEvent"); + static PyObject* name = PyUnicode_FromString("widgetEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11961,7 +11961,7 @@ void PythonQtShell_QGraphicsObject::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -11983,7 +11983,7 @@ QRectF PythonQtShell_QGraphicsObject::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -12016,7 +12016,7 @@ void PythonQtShell_QGraphicsObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12038,7 +12038,7 @@ bool PythonQtShell_QGraphicsObject::collidesWithItem(const QGraphicsItem* othe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -12071,7 +12071,7 @@ bool PythonQtShell_QGraphicsObject::collidesWithPath(const QPainterPath& path0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -12104,7 +12104,7 @@ bool PythonQtShell_QGraphicsObject::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -12137,7 +12137,7 @@ void PythonQtShell_QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -12159,7 +12159,7 @@ void PythonQtShell_QGraphicsObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12181,7 +12181,7 @@ void PythonQtShell_QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12203,7 +12203,7 @@ void PythonQtShell_QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12225,7 +12225,7 @@ void PythonQtShell_QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12247,7 +12247,7 @@ void PythonQtShell_QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -12269,7 +12269,7 @@ bool PythonQtShell_QGraphicsObject::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12302,7 +12302,7 @@ bool PythonQtShell_QGraphicsObject::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12335,7 +12335,7 @@ QVariant PythonQtShell_QGraphicsObject::extension(const QVariant& variant0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -12368,7 +12368,7 @@ void PythonQtShell_QGraphicsObject::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12390,7 +12390,7 @@ void PythonQtShell_QGraphicsObject::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12412,7 +12412,7 @@ void PythonQtShell_QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12434,7 +12434,7 @@ void PythonQtShell_QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12456,7 +12456,7 @@ void PythonQtShell_QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -12478,7 +12478,7 @@ void PythonQtShell_QGraphicsObject::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -12500,7 +12500,7 @@ QVariant PythonQtShell_QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -12533,7 +12533,7 @@ bool PythonQtShell_QGraphicsObject::isObscuredBy(const QGraphicsItem* item0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -12566,7 +12566,7 @@ QVariant PythonQtShell_QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -12602,7 +12602,7 @@ void PythonQtShell_QGraphicsObject::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12624,7 +12624,7 @@ void PythonQtShell_QGraphicsObject::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -12646,7 +12646,7 @@ void PythonQtShell_QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12668,7 +12668,7 @@ void PythonQtShell_QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12690,7 +12690,7 @@ void PythonQtShell_QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12712,7 +12712,7 @@ void PythonQtShell_QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -12734,7 +12734,7 @@ QPainterPath PythonQtShell_QGraphicsObject::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -12767,7 +12767,7 @@ void PythonQtShell_QGraphicsObject::paint(QPainter* painter0, const QStyleOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -12789,7 +12789,7 @@ bool PythonQtShell_QGraphicsObject::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12822,7 +12822,7 @@ bool PythonQtShell_QGraphicsObject::sceneEventFilter(QGraphicsItem* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -12855,7 +12855,7 @@ void PythonQtShell_QGraphicsObject::setExtension(QGraphicsItem::Extension exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -12877,7 +12877,7 @@ QPainterPath PythonQtShell_QGraphicsObject::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -12910,7 +12910,7 @@ bool PythonQtShell_QGraphicsObject::supportsExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -12943,7 +12943,7 @@ void PythonQtShell_QGraphicsObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12965,7 +12965,7 @@ int PythonQtShell_QGraphicsObject::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12998,7 +12998,7 @@ void PythonQtShell_QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -13060,7 +13060,7 @@ QRectF PythonQtShell_QGraphicsOpacityEffect::boundingRectFor(const QRectF& sou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRectFor"); + static PyObject* name = PyUnicode_FromString("boundingRectFor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QRectF&"}; @@ -13093,7 +13093,7 @@ void PythonQtShell_QGraphicsOpacityEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13115,7 +13115,7 @@ void PythonQtShell_QGraphicsOpacityEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13137,7 +13137,7 @@ void PythonQtShell_QGraphicsOpacityEffect::draw(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13159,7 +13159,7 @@ bool PythonQtShell_QGraphicsOpacityEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13192,7 +13192,7 @@ bool PythonQtShell_QGraphicsOpacityEffect::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13225,7 +13225,7 @@ void PythonQtShell_QGraphicsOpacityEffect::sourceChanged(QGraphicsEffect::Change if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceChanged"); + static PyObject* name = PyUnicode_FromString("sourceChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsEffect::ChangeFlags"}; @@ -13247,7 +13247,7 @@ void PythonQtShell_QGraphicsOpacityEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13302,7 +13302,7 @@ QRectF PythonQtShell_QGraphicsPathItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -13335,7 +13335,7 @@ bool PythonQtShell_QGraphicsPathItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -13368,7 +13368,7 @@ QVariant PythonQtShell_QGraphicsPathItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -13401,7 +13401,7 @@ bool PythonQtShell_QGraphicsPathItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -13434,7 +13434,7 @@ QPainterPath PythonQtShell_QGraphicsPathItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13467,7 +13467,7 @@ void PythonQtShell_QGraphicsPathItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -13489,7 +13489,7 @@ void PythonQtShell_QGraphicsPathItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -13511,7 +13511,7 @@ QPainterPath PythonQtShell_QGraphicsPathItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -13544,7 +13544,7 @@ bool PythonQtShell_QGraphicsPathItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -13577,7 +13577,7 @@ int PythonQtShell_QGraphicsPathItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp index 18281a590..aa231f173 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui3.cpp @@ -90,7 +90,7 @@ void PythonQtShell_QGraphicsPixmapItem::advance(int phase0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("advance"); + static PyObject* name = PyUnicode_FromString("advance"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -112,7 +112,7 @@ QRectF PythonQtShell_QGraphicsPixmapItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -145,7 +145,7 @@ bool PythonQtShell_QGraphicsPixmapItem::collidesWithItem(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithItem"); + static PyObject* name = PyUnicode_FromString("collidesWithItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*" , "Qt::ItemSelectionMode"}; @@ -178,7 +178,7 @@ bool PythonQtShell_QGraphicsPixmapItem::collidesWithPath(const QPainterPath& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("collidesWithPath"); + static PyObject* name = PyUnicode_FromString("collidesWithPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPainterPath&" , "Qt::ItemSelectionMode"}; @@ -211,7 +211,7 @@ bool PythonQtShell_QGraphicsPixmapItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -244,7 +244,7 @@ void PythonQtShell_QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -266,7 +266,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -288,7 +288,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -310,7 +310,7 @@ void PythonQtShell_QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -332,7 +332,7 @@ void PythonQtShell_QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -354,7 +354,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::extension(const QVariant& variant0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -387,7 +387,7 @@ void PythonQtShell_QGraphicsPixmapItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -409,7 +409,7 @@ void PythonQtShell_QGraphicsPixmapItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -431,7 +431,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -453,7 +453,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -475,7 +475,7 @@ void PythonQtShell_QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -497,7 +497,7 @@ void PythonQtShell_QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -519,7 +519,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -552,7 +552,7 @@ bool PythonQtShell_QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem* item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -585,7 +585,7 @@ QVariant PythonQtShell_QGraphicsPixmapItem::itemChange(QGraphicsItem::GraphicsI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -621,7 +621,7 @@ void PythonQtShell_QGraphicsPixmapItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -643,7 +643,7 @@ void PythonQtShell_QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -665,7 +665,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMous if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -687,7 +687,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -709,7 +709,7 @@ void PythonQtShell_QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -731,7 +731,7 @@ void PythonQtShell_QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -753,7 +753,7 @@ QPainterPath PythonQtShell_QGraphicsPixmapItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -786,7 +786,7 @@ void PythonQtShell_QGraphicsPixmapItem::paint(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -808,7 +808,7 @@ bool PythonQtShell_QGraphicsPixmapItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -841,7 +841,7 @@ bool PythonQtShell_QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem* watche if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEventFilter"); + static PyObject* name = PyUnicode_FromString("sceneEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem*" , "QEvent*"}; @@ -874,7 +874,7 @@ void PythonQtShell_QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -896,7 +896,7 @@ QPainterPath PythonQtShell_QGraphicsPixmapItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -929,7 +929,7 @@ bool PythonQtShell_QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extens if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -962,7 +962,7 @@ int PythonQtShell_QGraphicsPixmapItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -995,7 +995,7 @@ void PythonQtShell_QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1076,7 +1076,7 @@ QRectF PythonQtShell_QGraphicsPolygonItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1109,7 +1109,7 @@ bool PythonQtShell_QGraphicsPolygonItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1142,7 +1142,7 @@ QVariant PythonQtShell_QGraphicsPolygonItem::extension(const QVariant& variant if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -1175,7 +1175,7 @@ bool PythonQtShell_QGraphicsPolygonItem::isObscuredBy(const QGraphicsItem* ite if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -1208,7 +1208,7 @@ QPainterPath PythonQtShell_QGraphicsPolygonItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1241,7 +1241,7 @@ void PythonQtShell_QGraphicsPolygonItem::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -1263,7 +1263,7 @@ void PythonQtShell_QGraphicsPolygonItem::setExtension(QGraphicsItem::Extension if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -1285,7 +1285,7 @@ QPainterPath PythonQtShell_QGraphicsPolygonItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1318,7 +1318,7 @@ bool PythonQtShell_QGraphicsPolygonItem::supportsExtension(QGraphicsItem::Exten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -1351,7 +1351,7 @@ int PythonQtShell_QGraphicsPolygonItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1458,7 +1458,7 @@ QRectF PythonQtShell_QGraphicsProxyWidget::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1491,7 +1491,7 @@ void PythonQtShell_QGraphicsProxyWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1513,7 +1513,7 @@ void PythonQtShell_QGraphicsProxyWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1535,7 +1535,7 @@ void PythonQtShell_QGraphicsProxyWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1557,7 +1557,7 @@ void PythonQtShell_QGraphicsProxyWidget::contextMenuEvent(QGraphicsSceneContextM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -1579,7 +1579,7 @@ void PythonQtShell_QGraphicsProxyWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1601,7 +1601,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragEnterEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1623,7 +1623,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragLeaveEvent(QGraphicsSceneDragDropEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1645,7 +1645,7 @@ void PythonQtShell_QGraphicsProxyWidget::dragMoveEvent(QGraphicsSceneDragDropEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1667,7 +1667,7 @@ void PythonQtShell_QGraphicsProxyWidget::dropEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -1689,7 +1689,7 @@ bool PythonQtShell_QGraphicsProxyWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1722,7 +1722,7 @@ bool PythonQtShell_QGraphicsProxyWidget::eventFilter(QObject* object0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1755,7 +1755,7 @@ void PythonQtShell_QGraphicsProxyWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1777,7 +1777,7 @@ bool PythonQtShell_QGraphicsProxyWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1810,7 +1810,7 @@ void PythonQtShell_QGraphicsProxyWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1832,7 +1832,7 @@ void PythonQtShell_QGraphicsProxyWidget::getContentsMargins(qreal* left0, qreal if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -1854,7 +1854,7 @@ void PythonQtShell_QGraphicsProxyWidget::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1876,7 +1876,7 @@ void PythonQtShell_QGraphicsProxyWidget::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1898,7 +1898,7 @@ void PythonQtShell_QGraphicsProxyWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1920,7 +1920,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverEnterEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1942,7 +1942,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverLeaveEvent(QGraphicsSceneHoverEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1964,7 +1964,7 @@ void PythonQtShell_QGraphicsProxyWidget::hoverMoveEvent(QGraphicsSceneHoverEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -1986,7 +1986,7 @@ void PythonQtShell_QGraphicsProxyWidget::initStyleOption(QStyleOption* option0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -2008,7 +2008,7 @@ void PythonQtShell_QGraphicsProxyWidget::inputMethodEvent(QInputMethodEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2030,7 +2030,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::inputMethodQuery(Qt::InputMethodQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2063,7 +2063,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::itemChange(QGraphicsItem::Graphics if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -2099,7 +2099,7 @@ void PythonQtShell_QGraphicsProxyWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2121,7 +2121,7 @@ void PythonQtShell_QGraphicsProxyWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2143,7 +2143,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseDoubleClickEvent(QGraphicsSceneMou if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2165,7 +2165,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseMoveEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2187,7 +2187,7 @@ void PythonQtShell_QGraphicsProxyWidget::mousePressEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2209,7 +2209,7 @@ void PythonQtShell_QGraphicsProxyWidget::mouseReleaseEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -2231,7 +2231,7 @@ void PythonQtShell_QGraphicsProxyWidget::moveEvent(QGraphicsSceneMoveEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -2253,7 +2253,7 @@ void PythonQtShell_QGraphicsProxyWidget::paint(QPainter* painter0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2275,7 +2275,7 @@ void PythonQtShell_QGraphicsProxyWidget::paintWindowFrame(QPainter* painter0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -2297,7 +2297,7 @@ void PythonQtShell_QGraphicsProxyWidget::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2319,7 +2319,7 @@ QVariant PythonQtShell_QGraphicsProxyWidget::propertyChange(const QString& pro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -2352,7 +2352,7 @@ void PythonQtShell_QGraphicsProxyWidget::resizeEvent(QGraphicsSceneResizeEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -2374,7 +2374,7 @@ bool PythonQtShell_QGraphicsProxyWidget::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2407,7 +2407,7 @@ void PythonQtShell_QGraphicsProxyWidget::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -2429,7 +2429,7 @@ QPainterPath PythonQtShell_QGraphicsProxyWidget::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -2462,7 +2462,7 @@ void PythonQtShell_QGraphicsProxyWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2484,7 +2484,7 @@ QSizeF PythonQtShell_QGraphicsProxyWidget::sizeHint(Qt::SizeHint which0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -2517,7 +2517,7 @@ void PythonQtShell_QGraphicsProxyWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2539,7 +2539,7 @@ int PythonQtShell_QGraphicsProxyWidget::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2572,7 +2572,7 @@ void PythonQtShell_QGraphicsProxyWidget::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2594,7 +2594,7 @@ void PythonQtShell_QGraphicsProxyWidget::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2616,7 +2616,7 @@ void PythonQtShell_QGraphicsProxyWidget::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2638,7 +2638,7 @@ void PythonQtShell_QGraphicsProxyWidget::wheelEvent(QGraphicsSceneWheelEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -2660,7 +2660,7 @@ bool PythonQtShell_QGraphicsProxyWidget::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2693,7 +2693,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsProxyWidget::windowFrameSectionAt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2844,7 +2844,7 @@ QRectF PythonQtShell_QGraphicsRectItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2877,7 +2877,7 @@ bool PythonQtShell_QGraphicsRectItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -2910,7 +2910,7 @@ QVariant PythonQtShell_QGraphicsRectItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -2943,7 +2943,7 @@ bool PythonQtShell_QGraphicsRectItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -2976,7 +2976,7 @@ QPainterPath PythonQtShell_QGraphicsRectItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3009,7 +3009,7 @@ void PythonQtShell_QGraphicsRectItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -3031,7 +3031,7 @@ void PythonQtShell_QGraphicsRectItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -3053,7 +3053,7 @@ QPainterPath PythonQtShell_QGraphicsRectItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -3086,7 +3086,7 @@ bool PythonQtShell_QGraphicsRectItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -3119,7 +3119,7 @@ int PythonQtShell_QGraphicsRectItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3225,7 +3225,7 @@ void PythonQtShell_QGraphicsRotation::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -3247,7 +3247,7 @@ void PythonQtShell_QGraphicsRotation::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3269,7 +3269,7 @@ void PythonQtShell_QGraphicsRotation::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3291,7 +3291,7 @@ bool PythonQtShell_QGraphicsRotation::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3324,7 +3324,7 @@ bool PythonQtShell_QGraphicsRotation::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3357,7 +3357,7 @@ void PythonQtShell_QGraphicsRotation::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3437,7 +3437,7 @@ void PythonQtShell_QGraphicsScale::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -3459,7 +3459,7 @@ void PythonQtShell_QGraphicsScale::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3481,7 +3481,7 @@ void PythonQtShell_QGraphicsScale::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3503,7 +3503,7 @@ bool PythonQtShell_QGraphicsScale::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3536,7 +3536,7 @@ bool PythonQtShell_QGraphicsScale::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3569,7 +3569,7 @@ void PythonQtShell_QGraphicsScale::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3654,7 +3654,7 @@ void PythonQtShell_QGraphicsScene::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3676,7 +3676,7 @@ void PythonQtShell_QGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -3698,7 +3698,7 @@ void PythonQtShell_QGraphicsScene::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3720,7 +3720,7 @@ void PythonQtShell_QGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3742,7 +3742,7 @@ void PythonQtShell_QGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3764,7 +3764,7 @@ void PythonQtShell_QGraphicsScene::dragMoveEvent(QGraphicsSceneDragDropEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3786,7 +3786,7 @@ void PythonQtShell_QGraphicsScene::drawBackground(QPainter* painter0, const QRe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -3808,7 +3808,7 @@ void PythonQtShell_QGraphicsScene::drawForeground(QPainter* painter0, const QRe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -3830,7 +3830,7 @@ void PythonQtShell_QGraphicsScene::drawItems(QPainter* painter0, int numItems1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -3852,7 +3852,7 @@ void PythonQtShell_QGraphicsScene::dropEvent(QGraphicsSceneDragDropEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -3874,7 +3874,7 @@ bool PythonQtShell_QGraphicsScene::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3907,7 +3907,7 @@ bool PythonQtShell_QGraphicsScene::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3940,7 +3940,7 @@ void PythonQtShell_QGraphicsScene::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3962,7 +3962,7 @@ void PythonQtShell_QGraphicsScene::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3984,7 +3984,7 @@ void PythonQtShell_QGraphicsScene::helpEvent(QGraphicsSceneHelpEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHelpEvent*"}; @@ -4006,7 +4006,7 @@ void PythonQtShell_QGraphicsScene::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -4028,7 +4028,7 @@ QVariant PythonQtShell_QGraphicsScene::inputMethodQuery(Qt::InputMethodQuery q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4061,7 +4061,7 @@ void PythonQtShell_QGraphicsScene::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4083,7 +4083,7 @@ void PythonQtShell_QGraphicsScene::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4105,7 +4105,7 @@ void PythonQtShell_QGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4127,7 +4127,7 @@ void PythonQtShell_QGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4149,7 +4149,7 @@ void PythonQtShell_QGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4171,7 +4171,7 @@ void PythonQtShell_QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -4193,7 +4193,7 @@ void PythonQtShell_QGraphicsScene::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4215,7 +4215,7 @@ void PythonQtShell_QGraphicsScene::wheelEvent(QGraphicsSceneWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -5272,7 +5272,7 @@ QRectF PythonQtShell_QGraphicsSimpleTextItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5305,7 +5305,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::contains(const QPointF& point0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5338,7 +5338,7 @@ QVariant PythonQtShell_QGraphicsSimpleTextItem::extension(const QVariant& vari if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -5371,7 +5371,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -5404,7 +5404,7 @@ QPainterPath PythonQtShell_QGraphicsSimpleTextItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5437,7 +5437,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::paint(QPainter* painter0, const QSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -5459,7 +5459,7 @@ void PythonQtShell_QGraphicsSimpleTextItem::setExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -5481,7 +5481,7 @@ QPainterPath PythonQtShell_QGraphicsSimpleTextItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -5514,7 +5514,7 @@ bool PythonQtShell_QGraphicsSimpleTextItem::supportsExtension(QGraphicsItem::Ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -5547,7 +5547,7 @@ int PythonQtShell_QGraphicsSimpleTextItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5654,7 +5654,7 @@ QRectF PythonQtShell_QGraphicsTextItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -5687,7 +5687,7 @@ void PythonQtShell_QGraphicsTextItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5709,7 +5709,7 @@ bool PythonQtShell_QGraphicsTextItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -5742,7 +5742,7 @@ void PythonQtShell_QGraphicsTextItem::contextMenuEvent(QGraphicsSceneContextMenu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -5764,7 +5764,7 @@ void PythonQtShell_QGraphicsTextItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5786,7 +5786,7 @@ void PythonQtShell_QGraphicsTextItem::dragEnterEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5808,7 +5808,7 @@ void PythonQtShell_QGraphicsTextItem::dragLeaveEvent(QGraphicsSceneDragDropEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5830,7 +5830,7 @@ void PythonQtShell_QGraphicsTextItem::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5852,7 +5852,7 @@ void PythonQtShell_QGraphicsTextItem::dropEvent(QGraphicsSceneDragDropEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -5874,7 +5874,7 @@ bool PythonQtShell_QGraphicsTextItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5907,7 +5907,7 @@ bool PythonQtShell_QGraphicsTextItem::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5940,7 +5940,7 @@ QVariant PythonQtShell_QGraphicsTextItem::extension(const QVariant& variant0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QVariant&"}; @@ -5973,7 +5973,7 @@ void PythonQtShell_QGraphicsTextItem::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5995,7 +5995,7 @@ void PythonQtShell_QGraphicsTextItem::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QGraphicsTextItem::hoverEnterEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6039,7 +6039,7 @@ void PythonQtShell_QGraphicsTextItem::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6061,7 +6061,7 @@ void PythonQtShell_QGraphicsTextItem::hoverMoveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -6083,7 +6083,7 @@ void PythonQtShell_QGraphicsTextItem::inputMethodEvent(QInputMethodEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6105,7 +6105,7 @@ QVariant PythonQtShell_QGraphicsTextItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6138,7 +6138,7 @@ bool PythonQtShell_QGraphicsTextItem::isObscuredBy(const QGraphicsItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isObscuredBy"); + static PyObject* name = PyUnicode_FromString("isObscuredBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGraphicsItem*"}; @@ -6171,7 +6171,7 @@ void PythonQtShell_QGraphicsTextItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6193,7 +6193,7 @@ void PythonQtShell_QGraphicsTextItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6215,7 +6215,7 @@ void PythonQtShell_QGraphicsTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6237,7 +6237,7 @@ void PythonQtShell_QGraphicsTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6259,7 +6259,7 @@ void PythonQtShell_QGraphicsTextItem::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6281,7 +6281,7 @@ void PythonQtShell_QGraphicsTextItem::mouseReleaseEvent(QGraphicsSceneMouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -6303,7 +6303,7 @@ QPainterPath PythonQtShell_QGraphicsTextItem::opaqueArea() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("opaqueArea"); + static PyObject* name = PyUnicode_FromString("opaqueArea"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6336,7 +6336,7 @@ void PythonQtShell_QGraphicsTextItem::paint(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -6358,7 +6358,7 @@ bool PythonQtShell_QGraphicsTextItem::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6391,7 +6391,7 @@ void PythonQtShell_QGraphicsTextItem::setExtension(QGraphicsItem::Extension ext if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setExtension"); + static PyObject* name = PyUnicode_FromString("setExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsItem::Extension" , "const QVariant&"}; @@ -6413,7 +6413,7 @@ QPainterPath PythonQtShell_QGraphicsTextItem::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -6446,7 +6446,7 @@ bool PythonQtShell_QGraphicsTextItem::supportsExtension(QGraphicsItem::Extensio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QGraphicsItem::Extension"}; @@ -6479,7 +6479,7 @@ void PythonQtShell_QGraphicsTextItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6501,7 +6501,7 @@ int PythonQtShell_QGraphicsTextItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6811,7 +6811,7 @@ void PythonQtShell_QGraphicsTransform::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -6833,7 +6833,7 @@ void PythonQtShell_QGraphicsTransform::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6855,7 +6855,7 @@ void PythonQtShell_QGraphicsTransform::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6877,7 +6877,7 @@ bool PythonQtShell_QGraphicsTransform::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6910,7 +6910,7 @@ bool PythonQtShell_QGraphicsTransform::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6943,7 +6943,7 @@ void PythonQtShell_QGraphicsTransform::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6993,7 +6993,7 @@ void PythonQtShell_QGraphicsView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7015,7 +7015,7 @@ void PythonQtShell_QGraphicsView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7037,7 +7037,7 @@ void PythonQtShell_QGraphicsView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7059,7 +7059,7 @@ void PythonQtShell_QGraphicsView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7081,7 +7081,7 @@ void PythonQtShell_QGraphicsView::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7103,7 +7103,7 @@ void PythonQtShell_QGraphicsView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7125,7 +7125,7 @@ int PythonQtShell_QGraphicsView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7158,7 +7158,7 @@ void PythonQtShell_QGraphicsView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7180,7 +7180,7 @@ void PythonQtShell_QGraphicsView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7202,7 +7202,7 @@ void PythonQtShell_QGraphicsView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7224,7 +7224,7 @@ void PythonQtShell_QGraphicsView::drawBackground(QPainter* painter0, const QRec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawBackground"); + static PyObject* name = PyUnicode_FromString("drawBackground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -7246,7 +7246,7 @@ void PythonQtShell_QGraphicsView::drawForeground(QPainter* painter0, const QRec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawForeground"); + static PyObject* name = PyUnicode_FromString("drawForeground"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&"}; @@ -7268,7 +7268,7 @@ void PythonQtShell_QGraphicsView::drawItems(QPainter* painter0, int numItems1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItems"); + static PyObject* name = PyUnicode_FromString("drawItems"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "int" , "QGraphicsItem**" , "const QStyleOptionGraphicsItem*"}; @@ -7290,7 +7290,7 @@ void PythonQtShell_QGraphicsView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7312,7 +7312,7 @@ void PythonQtShell_QGraphicsView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7334,7 +7334,7 @@ bool PythonQtShell_QGraphicsView::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7367,7 +7367,7 @@ bool PythonQtShell_QGraphicsView::eventFilter(QObject* arg__1, QEvent* arg__2 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7400,7 +7400,7 @@ void PythonQtShell_QGraphicsView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7422,7 +7422,7 @@ bool PythonQtShell_QGraphicsView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7455,7 +7455,7 @@ void PythonQtShell_QGraphicsView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7477,7 +7477,7 @@ bool PythonQtShell_QGraphicsView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7510,7 +7510,7 @@ int PythonQtShell_QGraphicsView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7543,7 +7543,7 @@ void PythonQtShell_QGraphicsView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7565,7 +7565,7 @@ void PythonQtShell_QGraphicsView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7587,7 +7587,7 @@ void PythonQtShell_QGraphicsView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7609,7 +7609,7 @@ QVariant PythonQtShell_QGraphicsView::inputMethodQuery(Qt::InputMethodQuery qu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7642,7 +7642,7 @@ void PythonQtShell_QGraphicsView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7664,7 +7664,7 @@ void PythonQtShell_QGraphicsView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7686,7 +7686,7 @@ void PythonQtShell_QGraphicsView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7708,7 +7708,7 @@ int PythonQtShell_QGraphicsView::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7741,7 +7741,7 @@ QSize PythonQtShell_QGraphicsView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7774,7 +7774,7 @@ void PythonQtShell_QGraphicsView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7796,7 +7796,7 @@ void PythonQtShell_QGraphicsView::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7818,7 +7818,7 @@ void PythonQtShell_QGraphicsView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7840,7 +7840,7 @@ void PythonQtShell_QGraphicsView::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7862,7 +7862,7 @@ void PythonQtShell_QGraphicsView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7884,7 +7884,7 @@ bool PythonQtShell_QGraphicsView::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7917,7 +7917,7 @@ QPaintEngine* PythonQtShell_QGraphicsView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7950,7 +7950,7 @@ void PythonQtShell_QGraphicsView::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7972,7 +7972,7 @@ QPaintDevice* PythonQtShell_QGraphicsView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8005,7 +8005,7 @@ void PythonQtShell_QGraphicsView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8027,7 +8027,7 @@ void PythonQtShell_QGraphicsView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -8049,7 +8049,7 @@ void PythonQtShell_QGraphicsView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8071,7 +8071,7 @@ void PythonQtShell_QGraphicsView::setupViewport(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -8093,7 +8093,7 @@ QPainter* PythonQtShell_QGraphicsView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8126,7 +8126,7 @@ void PythonQtShell_QGraphicsView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8148,7 +8148,7 @@ QSize PythonQtShell_QGraphicsView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8181,7 +8181,7 @@ void PythonQtShell_QGraphicsView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8203,7 +8203,7 @@ void PythonQtShell_QGraphicsView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8225,7 +8225,7 @@ bool PythonQtShell_QGraphicsView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8258,7 +8258,7 @@ QSize PythonQtShell_QGraphicsView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8291,7 +8291,7 @@ void PythonQtShell_QGraphicsView::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8735,7 +8735,7 @@ QRectF PythonQtShell_QGraphicsWidget::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -8768,7 +8768,7 @@ void PythonQtShell_QGraphicsWidget::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8790,7 +8790,7 @@ void PythonQtShell_QGraphicsWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8812,7 +8812,7 @@ void PythonQtShell_QGraphicsWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8834,7 +8834,7 @@ void PythonQtShell_QGraphicsWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8856,7 +8856,7 @@ bool PythonQtShell_QGraphicsWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8889,7 +8889,7 @@ bool PythonQtShell_QGraphicsWidget::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8922,7 +8922,7 @@ void PythonQtShell_QGraphicsWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8944,7 +8944,7 @@ bool PythonQtShell_QGraphicsWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8977,7 +8977,7 @@ void PythonQtShell_QGraphicsWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8999,7 +8999,7 @@ void PythonQtShell_QGraphicsWidget::getContentsMargins(qreal* left0, qreal* to if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -9021,7 +9021,7 @@ void PythonQtShell_QGraphicsWidget::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9043,7 +9043,7 @@ void PythonQtShell_QGraphicsWidget::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9065,7 +9065,7 @@ void PythonQtShell_QGraphicsWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9087,7 +9087,7 @@ void PythonQtShell_QGraphicsWidget::hoverLeaveEvent(QGraphicsSceneHoverEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9109,7 +9109,7 @@ void PythonQtShell_QGraphicsWidget::hoverMoveEvent(QGraphicsSceneHoverEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -9131,7 +9131,7 @@ void PythonQtShell_QGraphicsWidget::initStyleOption(QStyleOption* option0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -9153,7 +9153,7 @@ QVariant PythonQtShell_QGraphicsWidget::itemChange(QGraphicsItem::GraphicsItemC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -9189,7 +9189,7 @@ void PythonQtShell_QGraphicsWidget::moveEvent(QGraphicsSceneMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -9211,7 +9211,7 @@ void PythonQtShell_QGraphicsWidget::paint(QPainter* painter0, const QStyleOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9233,7 +9233,7 @@ void PythonQtShell_QGraphicsWidget::paintWindowFrame(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -9255,7 +9255,7 @@ void PythonQtShell_QGraphicsWidget::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9277,7 +9277,7 @@ QVariant PythonQtShell_QGraphicsWidget::propertyChange(const QString& property if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -9310,7 +9310,7 @@ void PythonQtShell_QGraphicsWidget::resizeEvent(QGraphicsSceneResizeEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -9332,7 +9332,7 @@ bool PythonQtShell_QGraphicsWidget::sceneEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9365,7 +9365,7 @@ void PythonQtShell_QGraphicsWidget::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -9387,7 +9387,7 @@ QPainterPath PythonQtShell_QGraphicsWidget::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -9420,7 +9420,7 @@ void PythonQtShell_QGraphicsWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9442,7 +9442,7 @@ QSizeF PythonQtShell_QGraphicsWidget::sizeHint(Qt::SizeHint which0, const QSiz if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -9475,7 +9475,7 @@ void PythonQtShell_QGraphicsWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9497,7 +9497,7 @@ int PythonQtShell_QGraphicsWidget::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9530,7 +9530,7 @@ void PythonQtShell_QGraphicsWidget::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9552,7 +9552,7 @@ void PythonQtShell_QGraphicsWidget::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9574,7 +9574,7 @@ void PythonQtShell_QGraphicsWidget::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9596,7 +9596,7 @@ bool PythonQtShell_QGraphicsWidget::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9629,7 +9629,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsWidget::windowFrameSectionAt(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -10055,7 +10055,7 @@ void PythonQtShell_QGridLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -10077,7 +10077,7 @@ void PythonQtShell_QGridLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10099,7 +10099,7 @@ QSizePolicy::ControlTypes PythonQtShell_QGridLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10132,7 +10132,7 @@ int PythonQtShell_QGridLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10165,7 +10165,7 @@ void PythonQtShell_QGridLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10187,7 +10187,7 @@ bool PythonQtShell_QGridLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10220,7 +10220,7 @@ bool PythonQtShell_QGridLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10253,7 +10253,7 @@ Qt::Orientations PythonQtShell_QGridLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10286,7 +10286,7 @@ QRect PythonQtShell_QGridLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10319,7 +10319,7 @@ bool PythonQtShell_QGridLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10352,7 +10352,7 @@ int PythonQtShell_QGridLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10385,7 +10385,7 @@ int PythonQtShell_QGridLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -10418,7 +10418,7 @@ void PythonQtShell_QGridLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10440,7 +10440,7 @@ bool PythonQtShell_QGridLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10473,7 +10473,7 @@ QLayoutItem* PythonQtShell_QGridLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10506,7 +10506,7 @@ QLayout* PythonQtShell_QGridLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10539,7 +10539,7 @@ QSize PythonQtShell_QGridLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10572,7 +10572,7 @@ int PythonQtShell_QGridLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10605,7 +10605,7 @@ QSize PythonQtShell_QGridLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10638,7 +10638,7 @@ void PythonQtShell_QGridLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10660,7 +10660,7 @@ QSize PythonQtShell_QGridLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10693,7 +10693,7 @@ QLayoutItem* PythonQtShell_QGridLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -10726,7 +10726,7 @@ void PythonQtShell_QGridLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10925,7 +10925,7 @@ void PythonQtShell_QGroupBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10947,7 +10947,7 @@ void PythonQtShell_QGroupBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10969,7 +10969,7 @@ void PythonQtShell_QGroupBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10991,7 +10991,7 @@ void PythonQtShell_QGroupBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11013,7 +11013,7 @@ void PythonQtShell_QGroupBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11035,7 +11035,7 @@ void PythonQtShell_QGroupBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11057,7 +11057,7 @@ int PythonQtShell_QGroupBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11090,7 +11090,7 @@ void PythonQtShell_QGroupBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11112,7 +11112,7 @@ void PythonQtShell_QGroupBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11134,7 +11134,7 @@ void PythonQtShell_QGroupBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11156,7 +11156,7 @@ void PythonQtShell_QGroupBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11178,7 +11178,7 @@ void PythonQtShell_QGroupBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11200,7 +11200,7 @@ bool PythonQtShell_QGroupBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11233,7 +11233,7 @@ bool PythonQtShell_QGroupBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11266,7 +11266,7 @@ void PythonQtShell_QGroupBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11288,7 +11288,7 @@ bool PythonQtShell_QGroupBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11321,7 +11321,7 @@ void PythonQtShell_QGroupBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11343,7 +11343,7 @@ bool PythonQtShell_QGroupBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11376,7 +11376,7 @@ int PythonQtShell_QGroupBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11409,7 +11409,7 @@ void PythonQtShell_QGroupBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11431,7 +11431,7 @@ void PythonQtShell_QGroupBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11453,7 +11453,7 @@ void PythonQtShell_QGroupBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11475,7 +11475,7 @@ QVariant PythonQtShell_QGroupBox::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11508,7 +11508,7 @@ void PythonQtShell_QGroupBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11530,7 +11530,7 @@ void PythonQtShell_QGroupBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11552,7 +11552,7 @@ void PythonQtShell_QGroupBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11574,7 +11574,7 @@ int PythonQtShell_QGroupBox::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11607,7 +11607,7 @@ QSize PythonQtShell_QGroupBox::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11640,7 +11640,7 @@ void PythonQtShell_QGroupBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11662,7 +11662,7 @@ void PythonQtShell_QGroupBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11684,7 +11684,7 @@ void PythonQtShell_QGroupBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11706,7 +11706,7 @@ void PythonQtShell_QGroupBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11728,7 +11728,7 @@ void PythonQtShell_QGroupBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11750,7 +11750,7 @@ bool PythonQtShell_QGroupBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11783,7 +11783,7 @@ QPaintEngine* PythonQtShell_QGroupBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11816,7 +11816,7 @@ void PythonQtShell_QGroupBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11838,7 +11838,7 @@ QPaintDevice* PythonQtShell_QGroupBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11871,7 +11871,7 @@ void PythonQtShell_QGroupBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11893,7 +11893,7 @@ void PythonQtShell_QGroupBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11915,7 +11915,7 @@ QPainter* PythonQtShell_QGroupBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11948,7 +11948,7 @@ void PythonQtShell_QGroupBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11970,7 +11970,7 @@ QSize PythonQtShell_QGroupBox::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12003,7 +12003,7 @@ void PythonQtShell_QGroupBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12025,7 +12025,7 @@ void PythonQtShell_QGroupBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12047,7 +12047,7 @@ void PythonQtShell_QGroupBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12378,7 +12378,7 @@ void PythonQtShell_QHBoxLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -12400,7 +12400,7 @@ void PythonQtShell_QHBoxLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12422,7 +12422,7 @@ QSizePolicy::ControlTypes PythonQtShell_QHBoxLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -12455,7 +12455,7 @@ int PythonQtShell_QHBoxLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12488,7 +12488,7 @@ void PythonQtShell_QHBoxLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12510,7 +12510,7 @@ bool PythonQtShell_QHBoxLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12543,7 +12543,7 @@ bool PythonQtShell_QHBoxLayout::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12576,7 +12576,7 @@ Qt::Orientations PythonQtShell_QHBoxLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -12609,7 +12609,7 @@ QRect PythonQtShell_QHBoxLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -12642,7 +12642,7 @@ bool PythonQtShell_QHBoxLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12675,7 +12675,7 @@ int PythonQtShell_QHBoxLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12708,7 +12708,7 @@ int PythonQtShell_QHBoxLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -12741,7 +12741,7 @@ void PythonQtShell_QHBoxLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12763,7 +12763,7 @@ bool PythonQtShell_QHBoxLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12796,7 +12796,7 @@ QLayoutItem* PythonQtShell_QHBoxLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -12829,7 +12829,7 @@ QLayout* PythonQtShell_QHBoxLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -12862,7 +12862,7 @@ QSize PythonQtShell_QHBoxLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12895,7 +12895,7 @@ int PythonQtShell_QHBoxLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12928,7 +12928,7 @@ QSize PythonQtShell_QHBoxLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12961,7 +12961,7 @@ void PythonQtShell_QHBoxLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -12983,7 +12983,7 @@ QSize PythonQtShell_QHBoxLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13016,7 +13016,7 @@ QLayoutItem* PythonQtShell_QHBoxLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -13049,7 +13049,7 @@ void PythonQtShell_QHBoxLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13098,7 +13098,7 @@ void PythonQtShell_QHeaderView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -13120,7 +13120,7 @@ void PythonQtShell_QHeaderView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13142,7 +13142,7 @@ void PythonQtShell_QHeaderView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13164,7 +13164,7 @@ void PythonQtShell_QHeaderView::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -13186,7 +13186,7 @@ void PythonQtShell_QHeaderView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -13208,7 +13208,7 @@ void PythonQtShell_QHeaderView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13230,7 +13230,7 @@ void PythonQtShell_QHeaderView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -13252,7 +13252,7 @@ void PythonQtShell_QHeaderView::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -13274,7 +13274,7 @@ void PythonQtShell_QHeaderView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13296,7 +13296,7 @@ void PythonQtShell_QHeaderView::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -13318,7 +13318,7 @@ int PythonQtShell_QHeaderView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13351,7 +13351,7 @@ void PythonQtShell_QHeaderView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13373,7 +13373,7 @@ void PythonQtShell_QHeaderView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -13395,7 +13395,7 @@ void PythonQtShell_QHeaderView::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -13417,7 +13417,7 @@ void PythonQtShell_QHeaderView::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -13439,7 +13439,7 @@ void PythonQtShell_QHeaderView::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -13461,7 +13461,7 @@ bool PythonQtShell_QHeaderView::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -13494,7 +13494,7 @@ void PythonQtShell_QHeaderView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -13516,7 +13516,7 @@ void PythonQtShell_QHeaderView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13538,7 +13538,7 @@ bool PythonQtShell_QHeaderView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -13571,7 +13571,7 @@ bool PythonQtShell_QHeaderView::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13604,7 +13604,7 @@ void PythonQtShell_QHeaderView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13626,7 +13626,7 @@ bool PythonQtShell_QHeaderView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13659,7 +13659,7 @@ void PythonQtShell_QHeaderView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13681,7 +13681,7 @@ bool PythonQtShell_QHeaderView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13714,7 +13714,7 @@ int PythonQtShell_QHeaderView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13747,7 +13747,7 @@ void PythonQtShell_QHeaderView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13769,7 +13769,7 @@ int PythonQtShell_QHeaderView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -13802,7 +13802,7 @@ void PythonQtShell_QHeaderView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13824,7 +13824,7 @@ void PythonQtShell_QHeaderView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -13846,7 +13846,7 @@ QModelIndex PythonQtShell_QHeaderView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -13879,7 +13879,7 @@ void PythonQtShell_QHeaderView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13901,7 +13901,7 @@ void PythonQtShell_QHeaderView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13923,7 +13923,7 @@ QVariant PythonQtShell_QHeaderView::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13956,7 +13956,7 @@ bool PythonQtShell_QHeaderView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -13989,7 +13989,7 @@ void PythonQtShell_QHeaderView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14011,7 +14011,7 @@ void PythonQtShell_QHeaderView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14033,7 +14033,7 @@ void PythonQtShell_QHeaderView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -14055,7 +14055,7 @@ void PythonQtShell_QHeaderView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14077,7 +14077,7 @@ int PythonQtShell_QHeaderView::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14110,7 +14110,7 @@ QSize PythonQtShell_QHeaderView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14143,7 +14143,7 @@ void PythonQtShell_QHeaderView::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14165,7 +14165,7 @@ void PythonQtShell_QHeaderView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14187,7 +14187,7 @@ void PythonQtShell_QHeaderView::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14209,7 +14209,7 @@ void PythonQtShell_QHeaderView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14231,7 +14231,7 @@ QModelIndex PythonQtShell_QHeaderView::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -14264,7 +14264,7 @@ void PythonQtShell_QHeaderView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14286,7 +14286,7 @@ bool PythonQtShell_QHeaderView::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14319,7 +14319,7 @@ QPaintEngine* PythonQtShell_QHeaderView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -14352,7 +14352,7 @@ void PythonQtShell_QHeaderView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14374,7 +14374,7 @@ void PythonQtShell_QHeaderView::paintSection(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintSection"); + static PyObject* name = PyUnicode_FromString("paintSection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int"}; @@ -14396,7 +14396,7 @@ QPaintDevice* PythonQtShell_QHeaderView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14429,7 +14429,7 @@ void PythonQtShell_QHeaderView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14451,7 +14451,7 @@ void PythonQtShell_QHeaderView::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14473,7 +14473,7 @@ void PythonQtShell_QHeaderView::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -14495,7 +14495,7 @@ void PythonQtShell_QHeaderView::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -14517,7 +14517,7 @@ void PythonQtShell_QHeaderView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -14539,7 +14539,7 @@ void PythonQtShell_QHeaderView::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -14561,7 +14561,7 @@ QSize PythonQtShell_QHeaderView::sectionSizeFromContents(int logicalIndex0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sectionSizeFromContents"); + static PyObject* name = PyUnicode_FromString("sectionSizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "int"}; @@ -14594,7 +14594,7 @@ void PythonQtShell_QHeaderView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14616,7 +14616,7 @@ QList PythonQtShell_QHeaderView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -14649,7 +14649,7 @@ void PythonQtShell_QHeaderView::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -14671,7 +14671,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QHeaderView::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -14704,7 +14704,7 @@ void PythonQtShell_QHeaderView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -14726,7 +14726,7 @@ void PythonQtShell_QHeaderView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14748,7 +14748,7 @@ void PythonQtShell_QHeaderView::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -14770,7 +14770,7 @@ void PythonQtShell_QHeaderView::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -14792,7 +14792,7 @@ void PythonQtShell_QHeaderView::setVisible(bool v0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -14814,7 +14814,7 @@ void PythonQtShell_QHeaderView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14836,7 +14836,7 @@ QPainter* PythonQtShell_QHeaderView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -14869,7 +14869,7 @@ void PythonQtShell_QHeaderView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14891,7 +14891,7 @@ QSize PythonQtShell_QHeaderView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14924,7 +14924,7 @@ int PythonQtShell_QHeaderView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14957,7 +14957,7 @@ int PythonQtShell_QHeaderView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14990,7 +14990,7 @@ void PythonQtShell_QHeaderView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -15012,7 +15012,7 @@ void PythonQtShell_QHeaderView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15034,7 +15034,7 @@ void PythonQtShell_QHeaderView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15056,7 +15056,7 @@ void PythonQtShell_QHeaderView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15078,7 +15078,7 @@ void PythonQtShell_QHeaderView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15100,7 +15100,7 @@ void PythonQtShell_QHeaderView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -15122,7 +15122,7 @@ int PythonQtShell_QHeaderView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15155,7 +15155,7 @@ void PythonQtShell_QHeaderView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15177,7 +15177,7 @@ void PythonQtShell_QHeaderView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15199,7 +15199,7 @@ QStyleOptionViewItem PythonQtShell_QHeaderView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -15232,7 +15232,7 @@ bool PythonQtShell_QHeaderView::viewportEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15265,7 +15265,7 @@ QSize PythonQtShell_QHeaderView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15298,7 +15298,7 @@ QRect PythonQtShell_QHeaderView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -15331,7 +15331,7 @@ QRegion PythonQtShell_QHeaderView::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -15364,7 +15364,7 @@ void PythonQtShell_QHeaderView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp index 447923c4e..3a412b133 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui4.cpp @@ -92,7 +92,7 @@ QSize PythonQtShell_QIconEngine::actualSize(const QSize& size0, QIcon::Mode m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actualSize"); + static PyObject* name = PyUnicode_FromString("actualSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -125,7 +125,7 @@ void PythonQtShell_QIconEngine::addFile(const QString& fileName0, const QSize& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addFile"); + static PyObject* name = PyUnicode_FromString("addFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -147,7 +147,7 @@ void PythonQtShell_QIconEngine::addPixmap(const QPixmap& pixmap0, QIcon::Mode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addPixmap"); + static PyObject* name = PyUnicode_FromString("addPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPixmap&" , "QIcon::Mode" , "QIcon::State"}; @@ -169,7 +169,7 @@ QList PythonQtShell_QIconEngine::availableSizes(QIcon::Mode mode0, QIc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableSizes"); + static PyObject* name = PyUnicode_FromString("availableSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QIcon::Mode" , "QIcon::State"}; @@ -202,7 +202,7 @@ QIconEngine* PythonQtShell_QIconEngine::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIconEngine*"}; @@ -235,7 +235,7 @@ QString PythonQtShell_QIconEngine::iconName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("iconName"); + static PyObject* name = PyUnicode_FromString("iconName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -268,7 +268,7 @@ QString PythonQtShell_QIconEngine::key() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("key"); + static PyObject* name = PyUnicode_FromString("key"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -301,7 +301,7 @@ void PythonQtShell_QIconEngine::paint(QPainter* painter0, const QRect& rect1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "QIcon::Mode" , "QIcon::State"}; @@ -323,7 +323,7 @@ QPixmap PythonQtShell_QIconEngine::pixmap(const QSize& size0, QIcon::Mode mod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixmap"); + static PyObject* name = PyUnicode_FromString("pixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "const QSize&" , "QIcon::Mode" , "QIcon::State"}; @@ -356,7 +356,7 @@ bool PythonQtShell_QIconEngine::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -389,7 +389,7 @@ void PythonQtShell_QIconEngine::virtual_hook(int id0, void* data1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("virtual_hook"); + static PyObject* name = PyUnicode_FromString("virtual_hook"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "void*"}; @@ -411,7 +411,7 @@ bool PythonQtShell_QIconEngine::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QDataStream&"}; @@ -514,7 +514,7 @@ bool PythonQtShell_QImageIOHandler::canRead() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canRead"); + static PyObject* name = PyUnicode_FromString("canRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -547,7 +547,7 @@ int PythonQtShell_QImageIOHandler::currentImageNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentImageNumber"); + static PyObject* name = PyUnicode_FromString("currentImageNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -580,7 +580,7 @@ QRect PythonQtShell_QImageIOHandler::currentImageRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentImageRect"); + static PyObject* name = PyUnicode_FromString("currentImageRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -613,7 +613,7 @@ int PythonQtShell_QImageIOHandler::imageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageCount"); + static PyObject* name = PyUnicode_FromString("imageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -646,7 +646,7 @@ bool PythonQtShell_QImageIOHandler::jumpToImage(int imageNumber0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("jumpToImage"); + static PyObject* name = PyUnicode_FromString("jumpToImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -679,7 +679,7 @@ bool PythonQtShell_QImageIOHandler::jumpToNextImage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("jumpToNextImage"); + static PyObject* name = PyUnicode_FromString("jumpToNextImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -712,7 +712,7 @@ int PythonQtShell_QImageIOHandler::loopCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loopCount"); + static PyObject* name = PyUnicode_FromString("loopCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -745,7 +745,7 @@ int PythonQtShell_QImageIOHandler::nextImageDelay() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextImageDelay"); + static PyObject* name = PyUnicode_FromString("nextImageDelay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -778,7 +778,7 @@ QVariant PythonQtShell_QImageIOHandler::option(QImageIOHandler::ImageOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("option"); + static PyObject* name = PyUnicode_FromString("option"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QImageIOHandler::ImageOption"}; @@ -811,7 +811,7 @@ bool PythonQtShell_QImageIOHandler::read(QImage* image0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImage*"}; @@ -844,7 +844,7 @@ void PythonQtShell_QImageIOHandler::setOption(QImageIOHandler::ImageOption opti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOption"); + static PyObject* name = PyUnicode_FromString("setOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QImageIOHandler::ImageOption" , "const QVariant&"}; @@ -866,7 +866,7 @@ bool PythonQtShell_QImageIOHandler::supportsOption(QImageIOHandler::ImageOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsOption"); + static PyObject* name = PyUnicode_FromString("supportsOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QImageIOHandler::ImageOption"}; @@ -899,7 +899,7 @@ bool PythonQtShell_QImageIOHandler::write(const QImage& image0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QImage&"}; @@ -1027,7 +1027,7 @@ QImageIOPlugin::Capabilities PythonQtShell_QImageIOPlugin::capabilities(QIODevi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("capabilities"); + static PyObject* name = PyUnicode_FromString("capabilities"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOPlugin::Capabilities" , "QIODevice*" , "const QByteArray&"}; @@ -1060,7 +1060,7 @@ void PythonQtShell_QImageIOPlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1082,7 +1082,7 @@ QImageIOHandler* PythonQtShell_QImageIOPlugin::create(QIODevice* device0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageIOHandler*" , "QIODevice*" , "const QByteArray&"}; @@ -1115,7 +1115,7 @@ void PythonQtShell_QImageIOPlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1137,7 +1137,7 @@ bool PythonQtShell_QImageIOPlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1170,7 +1170,7 @@ bool PythonQtShell_QImageIOPlugin::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1203,7 +1203,7 @@ void PythonQtShell_QImageIOPlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1676,7 +1676,7 @@ void PythonQtShell_QInputDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1698,7 +1698,7 @@ void PythonQtShell_QInputDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -1720,7 +1720,7 @@ void PythonQtShell_QInputDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1742,7 +1742,7 @@ void PythonQtShell_QInputDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1764,7 +1764,7 @@ void PythonQtShell_QInputDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -1786,7 +1786,7 @@ void PythonQtShell_QInputDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -1808,7 +1808,7 @@ void PythonQtShell_QInputDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1830,7 +1830,7 @@ int PythonQtShell_QInputDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1863,7 +1863,7 @@ void PythonQtShell_QInputDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1885,7 +1885,7 @@ void PythonQtShell_QInputDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1907,7 +1907,7 @@ void PythonQtShell_QInputDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1929,7 +1929,7 @@ void PythonQtShell_QInputDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1951,7 +1951,7 @@ void PythonQtShell_QInputDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1973,7 +1973,7 @@ void PythonQtShell_QInputDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1995,7 +1995,7 @@ bool PythonQtShell_QInputDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2028,7 +2028,7 @@ bool PythonQtShell_QInputDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2061,7 +2061,7 @@ int PythonQtShell_QInputDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2094,7 +2094,7 @@ void PythonQtShell_QInputDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2116,7 +2116,7 @@ bool PythonQtShell_QInputDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2149,7 +2149,7 @@ void PythonQtShell_QInputDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2171,7 +2171,7 @@ bool PythonQtShell_QInputDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2204,7 +2204,7 @@ int PythonQtShell_QInputDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2237,7 +2237,7 @@ void PythonQtShell_QInputDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2259,7 +2259,7 @@ void PythonQtShell_QInputDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2281,7 +2281,7 @@ void PythonQtShell_QInputDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2303,7 +2303,7 @@ QVariant PythonQtShell_QInputDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2336,7 +2336,7 @@ void PythonQtShell_QInputDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2358,7 +2358,7 @@ void PythonQtShell_QInputDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2380,7 +2380,7 @@ void PythonQtShell_QInputDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2402,7 +2402,7 @@ int PythonQtShell_QInputDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2435,7 +2435,7 @@ QSize PythonQtShell_QInputDialog::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2468,7 +2468,7 @@ void PythonQtShell_QInputDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2490,7 +2490,7 @@ void PythonQtShell_QInputDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2512,7 +2512,7 @@ void PythonQtShell_QInputDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2534,7 +2534,7 @@ void PythonQtShell_QInputDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2556,7 +2556,7 @@ void PythonQtShell_QInputDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2578,7 +2578,7 @@ bool PythonQtShell_QInputDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2611,7 +2611,7 @@ QPaintEngine* PythonQtShell_QInputDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2644,7 +2644,7 @@ void PythonQtShell_QInputDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2666,7 +2666,7 @@ QPaintDevice* PythonQtShell_QInputDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2699,7 +2699,7 @@ void PythonQtShell_QInputDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2721,7 +2721,7 @@ void PythonQtShell_QInputDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -2743,7 +2743,7 @@ void PythonQtShell_QInputDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2765,7 +2765,7 @@ QPainter* PythonQtShell_QInputDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2798,7 +2798,7 @@ void PythonQtShell_QInputDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -2820,7 +2820,7 @@ QSize PythonQtShell_QInputDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2853,7 +2853,7 @@ void PythonQtShell_QInputDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -2875,7 +2875,7 @@ void PythonQtShell_QInputDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2897,7 +2897,7 @@ void PythonQtShell_QInputDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3329,7 +3329,7 @@ void PythonQtShell_QIntValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3351,7 +3351,7 @@ void PythonQtShell_QIntValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3373,7 +3373,7 @@ bool PythonQtShell_QIntValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3406,7 +3406,7 @@ bool PythonQtShell_QIntValidator::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3439,7 +3439,7 @@ void PythonQtShell_QIntValidator::fixup(QString& input0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3461,7 +3461,7 @@ void PythonQtShell_QIntValidator::setRange(int bottom0, int top1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRange"); + static PyObject* name = PyUnicode_FromString("setRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3483,7 +3483,7 @@ void PythonQtShell_QIntValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3505,7 +3505,7 @@ QValidator::State PythonQtShell_QIntValidator::validate(QString& arg__1, int& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -3590,7 +3590,7 @@ void PythonQtShell_QItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3612,7 +3612,7 @@ QWidget* PythonQtShell_QItemDelegate::createEditor(QWidget* parent0, const QSt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3645,7 +3645,7 @@ void PythonQtShell_QItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3667,7 +3667,7 @@ void PythonQtShell_QItemDelegate::destroyEditor(QWidget* editor0, const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3689,7 +3689,7 @@ void PythonQtShell_QItemDelegate::drawCheck(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawCheck"); + static PyObject* name = PyUnicode_FromString("drawCheck"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "Qt::CheckState"}; @@ -3711,7 +3711,7 @@ void PythonQtShell_QItemDelegate::drawDecoration(QPainter* painter0, const QSty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawDecoration"); + static PyObject* name = PyUnicode_FromString("drawDecoration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QPixmap&"}; @@ -3733,7 +3733,7 @@ void PythonQtShell_QItemDelegate::drawDisplay(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawDisplay"); + static PyObject* name = PyUnicode_FromString("drawDisplay"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&" , "const QString&"}; @@ -3755,7 +3755,7 @@ void PythonQtShell_QItemDelegate::drawFocus(QPainter* painter0, const QStyleOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawFocus"); + static PyObject* name = PyUnicode_FromString("drawFocus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QRect&"}; @@ -3777,7 +3777,7 @@ bool PythonQtShell_QItemDelegate::editorEvent(QEvent* event0, QAbstractItemMod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3810,7 +3810,7 @@ bool PythonQtShell_QItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3843,7 +3843,7 @@ bool PythonQtShell_QItemDelegate::eventFilter(QObject* object0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3876,7 +3876,7 @@ bool PythonQtShell_QItemDelegate::helpEvent(QHelpEvent* event0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3909,7 +3909,7 @@ void PythonQtShell_QItemDelegate::paint(QPainter* painter0, const QStyleOptionV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -3931,7 +3931,7 @@ QVector PythonQtShell_QItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -3964,7 +3964,7 @@ void PythonQtShell_QItemDelegate::setEditorData(QWidget* editor0, const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -3986,7 +3986,7 @@ void PythonQtShell_QItemDelegate::setModelData(QWidget* editor0, QAbstractItemM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -4008,7 +4008,7 @@ QSize PythonQtShell_QItemDelegate::sizeHint(const QStyleOptionViewItem& option if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4041,7 +4041,7 @@ void PythonQtShell_QItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4063,7 +4063,7 @@ void PythonQtShell_QItemDelegate::updateEditorGeometry(QWidget* editor0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -4178,7 +4178,7 @@ QWidget* PythonQtShell_QItemEditorCreatorBase::createWidget(QWidget* parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*"}; @@ -4211,7 +4211,7 @@ QByteArray PythonQtShell_QItemEditorCreatorBase::valuePropertyName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray"}; @@ -4264,7 +4264,7 @@ QWidget* PythonQtShell_QItemEditorFactory::createEditor(int userType0, QWidget if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "int" , "QWidget*"}; @@ -4297,7 +4297,7 @@ QByteArray PythonQtShell_QItemEditorFactory::valuePropertyName(int userType0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valuePropertyName"); + static PyObject* name = PyUnicode_FromString("valuePropertyName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "int"}; @@ -4640,7 +4640,7 @@ void PythonQtShell_QItemSelectionModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4662,7 +4662,7 @@ void PythonQtShell_QItemSelectionModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4684,7 +4684,7 @@ void PythonQtShell_QItemSelectionModel::clearCurrentIndex() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clearCurrentIndex"); + static PyObject* name = PyUnicode_FromString("clearCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4706,7 +4706,7 @@ void PythonQtShell_QItemSelectionModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4728,7 +4728,7 @@ bool PythonQtShell_QItemSelectionModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4761,7 +4761,7 @@ bool PythonQtShell_QItemSelectionModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4794,7 +4794,7 @@ void PythonQtShell_QItemSelectionModel::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4816,7 +4816,7 @@ void PythonQtShell_QItemSelectionModel::select(const QItemSelection& selection0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "QItemSelectionModel::SelectionFlags"}; @@ -4838,7 +4838,7 @@ void PythonQtShell_QItemSelectionModel::select(const QModelIndex& index0, QItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4860,7 +4860,7 @@ void PythonQtShell_QItemSelectionModel::setCurrentIndex(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCurrentIndex"); + static PyObject* name = PyUnicode_FromString("setCurrentIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QItemSelectionModel::SelectionFlags"}; @@ -4882,7 +4882,7 @@ void PythonQtShell_QItemSelectionModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5200,7 +5200,7 @@ void PythonQtShell_QKeyEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5222,7 +5222,7 @@ void PythonQtShell_QKeyEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5244,7 +5244,7 @@ bool PythonQtShell_QKeyEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5277,7 +5277,7 @@ bool PythonQtShell_QKeyEventTransition::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5310,7 +5310,7 @@ bool PythonQtShell_QKeyEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5343,7 +5343,7 @@ void PythonQtShell_QKeyEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5365,7 +5365,7 @@ void PythonQtShell_QKeyEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5434,7 +5434,7 @@ void PythonQtShell_QKeySequenceEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5456,7 +5456,7 @@ void PythonQtShell_QKeySequenceEdit::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5478,7 +5478,7 @@ void PythonQtShell_QKeySequenceEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5500,7 +5500,7 @@ void PythonQtShell_QKeySequenceEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5522,7 +5522,7 @@ void PythonQtShell_QKeySequenceEdit::contextMenuEvent(QContextMenuEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5544,7 +5544,7 @@ void PythonQtShell_QKeySequenceEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5566,7 +5566,7 @@ int PythonQtShell_QKeySequenceEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5599,7 +5599,7 @@ void PythonQtShell_QKeySequenceEdit::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5621,7 +5621,7 @@ void PythonQtShell_QKeySequenceEdit::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5643,7 +5643,7 @@ void PythonQtShell_QKeySequenceEdit::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5665,7 +5665,7 @@ void PythonQtShell_QKeySequenceEdit::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5687,7 +5687,7 @@ void PythonQtShell_QKeySequenceEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5709,7 +5709,7 @@ bool PythonQtShell_QKeySequenceEdit::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5742,7 +5742,7 @@ bool PythonQtShell_QKeySequenceEdit::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5775,7 +5775,7 @@ void PythonQtShell_QKeySequenceEdit::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5797,7 +5797,7 @@ bool PythonQtShell_QKeySequenceEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5830,7 +5830,7 @@ void PythonQtShell_QKeySequenceEdit::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5852,7 +5852,7 @@ bool PythonQtShell_QKeySequenceEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5885,7 +5885,7 @@ int PythonQtShell_QKeySequenceEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5918,7 +5918,7 @@ void PythonQtShell_QKeySequenceEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5940,7 +5940,7 @@ void PythonQtShell_QKeySequenceEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5962,7 +5962,7 @@ void PythonQtShell_QKeySequenceEdit::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5984,7 +5984,7 @@ QVariant PythonQtShell_QKeySequenceEdit::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6017,7 +6017,7 @@ void PythonQtShell_QKeySequenceEdit::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6039,7 +6039,7 @@ void PythonQtShell_QKeySequenceEdit::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6061,7 +6061,7 @@ void PythonQtShell_QKeySequenceEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6083,7 +6083,7 @@ int PythonQtShell_QKeySequenceEdit::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6116,7 +6116,7 @@ QSize PythonQtShell_QKeySequenceEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6149,7 +6149,7 @@ void PythonQtShell_QKeySequenceEdit::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6171,7 +6171,7 @@ void PythonQtShell_QKeySequenceEdit::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6193,7 +6193,7 @@ void PythonQtShell_QKeySequenceEdit::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6215,7 +6215,7 @@ void PythonQtShell_QKeySequenceEdit::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6237,7 +6237,7 @@ void PythonQtShell_QKeySequenceEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6259,7 +6259,7 @@ bool PythonQtShell_QKeySequenceEdit::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6292,7 +6292,7 @@ QPaintEngine* PythonQtShell_QKeySequenceEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6325,7 +6325,7 @@ void PythonQtShell_QKeySequenceEdit::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6347,7 +6347,7 @@ QPaintDevice* PythonQtShell_QKeySequenceEdit::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6380,7 +6380,7 @@ void PythonQtShell_QKeySequenceEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6402,7 +6402,7 @@ void PythonQtShell_QKeySequenceEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6424,7 +6424,7 @@ QPainter* PythonQtShell_QKeySequenceEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6457,7 +6457,7 @@ void PythonQtShell_QKeySequenceEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6479,7 +6479,7 @@ QSize PythonQtShell_QKeySequenceEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6512,7 +6512,7 @@ void PythonQtShell_QKeySequenceEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6534,7 +6534,7 @@ void PythonQtShell_QKeySequenceEdit::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6556,7 +6556,7 @@ void PythonQtShell_QKeySequenceEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6610,7 +6610,7 @@ void PythonQtShell_QLCDNumber::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6632,7 +6632,7 @@ void PythonQtShell_QLCDNumber::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6654,7 +6654,7 @@ void PythonQtShell_QLCDNumber::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6676,7 +6676,7 @@ void PythonQtShell_QLCDNumber::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6698,7 +6698,7 @@ void PythonQtShell_QLCDNumber::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6720,7 +6720,7 @@ void PythonQtShell_QLCDNumber::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6742,7 +6742,7 @@ int PythonQtShell_QLCDNumber::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6775,7 +6775,7 @@ void PythonQtShell_QLCDNumber::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6797,7 +6797,7 @@ void PythonQtShell_QLCDNumber::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6819,7 +6819,7 @@ void PythonQtShell_QLCDNumber::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6841,7 +6841,7 @@ void PythonQtShell_QLCDNumber::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6863,7 +6863,7 @@ void PythonQtShell_QLCDNumber::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6885,7 +6885,7 @@ bool PythonQtShell_QLCDNumber::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6918,7 +6918,7 @@ bool PythonQtShell_QLCDNumber::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6951,7 +6951,7 @@ void PythonQtShell_QLCDNumber::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6973,7 +6973,7 @@ bool PythonQtShell_QLCDNumber::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7006,7 +7006,7 @@ void PythonQtShell_QLCDNumber::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7028,7 +7028,7 @@ bool PythonQtShell_QLCDNumber::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7061,7 +7061,7 @@ int PythonQtShell_QLCDNumber::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7094,7 +7094,7 @@ void PythonQtShell_QLCDNumber::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7116,7 +7116,7 @@ void PythonQtShell_QLCDNumber::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7138,7 +7138,7 @@ void PythonQtShell_QLCDNumber::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7160,7 +7160,7 @@ QVariant PythonQtShell_QLCDNumber::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7193,7 +7193,7 @@ void PythonQtShell_QLCDNumber::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7215,7 +7215,7 @@ void PythonQtShell_QLCDNumber::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7237,7 +7237,7 @@ void PythonQtShell_QLCDNumber::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7259,7 +7259,7 @@ int PythonQtShell_QLCDNumber::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7292,7 +7292,7 @@ QSize PythonQtShell_QLCDNumber::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7325,7 +7325,7 @@ void PythonQtShell_QLCDNumber::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7347,7 +7347,7 @@ void PythonQtShell_QLCDNumber::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7369,7 +7369,7 @@ void PythonQtShell_QLCDNumber::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7391,7 +7391,7 @@ void PythonQtShell_QLCDNumber::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7413,7 +7413,7 @@ void PythonQtShell_QLCDNumber::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7435,7 +7435,7 @@ bool PythonQtShell_QLCDNumber::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7468,7 +7468,7 @@ QPaintEngine* PythonQtShell_QLCDNumber::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7501,7 +7501,7 @@ void PythonQtShell_QLCDNumber::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7523,7 +7523,7 @@ QPaintDevice* PythonQtShell_QLCDNumber::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7556,7 +7556,7 @@ void PythonQtShell_QLCDNumber::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7578,7 +7578,7 @@ void PythonQtShell_QLCDNumber::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7600,7 +7600,7 @@ QPainter* PythonQtShell_QLCDNumber::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7633,7 +7633,7 @@ void PythonQtShell_QLCDNumber::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7655,7 +7655,7 @@ QSize PythonQtShell_QLCDNumber::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7688,7 +7688,7 @@ void PythonQtShell_QLCDNumber::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7710,7 +7710,7 @@ void PythonQtShell_QLCDNumber::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7732,7 +7732,7 @@ void PythonQtShell_QLCDNumber::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7836,7 +7836,7 @@ void PythonQtShell_QLabel::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7858,7 +7858,7 @@ void PythonQtShell_QLabel::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7880,7 +7880,7 @@ void PythonQtShell_QLabel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7902,7 +7902,7 @@ void PythonQtShell_QLabel::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7924,7 +7924,7 @@ void PythonQtShell_QLabel::contextMenuEvent(QContextMenuEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7946,7 +7946,7 @@ void PythonQtShell_QLabel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7968,7 +7968,7 @@ int PythonQtShell_QLabel::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8001,7 +8001,7 @@ void PythonQtShell_QLabel::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -8023,7 +8023,7 @@ void PythonQtShell_QLabel::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -8045,7 +8045,7 @@ void PythonQtShell_QLabel::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -8067,7 +8067,7 @@ void PythonQtShell_QLabel::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -8089,7 +8089,7 @@ void PythonQtShell_QLabel::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8111,7 +8111,7 @@ bool PythonQtShell_QLabel::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8144,7 +8144,7 @@ bool PythonQtShell_QLabel::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8177,7 +8177,7 @@ void PythonQtShell_QLabel::focusInEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8199,7 +8199,7 @@ bool PythonQtShell_QLabel::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -8232,7 +8232,7 @@ void PythonQtShell_QLabel::focusOutEvent(QFocusEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8254,7 +8254,7 @@ bool PythonQtShell_QLabel::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8287,7 +8287,7 @@ int PythonQtShell_QLabel::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8320,7 +8320,7 @@ void PythonQtShell_QLabel::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8342,7 +8342,7 @@ void PythonQtShell_QLabel::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -8364,7 +8364,7 @@ void PythonQtShell_QLabel::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -8386,7 +8386,7 @@ QVariant PythonQtShell_QLabel::inputMethodQuery(Qt::InputMethodQuery arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -8419,7 +8419,7 @@ void PythonQtShell_QLabel::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8441,7 +8441,7 @@ void PythonQtShell_QLabel::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8463,7 +8463,7 @@ void PythonQtShell_QLabel::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8485,7 +8485,7 @@ int PythonQtShell_QLabel::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8518,7 +8518,7 @@ QSize PythonQtShell_QLabel::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8551,7 +8551,7 @@ void PythonQtShell_QLabel::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8573,7 +8573,7 @@ void PythonQtShell_QLabel::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8595,7 +8595,7 @@ void PythonQtShell_QLabel::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8617,7 +8617,7 @@ void PythonQtShell_QLabel::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8639,7 +8639,7 @@ void PythonQtShell_QLabel::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8661,7 +8661,7 @@ bool PythonQtShell_QLabel::nativeEvent(const QByteArray& eventType0, void* me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8694,7 +8694,7 @@ QPaintEngine* PythonQtShell_QLabel::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8727,7 +8727,7 @@ void PythonQtShell_QLabel::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8749,7 +8749,7 @@ QPaintDevice* PythonQtShell_QLabel::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8782,7 +8782,7 @@ void PythonQtShell_QLabel::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8804,7 +8804,7 @@ void PythonQtShell_QLabel::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8826,7 +8826,7 @@ QPainter* PythonQtShell_QLabel::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8859,7 +8859,7 @@ void PythonQtShell_QLabel::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8881,7 +8881,7 @@ QSize PythonQtShell_QLabel::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8914,7 +8914,7 @@ void PythonQtShell_QLabel::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8936,7 +8936,7 @@ void PythonQtShell_QLabel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8958,7 +8958,7 @@ void PythonQtShell_QLabel::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9142,7 +9142,7 @@ void PythonQtShell_QLayout::addItem(QLayoutItem* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -9164,7 +9164,7 @@ void PythonQtShell_QLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9186,7 +9186,7 @@ QSizePolicy::ControlTypes PythonQtShell_QLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -9219,7 +9219,7 @@ int PythonQtShell_QLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9252,7 +9252,7 @@ void PythonQtShell_QLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9274,7 +9274,7 @@ bool PythonQtShell_QLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9307,7 +9307,7 @@ bool PythonQtShell_QLayout::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9340,7 +9340,7 @@ Qt::Orientations PythonQtShell_QLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -9373,7 +9373,7 @@ QRect PythonQtShell_QLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -9406,7 +9406,7 @@ bool PythonQtShell_QLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9439,7 +9439,7 @@ int PythonQtShell_QLayout::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9472,7 +9472,7 @@ int PythonQtShell_QLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -9505,7 +9505,7 @@ void PythonQtShell_QLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9527,7 +9527,7 @@ bool PythonQtShell_QLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9560,7 +9560,7 @@ QLayoutItem* PythonQtShell_QLayout::itemAt(int index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9593,7 +9593,7 @@ QLayout* PythonQtShell_QLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -9626,7 +9626,7 @@ QSize PythonQtShell_QLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9659,7 +9659,7 @@ int PythonQtShell_QLayout::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9692,7 +9692,7 @@ QSize PythonQtShell_QLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9725,7 +9725,7 @@ void PythonQtShell_QLayout::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -9747,7 +9747,7 @@ QSize PythonQtShell_QLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9780,7 +9780,7 @@ QSpacerItem* PythonQtShell_QLayout::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -9813,7 +9813,7 @@ QLayoutItem* PythonQtShell_QLayout::takeAt(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9846,7 +9846,7 @@ void PythonQtShell_QLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9868,7 +9868,7 @@ QWidget* PythonQtShell_QLayout::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -10113,7 +10113,7 @@ QSizePolicy::ControlTypes PythonQtShell_QLayoutItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -10146,7 +10146,7 @@ Qt::Orientations PythonQtShell_QLayoutItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -10179,7 +10179,7 @@ QRect PythonQtShell_QLayoutItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -10212,7 +10212,7 @@ bool PythonQtShell_QLayoutItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10245,7 +10245,7 @@ int PythonQtShell_QLayoutItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10278,7 +10278,7 @@ void PythonQtShell_QLayoutItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10300,7 +10300,7 @@ bool PythonQtShell_QLayoutItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10333,7 +10333,7 @@ QLayout* PythonQtShell_QLayoutItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -10366,7 +10366,7 @@ QSize PythonQtShell_QLayoutItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10399,7 +10399,7 @@ int PythonQtShell_QLayoutItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10432,7 +10432,7 @@ QSize PythonQtShell_QLayoutItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10465,7 +10465,7 @@ void PythonQtShell_QLayoutItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -10487,7 +10487,7 @@ QSize PythonQtShell_QLayoutItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10520,7 +10520,7 @@ QSpacerItem* PythonQtShell_QLayoutItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -10553,7 +10553,7 @@ QWidget* PythonQtShell_QLayoutItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -10681,7 +10681,7 @@ void PythonQtShell_QLineEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10703,7 +10703,7 @@ void PythonQtShell_QLineEdit::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10725,7 +10725,7 @@ void PythonQtShell_QLineEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10747,7 +10747,7 @@ void PythonQtShell_QLineEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10769,7 +10769,7 @@ void PythonQtShell_QLineEdit::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10791,7 +10791,7 @@ void PythonQtShell_QLineEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10813,7 +10813,7 @@ int PythonQtShell_QLineEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10846,7 +10846,7 @@ void PythonQtShell_QLineEdit::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10868,7 +10868,7 @@ void PythonQtShell_QLineEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10890,7 +10890,7 @@ void PythonQtShell_QLineEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10912,7 +10912,7 @@ void PythonQtShell_QLineEdit::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10934,7 +10934,7 @@ void PythonQtShell_QLineEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10956,7 +10956,7 @@ bool PythonQtShell_QLineEdit::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10989,7 +10989,7 @@ bool PythonQtShell_QLineEdit::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11022,7 +11022,7 @@ void PythonQtShell_QLineEdit::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11044,7 +11044,7 @@ bool PythonQtShell_QLineEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11077,7 +11077,7 @@ void PythonQtShell_QLineEdit::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11099,7 +11099,7 @@ bool PythonQtShell_QLineEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11132,7 +11132,7 @@ int PythonQtShell_QLineEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11165,7 +11165,7 @@ void PythonQtShell_QLineEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11187,7 +11187,7 @@ void PythonQtShell_QLineEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11209,7 +11209,7 @@ void PythonQtShell_QLineEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11231,7 +11231,7 @@ QVariant PythonQtShell_QLineEdit::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11264,7 +11264,7 @@ void PythonQtShell_QLineEdit::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11286,7 +11286,7 @@ void PythonQtShell_QLineEdit::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11308,7 +11308,7 @@ void PythonQtShell_QLineEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11330,7 +11330,7 @@ int PythonQtShell_QLineEdit::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11363,7 +11363,7 @@ QSize PythonQtShell_QLineEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11396,7 +11396,7 @@ void PythonQtShell_QLineEdit::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11418,7 +11418,7 @@ void PythonQtShell_QLineEdit::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11440,7 +11440,7 @@ void PythonQtShell_QLineEdit::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11462,7 +11462,7 @@ void PythonQtShell_QLineEdit::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11484,7 +11484,7 @@ void PythonQtShell_QLineEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11506,7 +11506,7 @@ bool PythonQtShell_QLineEdit::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11539,7 +11539,7 @@ QPaintEngine* PythonQtShell_QLineEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11572,7 +11572,7 @@ void PythonQtShell_QLineEdit::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11594,7 +11594,7 @@ QPaintDevice* PythonQtShell_QLineEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11627,7 +11627,7 @@ void PythonQtShell_QLineEdit::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11649,7 +11649,7 @@ void PythonQtShell_QLineEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11671,7 +11671,7 @@ QPainter* PythonQtShell_QLineEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11704,7 +11704,7 @@ void PythonQtShell_QLineEdit::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11726,7 +11726,7 @@ QSize PythonQtShell_QLineEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11759,7 +11759,7 @@ void PythonQtShell_QLineEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11781,7 +11781,7 @@ void PythonQtShell_QLineEdit::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11803,7 +11803,7 @@ void PythonQtShell_QLineEdit::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12191,7 +12191,7 @@ void PythonQtShell_QListView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12213,7 +12213,7 @@ void PythonQtShell_QListView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12235,7 +12235,7 @@ void PythonQtShell_QListView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12257,7 +12257,7 @@ void PythonQtShell_QListView::closeEditor(QWidget* editor0, QAbstractItemDelega if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -12279,7 +12279,7 @@ void PythonQtShell_QListView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12301,7 +12301,7 @@ void PythonQtShell_QListView::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12323,7 +12323,7 @@ void PythonQtShell_QListView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12345,7 +12345,7 @@ void PythonQtShell_QListView::currentChanged(const QModelIndex& current0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -12367,7 +12367,7 @@ void PythonQtShell_QListView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12389,7 +12389,7 @@ void PythonQtShell_QListView::dataChanged(const QModelIndex& topLeft0, const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -12411,7 +12411,7 @@ int PythonQtShell_QListView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12444,7 +12444,7 @@ void PythonQtShell_QListView::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -12466,7 +12466,7 @@ void PythonQtShell_QListView::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12488,7 +12488,7 @@ void PythonQtShell_QListView::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12510,7 +12510,7 @@ void PythonQtShell_QListView::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12532,7 +12532,7 @@ void PythonQtShell_QListView::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12554,7 +12554,7 @@ bool PythonQtShell_QListView::edit(const QModelIndex& index0, QAbstractItemVie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -12587,7 +12587,7 @@ void PythonQtShell_QListView::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -12609,7 +12609,7 @@ void PythonQtShell_QListView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12631,7 +12631,7 @@ bool PythonQtShell_QListView::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12664,7 +12664,7 @@ bool PythonQtShell_QListView::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12697,7 +12697,7 @@ void PythonQtShell_QListView::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12719,7 +12719,7 @@ bool PythonQtShell_QListView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -12752,7 +12752,7 @@ void PythonQtShell_QListView::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12774,7 +12774,7 @@ bool PythonQtShell_QListView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12807,7 +12807,7 @@ int PythonQtShell_QListView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -12840,7 +12840,7 @@ void PythonQtShell_QListView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -12862,7 +12862,7 @@ int PythonQtShell_QListView::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12895,7 +12895,7 @@ void PythonQtShell_QListView::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12917,7 +12917,7 @@ void PythonQtShell_QListView::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -12939,7 +12939,7 @@ QModelIndex PythonQtShell_QListView::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -12972,7 +12972,7 @@ void PythonQtShell_QListView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -12994,7 +12994,7 @@ void PythonQtShell_QListView::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13016,7 +13016,7 @@ QVariant PythonQtShell_QListView::inputMethodQuery(Qt::InputMethodQuery query0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13049,7 +13049,7 @@ bool PythonQtShell_QListView::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -13082,7 +13082,7 @@ void PythonQtShell_QListView::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13104,7 +13104,7 @@ void PythonQtShell_QListView::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13126,7 +13126,7 @@ void PythonQtShell_QListView::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -13148,7 +13148,7 @@ void PythonQtShell_QListView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13170,7 +13170,7 @@ int PythonQtShell_QListView::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13203,7 +13203,7 @@ QSize PythonQtShell_QListView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13236,7 +13236,7 @@ void PythonQtShell_QListView::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13258,7 +13258,7 @@ void PythonQtShell_QListView::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13280,7 +13280,7 @@ void PythonQtShell_QListView::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13302,7 +13302,7 @@ void PythonQtShell_QListView::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13324,7 +13324,7 @@ QModelIndex PythonQtShell_QListView::moveCursor(QAbstractItemView::CursorAction if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -13357,7 +13357,7 @@ void PythonQtShell_QListView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13379,7 +13379,7 @@ bool PythonQtShell_QListView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13412,7 +13412,7 @@ QPaintEngine* PythonQtShell_QListView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13445,7 +13445,7 @@ void PythonQtShell_QListView::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13467,7 +13467,7 @@ QPaintDevice* PythonQtShell_QListView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13500,7 +13500,7 @@ void PythonQtShell_QListView::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13522,7 +13522,7 @@ void PythonQtShell_QListView::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13544,7 +13544,7 @@ void PythonQtShell_QListView::rowsAboutToBeRemoved(const QModelIndex& parent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13566,7 +13566,7 @@ void PythonQtShell_QListView::rowsInserted(const QModelIndex& parent0, int sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -13588,7 +13588,7 @@ void PythonQtShell_QListView::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13610,7 +13610,7 @@ void PythonQtShell_QListView::scrollTo(const QModelIndex& index0, QAbstractItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -13632,7 +13632,7 @@ void PythonQtShell_QListView::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13654,7 +13654,7 @@ QList PythonQtShell_QListView::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -13687,7 +13687,7 @@ void PythonQtShell_QListView::selectionChanged(const QItemSelection& selected0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -13709,7 +13709,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QListView::selectionCommand(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -13742,7 +13742,7 @@ void PythonQtShell_QListView::setModel(QAbstractItemModel* model0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModel"); + static PyObject* name = PyUnicode_FromString("setModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -13764,7 +13764,7 @@ void PythonQtShell_QListView::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -13786,7 +13786,7 @@ void PythonQtShell_QListView::setSelection(const QRect& rect0, QItemSelectionMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -13808,7 +13808,7 @@ void PythonQtShell_QListView::setSelectionModel(QItemSelectionModel* selectionM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -13830,7 +13830,7 @@ void PythonQtShell_QListView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13852,7 +13852,7 @@ void PythonQtShell_QListView::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -13874,7 +13874,7 @@ QPainter* PythonQtShell_QListView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13907,7 +13907,7 @@ void PythonQtShell_QListView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13929,7 +13929,7 @@ QSize PythonQtShell_QListView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13962,7 +13962,7 @@ int PythonQtShell_QListView::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13995,7 +13995,7 @@ int PythonQtShell_QListView::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14028,7 +14028,7 @@ void PythonQtShell_QListView::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -14050,7 +14050,7 @@ void PythonQtShell_QListView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14072,7 +14072,7 @@ void PythonQtShell_QListView::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14094,7 +14094,7 @@ void PythonQtShell_QListView::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14116,7 +14116,7 @@ void PythonQtShell_QListView::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14138,7 +14138,7 @@ void PythonQtShell_QListView::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14160,7 +14160,7 @@ int PythonQtShell_QListView::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14193,7 +14193,7 @@ void PythonQtShell_QListView::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -14215,7 +14215,7 @@ void PythonQtShell_QListView::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -14237,7 +14237,7 @@ QStyleOptionViewItem PythonQtShell_QListView::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -14270,7 +14270,7 @@ bool PythonQtShell_QListView::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14303,7 +14303,7 @@ QSize PythonQtShell_QListView::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14336,7 +14336,7 @@ QRect PythonQtShell_QListView::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -14369,7 +14369,7 @@ QRegion PythonQtShell_QListView::visualRegionForSelection(const QItemSelection& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -14402,7 +14402,7 @@ void PythonQtShell_QListView::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14612,7 +14612,7 @@ void PythonQtShell_QListWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14634,7 +14634,7 @@ void PythonQtShell_QListWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14656,7 +14656,7 @@ void PythonQtShell_QListWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14678,7 +14678,7 @@ void PythonQtShell_QListWidget::closeEditor(QWidget* editor0, QAbstractItemDele if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEditor"); + static PyObject* name = PyUnicode_FromString("closeEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemDelegate::EndEditHint"}; @@ -14700,7 +14700,7 @@ void PythonQtShell_QListWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14722,7 +14722,7 @@ void PythonQtShell_QListWidget::commitData(QWidget* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitData"); + static PyObject* name = PyUnicode_FromString("commitData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -14744,7 +14744,7 @@ void PythonQtShell_QListWidget::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14766,7 +14766,7 @@ void PythonQtShell_QListWidget::currentChanged(const QModelIndex& current0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentChanged"); + static PyObject* name = PyUnicode_FromString("currentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&"}; @@ -14788,7 +14788,7 @@ void PythonQtShell_QListWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14810,7 +14810,7 @@ void PythonQtShell_QListWidget::dataChanged(const QModelIndex& topLeft0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dataChanged"); + static PyObject* name = PyUnicode_FromString("dataChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "const QModelIndex&" , "const QVector&"}; @@ -14832,7 +14832,7 @@ int PythonQtShell_QListWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14865,7 +14865,7 @@ void PythonQtShell_QListWidget::doItemsLayout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doItemsLayout"); + static PyObject* name = PyUnicode_FromString("doItemsLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14887,7 +14887,7 @@ void PythonQtShell_QListWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14909,7 +14909,7 @@ void PythonQtShell_QListWidget::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14931,7 +14931,7 @@ void PythonQtShell_QListWidget::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14953,7 +14953,7 @@ void PythonQtShell_QListWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14975,7 +14975,7 @@ bool PythonQtShell_QListWidget::dropMimeData(int index0, const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QMimeData*" , "Qt::DropAction"}; @@ -15008,7 +15008,7 @@ bool PythonQtShell_QListWidget::edit(const QModelIndex& index0, QAbstractItemV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("edit"); + static PyObject* name = PyUnicode_FromString("edit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "QAbstractItemView::EditTrigger" , "QEvent*"}; @@ -15041,7 +15041,7 @@ void PythonQtShell_QListWidget::editorDestroyed(QObject* editor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorDestroyed"); + static PyObject* name = PyUnicode_FromString("editorDestroyed"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -15063,7 +15063,7 @@ void PythonQtShell_QListWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15085,7 +15085,7 @@ bool PythonQtShell_QListWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -15118,7 +15118,7 @@ bool PythonQtShell_QListWidget::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -15151,7 +15151,7 @@ void PythonQtShell_QListWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15173,7 +15173,7 @@ bool PythonQtShell_QListWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -15206,7 +15206,7 @@ void PythonQtShell_QListWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -15228,7 +15228,7 @@ bool PythonQtShell_QListWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -15261,7 +15261,7 @@ int PythonQtShell_QListWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -15294,7 +15294,7 @@ void PythonQtShell_QListWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -15316,7 +15316,7 @@ int PythonQtShell_QListWidget::horizontalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalOffset"); + static PyObject* name = PyUnicode_FromString("horizontalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -15349,7 +15349,7 @@ void PythonQtShell_QListWidget::horizontalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15371,7 +15371,7 @@ void PythonQtShell_QListWidget::horizontalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("horizontalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("horizontalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -15393,7 +15393,7 @@ QModelIndex PythonQtShell_QListWidget::indexAt(const QPoint& p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexAt"); + static PyObject* name = PyUnicode_FromString("indexAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QPoint&"}; @@ -15426,7 +15426,7 @@ void PythonQtShell_QListWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -15448,7 +15448,7 @@ void PythonQtShell_QListWidget::inputMethodEvent(QInputMethodEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -15470,7 +15470,7 @@ QVariant PythonQtShell_QListWidget::inputMethodQuery(Qt::InputMethodQuery quer if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -15503,7 +15503,7 @@ bool PythonQtShell_QListWidget::isIndexHidden(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIndexHidden"); + static PyObject* name = PyUnicode_FromString("isIndexHidden"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -15536,7 +15536,7 @@ void PythonQtShell_QListWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15558,7 +15558,7 @@ void PythonQtShell_QListWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15580,7 +15580,7 @@ void PythonQtShell_QListWidget::keyboardSearch(const QString& search0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyboardSearch"); + static PyObject* name = PyUnicode_FromString("keyboardSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -15602,7 +15602,7 @@ void PythonQtShell_QListWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15624,7 +15624,7 @@ int PythonQtShell_QListWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15657,7 +15657,7 @@ QMimeData* PythonQtShell_QListWidget::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList"}; @@ -15690,7 +15690,7 @@ QStringList PythonQtShell_QListWidget::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -15723,7 +15723,7 @@ QSize PythonQtShell_QListWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15756,7 +15756,7 @@ void PythonQtShell_QListWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15778,7 +15778,7 @@ void PythonQtShell_QListWidget::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15800,7 +15800,7 @@ void PythonQtShell_QListWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15822,7 +15822,7 @@ void PythonQtShell_QListWidget::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15844,7 +15844,7 @@ QModelIndex PythonQtShell_QListWidget::moveCursor(QAbstractItemView::CursorActi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveCursor"); + static PyObject* name = PyUnicode_FromString("moveCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "QAbstractItemView::CursorAction" , "Qt::KeyboardModifiers"}; @@ -15877,7 +15877,7 @@ void PythonQtShell_QListWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15899,7 +15899,7 @@ bool PythonQtShell_QListWidget::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15932,7 +15932,7 @@ QPaintEngine* PythonQtShell_QListWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15965,7 +15965,7 @@ void PythonQtShell_QListWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15987,7 +15987,7 @@ QPaintDevice* PythonQtShell_QListWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -16020,7 +16020,7 @@ void PythonQtShell_QListWidget::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16042,7 +16042,7 @@ void PythonQtShell_QListWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -16064,7 +16064,7 @@ void PythonQtShell_QListWidget::rowsAboutToBeRemoved(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsAboutToBeRemoved"); + static PyObject* name = PyUnicode_FromString("rowsAboutToBeRemoved"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -16086,7 +16086,7 @@ void PythonQtShell_QListWidget::rowsInserted(const QModelIndex& parent0, int s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowsInserted"); + static PyObject* name = PyUnicode_FromString("rowsInserted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "int" , "int"}; @@ -16108,7 +16108,7 @@ void PythonQtShell_QListWidget::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -16130,7 +16130,7 @@ void PythonQtShell_QListWidget::scrollTo(const QModelIndex& index0, QAbstractIt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollTo"); + static PyObject* name = PyUnicode_FromString("scrollTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&" , "QAbstractItemView::ScrollHint"}; @@ -16152,7 +16152,7 @@ void PythonQtShell_QListWidget::selectAll() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectAll"); + static PyObject* name = PyUnicode_FromString("selectAll"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16174,7 +16174,7 @@ QList PythonQtShell_QListWidget::selectedIndexes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedIndexes"); + static PyObject* name = PyUnicode_FromString("selectedIndexes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -16207,7 +16207,7 @@ void PythonQtShell_QListWidget::selectionChanged(const QItemSelection& selected if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionChanged"); + static PyObject* name = PyUnicode_FromString("selectionChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QItemSelection&" , "const QItemSelection&"}; @@ -16229,7 +16229,7 @@ QItemSelectionModel::SelectionFlags PythonQtShell_QListWidget::selectionCommand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectionCommand"); + static PyObject* name = PyUnicode_FromString("selectionCommand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelectionModel::SelectionFlags" , "const QModelIndex&" , "const QEvent*"}; @@ -16262,7 +16262,7 @@ void PythonQtShell_QListWidget::setRootIndex(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRootIndex"); + static PyObject* name = PyUnicode_FromString("setRootIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -16284,7 +16284,7 @@ void PythonQtShell_QListWidget::setSelection(const QRect& rect0, QItemSelection if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelection"); + static PyObject* name = PyUnicode_FromString("setSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&" , "QItemSelectionModel::SelectionFlags"}; @@ -16306,7 +16306,7 @@ void PythonQtShell_QListWidget::setSelectionModel(QItemSelectionModel* selectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectionModel"); + static PyObject* name = PyUnicode_FromString("setSelectionModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QItemSelectionModel*"}; @@ -16328,7 +16328,7 @@ void PythonQtShell_QListWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -16350,7 +16350,7 @@ void PythonQtShell_QListWidget::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -16372,7 +16372,7 @@ QPainter* PythonQtShell_QListWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -16405,7 +16405,7 @@ void PythonQtShell_QListWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -16427,7 +16427,7 @@ QSize PythonQtShell_QListWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16460,7 +16460,7 @@ int PythonQtShell_QListWidget::sizeHintForColumn(int column0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForColumn"); + static PyObject* name = PyUnicode_FromString("sizeHintForColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16493,7 +16493,7 @@ int PythonQtShell_QListWidget::sizeHintForRow(int row0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHintForRow"); + static PyObject* name = PyUnicode_FromString("sizeHintForRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -16526,7 +16526,7 @@ void PythonQtShell_QListWidget::startDrag(Qt::DropActions supportedActions0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDrag"); + static PyObject* name = PyUnicode_FromString("startDrag"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::DropActions"}; @@ -16548,7 +16548,7 @@ Qt::DropActions PythonQtShell_QListWidget::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -16581,7 +16581,7 @@ void PythonQtShell_QListWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -16603,7 +16603,7 @@ void PythonQtShell_QListWidget::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -16625,7 +16625,7 @@ void PythonQtShell_QListWidget::updateEditorData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorData"); + static PyObject* name = PyUnicode_FromString("updateEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16647,7 +16647,7 @@ void PythonQtShell_QListWidget::updateEditorGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometries"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16669,7 +16669,7 @@ void PythonQtShell_QListWidget::updateGeometries() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometries"); + static PyObject* name = PyUnicode_FromString("updateGeometries"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -16691,7 +16691,7 @@ int PythonQtShell_QListWidget::verticalOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalOffset"); + static PyObject* name = PyUnicode_FromString("verticalOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -16724,7 +16724,7 @@ void PythonQtShell_QListWidget::verticalScrollbarAction(int action0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarAction"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16746,7 +16746,7 @@ void PythonQtShell_QListWidget::verticalScrollbarValueChanged(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("verticalScrollbarValueChanged"); + static PyObject* name = PyUnicode_FromString("verticalScrollbarValueChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -16768,7 +16768,7 @@ QStyleOptionViewItem PythonQtShell_QListWidget::viewOptions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewOptions"); + static PyObject* name = PyUnicode_FromString("viewOptions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyleOptionViewItem"}; @@ -16801,7 +16801,7 @@ bool PythonQtShell_QListWidget::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -16834,7 +16834,7 @@ QSize PythonQtShell_QListWidget::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -16867,7 +16867,7 @@ QRect PythonQtShell_QListWidget::visualRect(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRect"); + static PyObject* name = PyUnicode_FromString("visualRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QModelIndex&"}; @@ -16900,7 +16900,7 @@ QRegion PythonQtShell_QListWidget::visualRegionForSelection(const QItemSelectio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visualRegionForSelection"); + static PyObject* name = PyUnicode_FromString("visualRegionForSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRegion" , "const QItemSelection&"}; @@ -16933,7 +16933,7 @@ void PythonQtShell_QListWidget::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -17163,7 +17163,7 @@ QListWidgetItem* PythonQtShell_QListWidgetItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QListWidgetItem*"}; @@ -17196,7 +17196,7 @@ QVariant PythonQtShell_QListWidgetItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -17229,7 +17229,7 @@ void PythonQtShell_QListWidgetItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -17251,7 +17251,7 @@ void PythonQtShell_QListWidgetItem::setData(int role0, const QVariant& value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&"}; @@ -17273,7 +17273,7 @@ void PythonQtShell_QListWidgetItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp index 88a9fe78f..ab284b478 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui5.cpp @@ -101,7 +101,7 @@ void PythonQtShell_QMainWindow::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -123,7 +123,7 @@ void PythonQtShell_QMainWindow::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -145,7 +145,7 @@ void PythonQtShell_QMainWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -167,7 +167,7 @@ void PythonQtShell_QMainWindow::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -189,7 +189,7 @@ void PythonQtShell_QMainWindow::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -211,7 +211,7 @@ QMenu* PythonQtShell_QMainWindow::createPopupMenu() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createPopupMenu"); + static PyObject* name = PyUnicode_FromString("createPopupMenu"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMenu*"}; @@ -244,7 +244,7 @@ void PythonQtShell_QMainWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -266,7 +266,7 @@ int PythonQtShell_QMainWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -299,7 +299,7 @@ void PythonQtShell_QMainWindow::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -321,7 +321,7 @@ void PythonQtShell_QMainWindow::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -343,7 +343,7 @@ void PythonQtShell_QMainWindow::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -365,7 +365,7 @@ void PythonQtShell_QMainWindow::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -387,7 +387,7 @@ void PythonQtShell_QMainWindow::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -409,7 +409,7 @@ bool PythonQtShell_QMainWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -442,7 +442,7 @@ bool PythonQtShell_QMainWindow::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -475,7 +475,7 @@ void PythonQtShell_QMainWindow::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -497,7 +497,7 @@ bool PythonQtShell_QMainWindow::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -530,7 +530,7 @@ void PythonQtShell_QMainWindow::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -552,7 +552,7 @@ bool PythonQtShell_QMainWindow::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -585,7 +585,7 @@ int PythonQtShell_QMainWindow::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -618,7 +618,7 @@ void PythonQtShell_QMainWindow::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -640,7 +640,7 @@ void PythonQtShell_QMainWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -662,7 +662,7 @@ void PythonQtShell_QMainWindow::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -684,7 +684,7 @@ QVariant PythonQtShell_QMainWindow::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -717,7 +717,7 @@ void PythonQtShell_QMainWindow::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -739,7 +739,7 @@ void PythonQtShell_QMainWindow::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -761,7 +761,7 @@ void PythonQtShell_QMainWindow::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -783,7 +783,7 @@ int PythonQtShell_QMainWindow::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -816,7 +816,7 @@ QSize PythonQtShell_QMainWindow::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -849,7 +849,7 @@ void PythonQtShell_QMainWindow::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -871,7 +871,7 @@ void PythonQtShell_QMainWindow::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -893,7 +893,7 @@ void PythonQtShell_QMainWindow::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -915,7 +915,7 @@ void PythonQtShell_QMainWindow::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -937,7 +937,7 @@ void PythonQtShell_QMainWindow::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -959,7 +959,7 @@ bool PythonQtShell_QMainWindow::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -992,7 +992,7 @@ QPaintEngine* PythonQtShell_QMainWindow::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1025,7 +1025,7 @@ void PythonQtShell_QMainWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1047,7 +1047,7 @@ QPaintDevice* PythonQtShell_QMainWindow::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1080,7 +1080,7 @@ void PythonQtShell_QMainWindow::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1102,7 +1102,7 @@ void PythonQtShell_QMainWindow::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1124,7 +1124,7 @@ QPainter* PythonQtShell_QMainWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1157,7 +1157,7 @@ void PythonQtShell_QMainWindow::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1179,7 +1179,7 @@ QSize PythonQtShell_QMainWindow::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1212,7 +1212,7 @@ void PythonQtShell_QMainWindow::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1234,7 +1234,7 @@ void PythonQtShell_QMainWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1256,7 +1256,7 @@ void PythonQtShell_QMainWindow::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2056,7 +2056,7 @@ void PythonQtShell_QMdiArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2078,7 +2078,7 @@ void PythonQtShell_QMdiArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2100,7 +2100,7 @@ void PythonQtShell_QMdiArea::childEvent(QChildEvent* childEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2122,7 +2122,7 @@ void PythonQtShell_QMdiArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2144,7 +2144,7 @@ void PythonQtShell_QMdiArea::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2166,7 +2166,7 @@ void PythonQtShell_QMdiArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2188,7 +2188,7 @@ int PythonQtShell_QMdiArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2221,7 +2221,7 @@ void PythonQtShell_QMdiArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2243,7 +2243,7 @@ void PythonQtShell_QMdiArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2265,7 +2265,7 @@ void PythonQtShell_QMdiArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2287,7 +2287,7 @@ void PythonQtShell_QMdiArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2309,7 +2309,7 @@ void PythonQtShell_QMdiArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2331,7 +2331,7 @@ bool PythonQtShell_QMdiArea::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2364,7 +2364,7 @@ bool PythonQtShell_QMdiArea::eventFilter(QObject* object0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2397,7 +2397,7 @@ void PythonQtShell_QMdiArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2419,7 +2419,7 @@ bool PythonQtShell_QMdiArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2452,7 +2452,7 @@ void PythonQtShell_QMdiArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2474,7 +2474,7 @@ bool PythonQtShell_QMdiArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2507,7 +2507,7 @@ int PythonQtShell_QMdiArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2540,7 +2540,7 @@ void PythonQtShell_QMdiArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2562,7 +2562,7 @@ void PythonQtShell_QMdiArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2584,7 +2584,7 @@ void PythonQtShell_QMdiArea::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2606,7 +2606,7 @@ QVariant PythonQtShell_QMdiArea::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2639,7 +2639,7 @@ void PythonQtShell_QMdiArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2661,7 +2661,7 @@ void PythonQtShell_QMdiArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2683,7 +2683,7 @@ void PythonQtShell_QMdiArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2705,7 +2705,7 @@ int PythonQtShell_QMdiArea::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2738,7 +2738,7 @@ QSize PythonQtShell_QMdiArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2771,7 +2771,7 @@ void PythonQtShell_QMdiArea::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2793,7 +2793,7 @@ void PythonQtShell_QMdiArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2815,7 +2815,7 @@ void PythonQtShell_QMdiArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2837,7 +2837,7 @@ void PythonQtShell_QMdiArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2859,7 +2859,7 @@ void PythonQtShell_QMdiArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2881,7 +2881,7 @@ bool PythonQtShell_QMdiArea::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2914,7 +2914,7 @@ QPaintEngine* PythonQtShell_QMdiArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2947,7 +2947,7 @@ void PythonQtShell_QMdiArea::paintEvent(QPaintEvent* paintEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2969,7 +2969,7 @@ QPaintDevice* PythonQtShell_QMdiArea::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3002,7 +3002,7 @@ void PythonQtShell_QMdiArea::resizeEvent(QResizeEvent* resizeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3024,7 +3024,7 @@ void PythonQtShell_QMdiArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -3046,7 +3046,7 @@ void PythonQtShell_QMdiArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3068,7 +3068,7 @@ void PythonQtShell_QMdiArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -3090,7 +3090,7 @@ QPainter* PythonQtShell_QMdiArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3123,7 +3123,7 @@ void PythonQtShell_QMdiArea::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3145,7 +3145,7 @@ QSize PythonQtShell_QMdiArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3178,7 +3178,7 @@ void PythonQtShell_QMdiArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3200,7 +3200,7 @@ void PythonQtShell_QMdiArea::timerEvent(QTimerEvent* timerEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3222,7 +3222,7 @@ bool PythonQtShell_QMdiArea::viewportEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3255,7 +3255,7 @@ QSize PythonQtShell_QMdiArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3288,7 +3288,7 @@ void PythonQtShell_QMdiArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3448,7 +3448,7 @@ void PythonQtShell_QMdiSubWindow::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3470,7 +3470,7 @@ void PythonQtShell_QMdiSubWindow::changeEvent(QEvent* changeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3492,7 +3492,7 @@ void PythonQtShell_QMdiSubWindow::childEvent(QChildEvent* childEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3514,7 +3514,7 @@ void PythonQtShell_QMdiSubWindow::closeEvent(QCloseEvent* closeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3536,7 +3536,7 @@ void PythonQtShell_QMdiSubWindow::contextMenuEvent(QContextMenuEvent* contextMe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3558,7 +3558,7 @@ void PythonQtShell_QMdiSubWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3580,7 +3580,7 @@ int PythonQtShell_QMdiSubWindow::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3613,7 +3613,7 @@ void PythonQtShell_QMdiSubWindow::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3635,7 +3635,7 @@ void PythonQtShell_QMdiSubWindow::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3657,7 +3657,7 @@ void PythonQtShell_QMdiSubWindow::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3679,7 +3679,7 @@ void PythonQtShell_QMdiSubWindow::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3701,7 +3701,7 @@ void PythonQtShell_QMdiSubWindow::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3723,7 +3723,7 @@ bool PythonQtShell_QMdiSubWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3756,7 +3756,7 @@ bool PythonQtShell_QMdiSubWindow::eventFilter(QObject* object0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3789,7 +3789,7 @@ void PythonQtShell_QMdiSubWindow::focusInEvent(QFocusEvent* focusInEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3811,7 +3811,7 @@ bool PythonQtShell_QMdiSubWindow::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3844,7 +3844,7 @@ void PythonQtShell_QMdiSubWindow::focusOutEvent(QFocusEvent* focusOutEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3866,7 +3866,7 @@ bool PythonQtShell_QMdiSubWindow::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3899,7 +3899,7 @@ int PythonQtShell_QMdiSubWindow::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3932,7 +3932,7 @@ void PythonQtShell_QMdiSubWindow::hideEvent(QHideEvent* hideEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3954,7 +3954,7 @@ void PythonQtShell_QMdiSubWindow::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3976,7 +3976,7 @@ void PythonQtShell_QMdiSubWindow::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3998,7 +3998,7 @@ QVariant PythonQtShell_QMdiSubWindow::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4031,7 +4031,7 @@ void PythonQtShell_QMdiSubWindow::keyPressEvent(QKeyEvent* keyEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4053,7 +4053,7 @@ void PythonQtShell_QMdiSubWindow::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4075,7 +4075,7 @@ void PythonQtShell_QMdiSubWindow::leaveEvent(QEvent* leaveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4097,7 +4097,7 @@ int PythonQtShell_QMdiSubWindow::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4130,7 +4130,7 @@ QSize PythonQtShell_QMdiSubWindow::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4163,7 +4163,7 @@ void PythonQtShell_QMdiSubWindow::mouseDoubleClickEvent(QMouseEvent* mouseEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4185,7 +4185,7 @@ void PythonQtShell_QMdiSubWindow::mouseMoveEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4207,7 +4207,7 @@ void PythonQtShell_QMdiSubWindow::mousePressEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4229,7 +4229,7 @@ void PythonQtShell_QMdiSubWindow::mouseReleaseEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4251,7 +4251,7 @@ void PythonQtShell_QMdiSubWindow::moveEvent(QMoveEvent* moveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4273,7 +4273,7 @@ bool PythonQtShell_QMdiSubWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4306,7 +4306,7 @@ QPaintEngine* PythonQtShell_QMdiSubWindow::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4339,7 +4339,7 @@ void PythonQtShell_QMdiSubWindow::paintEvent(QPaintEvent* paintEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4361,7 +4361,7 @@ QPaintDevice* PythonQtShell_QMdiSubWindow::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4394,7 +4394,7 @@ void PythonQtShell_QMdiSubWindow::resizeEvent(QResizeEvent* resizeEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4416,7 +4416,7 @@ void PythonQtShell_QMdiSubWindow::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4438,7 +4438,7 @@ QPainter* PythonQtShell_QMdiSubWindow::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4471,7 +4471,7 @@ void PythonQtShell_QMdiSubWindow::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4493,7 +4493,7 @@ QSize PythonQtShell_QMdiSubWindow::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4526,7 +4526,7 @@ void PythonQtShell_QMdiSubWindow::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4548,7 +4548,7 @@ void PythonQtShell_QMdiSubWindow::timerEvent(QTimerEvent* timerEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4570,7 +4570,7 @@ void PythonQtShell_QMdiSubWindow::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4695,7 +4695,7 @@ void PythonQtShell_QMenu::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4717,7 +4717,7 @@ void PythonQtShell_QMenu::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4739,7 +4739,7 @@ void PythonQtShell_QMenu::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4761,7 +4761,7 @@ void PythonQtShell_QMenu::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4783,7 +4783,7 @@ void PythonQtShell_QMenu::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4805,7 +4805,7 @@ void PythonQtShell_QMenu::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4827,7 +4827,7 @@ int PythonQtShell_QMenu::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4860,7 +4860,7 @@ void PythonQtShell_QMenu::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4882,7 +4882,7 @@ void PythonQtShell_QMenu::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4904,7 +4904,7 @@ void PythonQtShell_QMenu::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -4926,7 +4926,7 @@ void PythonQtShell_QMenu::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -4948,7 +4948,7 @@ void PythonQtShell_QMenu::enterEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4970,7 +4970,7 @@ bool PythonQtShell_QMenu::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5003,7 +5003,7 @@ bool PythonQtShell_QMenu::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5036,7 +5036,7 @@ void PythonQtShell_QMenu::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5058,7 +5058,7 @@ bool PythonQtShell_QMenu::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5091,7 +5091,7 @@ void PythonQtShell_QMenu::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5113,7 +5113,7 @@ bool PythonQtShell_QMenu::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5146,7 +5146,7 @@ int PythonQtShell_QMenu::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5179,7 +5179,7 @@ void PythonQtShell_QMenu::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5201,7 +5201,7 @@ void PythonQtShell_QMenu::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5223,7 +5223,7 @@ void PythonQtShell_QMenu::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5245,7 +5245,7 @@ QVariant PythonQtShell_QMenu::inputMethodQuery(Qt::InputMethodQuery arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5278,7 +5278,7 @@ void PythonQtShell_QMenu::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5300,7 +5300,7 @@ void PythonQtShell_QMenu::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5322,7 +5322,7 @@ void PythonQtShell_QMenu::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5344,7 +5344,7 @@ int PythonQtShell_QMenu::metric(QPaintDevice::PaintDeviceMetric arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5377,7 +5377,7 @@ QSize PythonQtShell_QMenu::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5410,7 +5410,7 @@ void PythonQtShell_QMenu::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5432,7 +5432,7 @@ void PythonQtShell_QMenu::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5454,7 +5454,7 @@ void PythonQtShell_QMenu::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5476,7 +5476,7 @@ void PythonQtShell_QMenu::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5498,7 +5498,7 @@ void PythonQtShell_QMenu::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5520,7 +5520,7 @@ bool PythonQtShell_QMenu::nativeEvent(const QByteArray& eventType0, void* mes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5553,7 +5553,7 @@ QPaintEngine* PythonQtShell_QMenu::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5586,7 +5586,7 @@ void PythonQtShell_QMenu::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5608,7 +5608,7 @@ QPaintDevice* PythonQtShell_QMenu::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5641,7 +5641,7 @@ void PythonQtShell_QMenu::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5663,7 +5663,7 @@ void PythonQtShell_QMenu::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5685,7 +5685,7 @@ QPainter* PythonQtShell_QMenu::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5718,7 +5718,7 @@ void PythonQtShell_QMenu::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5740,7 +5740,7 @@ QSize PythonQtShell_QMenu::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5773,7 +5773,7 @@ void PythonQtShell_QMenu::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5795,7 +5795,7 @@ void PythonQtShell_QMenu::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5817,7 +5817,7 @@ void PythonQtShell_QMenu::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6076,7 +6076,7 @@ void PythonQtShell_QMenuBar::actionEvent(QActionEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6098,7 +6098,7 @@ void PythonQtShell_QMenuBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6120,7 +6120,7 @@ void PythonQtShell_QMenuBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6142,7 +6142,7 @@ void PythonQtShell_QMenuBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6164,7 +6164,7 @@ void PythonQtShell_QMenuBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6186,7 +6186,7 @@ void PythonQtShell_QMenuBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6208,7 +6208,7 @@ int PythonQtShell_QMenuBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6241,7 +6241,7 @@ void PythonQtShell_QMenuBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6263,7 +6263,7 @@ void PythonQtShell_QMenuBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6285,7 +6285,7 @@ void PythonQtShell_QMenuBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6307,7 +6307,7 @@ void PythonQtShell_QMenuBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6329,7 +6329,7 @@ void PythonQtShell_QMenuBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6351,7 +6351,7 @@ bool PythonQtShell_QMenuBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6384,7 +6384,7 @@ bool PythonQtShell_QMenuBar::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6417,7 +6417,7 @@ void PythonQtShell_QMenuBar::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6439,7 +6439,7 @@ bool PythonQtShell_QMenuBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6472,7 +6472,7 @@ void PythonQtShell_QMenuBar::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6494,7 +6494,7 @@ bool PythonQtShell_QMenuBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6527,7 +6527,7 @@ int PythonQtShell_QMenuBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6560,7 +6560,7 @@ void PythonQtShell_QMenuBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6582,7 +6582,7 @@ void PythonQtShell_QMenuBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6604,7 +6604,7 @@ void PythonQtShell_QMenuBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6626,7 +6626,7 @@ QVariant PythonQtShell_QMenuBar::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6659,7 +6659,7 @@ void PythonQtShell_QMenuBar::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6681,7 +6681,7 @@ void PythonQtShell_QMenuBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6703,7 +6703,7 @@ void PythonQtShell_QMenuBar::leaveEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6725,7 +6725,7 @@ int PythonQtShell_QMenuBar::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6758,7 +6758,7 @@ void PythonQtShell_QMenuBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6780,7 +6780,7 @@ void PythonQtShell_QMenuBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6802,7 +6802,7 @@ void PythonQtShell_QMenuBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6824,7 +6824,7 @@ void PythonQtShell_QMenuBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6846,7 +6846,7 @@ void PythonQtShell_QMenuBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6868,7 +6868,7 @@ bool PythonQtShell_QMenuBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6901,7 +6901,7 @@ QPaintEngine* PythonQtShell_QMenuBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6934,7 +6934,7 @@ void PythonQtShell_QMenuBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6956,7 +6956,7 @@ QPaintDevice* PythonQtShell_QMenuBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6989,7 +6989,7 @@ void PythonQtShell_QMenuBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7011,7 +7011,7 @@ void PythonQtShell_QMenuBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7033,7 +7033,7 @@ QPainter* PythonQtShell_QMenuBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7066,7 +7066,7 @@ void PythonQtShell_QMenuBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7088,7 +7088,7 @@ void PythonQtShell_QMenuBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7110,7 +7110,7 @@ void PythonQtShell_QMenuBar::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7132,7 +7132,7 @@ void PythonQtShell_QMenuBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7287,7 +7287,7 @@ void PythonQtShell_QMessageBox::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7309,7 +7309,7 @@ void PythonQtShell_QMessageBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7331,7 +7331,7 @@ void PythonQtShell_QMessageBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7353,7 +7353,7 @@ void PythonQtShell_QMessageBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7375,7 +7375,7 @@ void PythonQtShell_QMessageBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7397,7 +7397,7 @@ void PythonQtShell_QMessageBox::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7419,7 +7419,7 @@ void PythonQtShell_QMessageBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7441,7 +7441,7 @@ int PythonQtShell_QMessageBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7474,7 +7474,7 @@ void PythonQtShell_QMessageBox::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7496,7 +7496,7 @@ void PythonQtShell_QMessageBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7518,7 +7518,7 @@ void PythonQtShell_QMessageBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7540,7 +7540,7 @@ void PythonQtShell_QMessageBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7562,7 +7562,7 @@ void PythonQtShell_QMessageBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7584,7 +7584,7 @@ void PythonQtShell_QMessageBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7606,7 +7606,7 @@ bool PythonQtShell_QMessageBox::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7639,7 +7639,7 @@ bool PythonQtShell_QMessageBox::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7672,7 +7672,7 @@ int PythonQtShell_QMessageBox::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7705,7 +7705,7 @@ void PythonQtShell_QMessageBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7727,7 +7727,7 @@ bool PythonQtShell_QMessageBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7760,7 +7760,7 @@ void PythonQtShell_QMessageBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7782,7 +7782,7 @@ bool PythonQtShell_QMessageBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7815,7 +7815,7 @@ int PythonQtShell_QMessageBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7848,7 +7848,7 @@ void PythonQtShell_QMessageBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7870,7 +7870,7 @@ void PythonQtShell_QMessageBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7892,7 +7892,7 @@ void PythonQtShell_QMessageBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7914,7 +7914,7 @@ QVariant PythonQtShell_QMessageBox::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7947,7 +7947,7 @@ void PythonQtShell_QMessageBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7969,7 +7969,7 @@ void PythonQtShell_QMessageBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7991,7 +7991,7 @@ void PythonQtShell_QMessageBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8013,7 +8013,7 @@ int PythonQtShell_QMessageBox::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8046,7 +8046,7 @@ void PythonQtShell_QMessageBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8068,7 +8068,7 @@ void PythonQtShell_QMessageBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8090,7 +8090,7 @@ void PythonQtShell_QMessageBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8112,7 +8112,7 @@ void PythonQtShell_QMessageBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8134,7 +8134,7 @@ void PythonQtShell_QMessageBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8156,7 +8156,7 @@ bool PythonQtShell_QMessageBox::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8189,7 +8189,7 @@ QPaintEngine* PythonQtShell_QMessageBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8222,7 +8222,7 @@ void PythonQtShell_QMessageBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8244,7 +8244,7 @@ QPaintDevice* PythonQtShell_QMessageBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8277,7 +8277,7 @@ void PythonQtShell_QMessageBox::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8299,7 +8299,7 @@ void PythonQtShell_QMessageBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8321,7 +8321,7 @@ void PythonQtShell_QMessageBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8343,7 +8343,7 @@ QPainter* PythonQtShell_QMessageBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8376,7 +8376,7 @@ void PythonQtShell_QMessageBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8398,7 +8398,7 @@ void PythonQtShell_QMessageBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8420,7 +8420,7 @@ void PythonQtShell_QMessageBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8442,7 +8442,7 @@ void PythonQtShell_QMessageBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8798,7 +8798,7 @@ void PythonQtShell_QMouseEventTransition::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8820,7 +8820,7 @@ void PythonQtShell_QMouseEventTransition::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8842,7 +8842,7 @@ bool PythonQtShell_QMouseEventTransition::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8875,7 +8875,7 @@ bool PythonQtShell_QMouseEventTransition::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8908,7 +8908,7 @@ bool PythonQtShell_QMouseEventTransition::eventTest(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventTest"); + static PyObject* name = PyUnicode_FromString("eventTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8941,7 +8941,7 @@ void PythonQtShell_QMouseEventTransition::onTransition(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("onTransition"); + static PyObject* name = PyUnicode_FromString("onTransition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8963,7 +8963,7 @@ void PythonQtShell_QMouseEventTransition::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9062,7 +9062,7 @@ void PythonQtShell_QMovie::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9084,7 +9084,7 @@ void PythonQtShell_QMovie::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9106,7 +9106,7 @@ bool PythonQtShell_QMovie::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9139,7 +9139,7 @@ bool PythonQtShell_QMovie::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9172,7 +9172,7 @@ void PythonQtShell_QMovie::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9390,7 +9390,7 @@ void PythonQtShell_QOffscreenSurface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9412,7 +9412,7 @@ void PythonQtShell_QOffscreenSurface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9434,7 +9434,7 @@ bool PythonQtShell_QOffscreenSurface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9467,7 +9467,7 @@ bool PythonQtShell_QOffscreenSurface::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9500,7 +9500,7 @@ QSurfaceFormat PythonQtShell_QOffscreenSurface::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -9533,7 +9533,7 @@ QSize PythonQtShell_QOffscreenSurface::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9566,7 +9566,7 @@ QSurface::SurfaceType PythonQtShell_QOffscreenSurface::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -9599,7 +9599,7 @@ void PythonQtShell_QOffscreenSurface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9783,7 +9783,7 @@ void PythonQtShell_QOpenGLContext::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9805,7 +9805,7 @@ void PythonQtShell_QOpenGLContext::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9827,7 +9827,7 @@ bool PythonQtShell_QOpenGLContext::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9860,7 +9860,7 @@ bool PythonQtShell_QOpenGLContext::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9893,7 +9893,7 @@ void PythonQtShell_QOpenGLContext::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10320,7 +10320,7 @@ int PythonQtShell_QOpenGLPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10353,7 +10353,7 @@ void PythonQtShell_QOpenGLPaintDevice::ensureActiveTarget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ensureActiveTarget"); + static PyObject* name = PyUnicode_FromString("ensureActiveTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10375,7 +10375,7 @@ void PythonQtShell_QOpenGLPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10397,7 +10397,7 @@ int PythonQtShell_QOpenGLPaintDevice::metric(QPaintDevice::PaintDeviceMetric m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10430,7 +10430,7 @@ QPaintEngine* PythonQtShell_QOpenGLPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10463,7 +10463,7 @@ QPaintDevice* PythonQtShell_QOpenGLPaintDevice::redirected(QPoint* offset0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10496,7 +10496,7 @@ QPainter* PythonQtShell_QOpenGLPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10602,7 +10602,7 @@ void PythonQtShell_QOpenGLShader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10624,7 +10624,7 @@ void PythonQtShell_QOpenGLShader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10646,7 +10646,7 @@ bool PythonQtShell_QOpenGLShader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10679,7 +10679,7 @@ bool PythonQtShell_QOpenGLShader::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10712,7 +10712,7 @@ void PythonQtShell_QOpenGLShader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10807,7 +10807,7 @@ void PythonQtShell_QOpenGLShaderProgram::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10829,7 +10829,7 @@ void PythonQtShell_QOpenGLShaderProgram::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10851,7 +10851,7 @@ bool PythonQtShell_QOpenGLShaderProgram::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10884,7 +10884,7 @@ bool PythonQtShell_QOpenGLShaderProgram::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10917,7 +10917,7 @@ bool PythonQtShell_QOpenGLShaderProgram::link() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10950,7 +10950,7 @@ void PythonQtShell_QOpenGLShaderProgram::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11975,7 +11975,7 @@ void PythonQtShell_QOpenGLTimeMonitor::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11997,7 +11997,7 @@ void PythonQtShell_QOpenGLTimeMonitor::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12019,7 +12019,7 @@ bool PythonQtShell_QOpenGLTimeMonitor::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12052,7 +12052,7 @@ bool PythonQtShell_QOpenGLTimeMonitor::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12085,7 +12085,7 @@ void PythonQtShell_QOpenGLTimeMonitor::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12185,7 +12185,7 @@ void PythonQtShell_QOpenGLTimerQuery::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12207,7 +12207,7 @@ void PythonQtShell_QOpenGLTimerQuery::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12229,7 +12229,7 @@ bool PythonQtShell_QOpenGLTimerQuery::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12262,7 +12262,7 @@ bool PythonQtShell_QOpenGLTimerQuery::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12295,7 +12295,7 @@ void PythonQtShell_QOpenGLTimerQuery::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12449,7 +12449,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12471,7 +12471,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12493,7 +12493,7 @@ bool PythonQtShell_QOpenGLVertexArrayObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12526,7 +12526,7 @@ bool PythonQtShell_QOpenGLVertexArrayObject::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12559,7 +12559,7 @@ void PythonQtShell_QOpenGLVertexArrayObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12634,7 +12634,7 @@ void PythonQtShell_QOpenGLWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12656,7 +12656,7 @@ void PythonQtShell_QOpenGLWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12678,7 +12678,7 @@ void PythonQtShell_QOpenGLWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12700,7 +12700,7 @@ void PythonQtShell_QOpenGLWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12722,7 +12722,7 @@ void PythonQtShell_QOpenGLWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12744,7 +12744,7 @@ void PythonQtShell_QOpenGLWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12766,7 +12766,7 @@ int PythonQtShell_QOpenGLWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12799,7 +12799,7 @@ void PythonQtShell_QOpenGLWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12821,7 +12821,7 @@ void PythonQtShell_QOpenGLWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12843,7 +12843,7 @@ void PythonQtShell_QOpenGLWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12865,7 +12865,7 @@ void PythonQtShell_QOpenGLWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12887,7 +12887,7 @@ void PythonQtShell_QOpenGLWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12909,7 +12909,7 @@ bool PythonQtShell_QOpenGLWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12942,7 +12942,7 @@ bool PythonQtShell_QOpenGLWidget::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12975,7 +12975,7 @@ void PythonQtShell_QOpenGLWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12997,7 +12997,7 @@ bool PythonQtShell_QOpenGLWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13030,7 +13030,7 @@ void PythonQtShell_QOpenGLWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13052,7 +13052,7 @@ bool PythonQtShell_QOpenGLWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13085,7 +13085,7 @@ int PythonQtShell_QOpenGLWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13118,7 +13118,7 @@ void PythonQtShell_QOpenGLWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13140,7 +13140,7 @@ void PythonQtShell_QOpenGLWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13162,7 +13162,7 @@ void PythonQtShell_QOpenGLWidget::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13184,7 +13184,7 @@ void PythonQtShell_QOpenGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13206,7 +13206,7 @@ QVariant PythonQtShell_QOpenGLWidget::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13239,7 +13239,7 @@ void PythonQtShell_QOpenGLWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13261,7 +13261,7 @@ void PythonQtShell_QOpenGLWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13283,7 +13283,7 @@ void PythonQtShell_QOpenGLWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13305,7 +13305,7 @@ int PythonQtShell_QOpenGLWidget::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13338,7 +13338,7 @@ QSize PythonQtShell_QOpenGLWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13371,7 +13371,7 @@ void PythonQtShell_QOpenGLWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13393,7 +13393,7 @@ void PythonQtShell_QOpenGLWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13415,7 +13415,7 @@ void PythonQtShell_QOpenGLWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13437,7 +13437,7 @@ void PythonQtShell_QOpenGLWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13459,7 +13459,7 @@ void PythonQtShell_QOpenGLWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13481,7 +13481,7 @@ bool PythonQtShell_QOpenGLWidget::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13514,7 +13514,7 @@ QPaintEngine* PythonQtShell_QOpenGLWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13547,7 +13547,7 @@ void PythonQtShell_QOpenGLWidget::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13569,7 +13569,7 @@ void PythonQtShell_QOpenGLWidget::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -13591,7 +13591,7 @@ QPaintDevice* PythonQtShell_QOpenGLWidget::redirected(QPoint* p0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13624,7 +13624,7 @@ void PythonQtShell_QOpenGLWidget::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13646,7 +13646,7 @@ void PythonQtShell_QOpenGLWidget::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -13668,7 +13668,7 @@ void PythonQtShell_QOpenGLWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13690,7 +13690,7 @@ QPainter* PythonQtShell_QOpenGLWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13723,7 +13723,7 @@ void PythonQtShell_QOpenGLWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13745,7 +13745,7 @@ QSize PythonQtShell_QOpenGLWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13778,7 +13778,7 @@ void PythonQtShell_QOpenGLWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13800,7 +13800,7 @@ void PythonQtShell_QOpenGLWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13822,7 +13822,7 @@ void PythonQtShell_QOpenGLWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13932,7 +13932,7 @@ void PythonQtShell_QOpenGLWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13954,7 +13954,7 @@ void PythonQtShell_QOpenGLWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13976,7 +13976,7 @@ bool PythonQtShell_QOpenGLWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14009,7 +14009,7 @@ bool PythonQtShell_QOpenGLWindow::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14042,7 +14042,7 @@ void PythonQtShell_QOpenGLWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -14064,7 +14064,7 @@ void PythonQtShell_QOpenGLWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14086,7 +14086,7 @@ QObject* PythonQtShell_QOpenGLWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -14119,7 +14119,7 @@ void PythonQtShell_QOpenGLWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14141,7 +14141,7 @@ QSurfaceFormat PythonQtShell_QOpenGLWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -14174,7 +14174,7 @@ void PythonQtShell_QOpenGLWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14196,7 +14196,7 @@ void PythonQtShell_QOpenGLWindow::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14218,7 +14218,7 @@ void PythonQtShell_QOpenGLWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14240,7 +14240,7 @@ void PythonQtShell_QOpenGLWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -14262,7 +14262,7 @@ int PythonQtShell_QOpenGLWindow::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -14295,7 +14295,7 @@ void PythonQtShell_QOpenGLWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14317,7 +14317,7 @@ void PythonQtShell_QOpenGLWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14339,7 +14339,7 @@ void PythonQtShell_QOpenGLWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14361,7 +14361,7 @@ void PythonQtShell_QOpenGLWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -14383,7 +14383,7 @@ void PythonQtShell_QOpenGLWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -14405,7 +14405,7 @@ bool PythonQtShell_QOpenGLWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -14438,7 +14438,7 @@ void PythonQtShell_QOpenGLWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -14460,7 +14460,7 @@ void PythonQtShell_QOpenGLWindow::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14482,7 +14482,7 @@ void PythonQtShell_QOpenGLWindow::paintOverGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintOverGL"); + static PyObject* name = PyUnicode_FromString("paintOverGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14504,7 +14504,7 @@ void PythonQtShell_QOpenGLWindow::paintUnderGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintUnderGL"); + static PyObject* name = PyUnicode_FromString("paintUnderGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14526,7 +14526,7 @@ QPaintDevice* PythonQtShell_QOpenGLWindow::redirected(QPoint* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -14559,7 +14559,7 @@ void PythonQtShell_QOpenGLWindow::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -14581,7 +14581,7 @@ void PythonQtShell_QOpenGLWindow::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -14603,7 +14603,7 @@ void PythonQtShell_QOpenGLWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -14625,7 +14625,7 @@ QSize PythonQtShell_QOpenGLWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -14658,7 +14658,7 @@ QSurface::SurfaceType PythonQtShell_QOpenGLWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -14691,7 +14691,7 @@ void PythonQtShell_QOpenGLWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -14713,7 +14713,7 @@ void PythonQtShell_QOpenGLWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14735,7 +14735,7 @@ void PythonQtShell_QOpenGLWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -14757,7 +14757,7 @@ void PythonQtShell_QOpenGLWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp index e8817b4c7..fc524d9c1 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui6.cpp @@ -91,7 +91,7 @@ void PythonQtShell_QPageSetupDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -113,7 +113,7 @@ void PythonQtShell_QPageSetupDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -135,7 +135,7 @@ void PythonQtShell_QPageSetupDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -157,7 +157,7 @@ void PythonQtShell_QPageSetupDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -179,7 +179,7 @@ void PythonQtShell_QPageSetupDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -201,7 +201,7 @@ void PythonQtShell_QPageSetupDialog::contextMenuEvent(QContextMenuEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -223,7 +223,7 @@ void PythonQtShell_QPageSetupDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -245,7 +245,7 @@ int PythonQtShell_QPageSetupDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -278,7 +278,7 @@ void PythonQtShell_QPageSetupDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -300,7 +300,7 @@ void PythonQtShell_QPageSetupDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -322,7 +322,7 @@ void PythonQtShell_QPageSetupDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -344,7 +344,7 @@ void PythonQtShell_QPageSetupDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -366,7 +366,7 @@ void PythonQtShell_QPageSetupDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -388,7 +388,7 @@ void PythonQtShell_QPageSetupDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -410,7 +410,7 @@ bool PythonQtShell_QPageSetupDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -443,7 +443,7 @@ bool PythonQtShell_QPageSetupDialog::eventFilter(QObject* arg__1, QEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -476,7 +476,7 @@ int PythonQtShell_QPageSetupDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -509,7 +509,7 @@ void PythonQtShell_QPageSetupDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -531,7 +531,7 @@ bool PythonQtShell_QPageSetupDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -564,7 +564,7 @@ void PythonQtShell_QPageSetupDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -586,7 +586,7 @@ bool PythonQtShell_QPageSetupDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -619,7 +619,7 @@ int PythonQtShell_QPageSetupDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -652,7 +652,7 @@ void PythonQtShell_QPageSetupDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -674,7 +674,7 @@ void PythonQtShell_QPageSetupDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -696,7 +696,7 @@ void PythonQtShell_QPageSetupDialog::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -718,7 +718,7 @@ QVariant PythonQtShell_QPageSetupDialog::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -751,7 +751,7 @@ void PythonQtShell_QPageSetupDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -773,7 +773,7 @@ void PythonQtShell_QPageSetupDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -795,7 +795,7 @@ void PythonQtShell_QPageSetupDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -817,7 +817,7 @@ int PythonQtShell_QPageSetupDialog::metric(QPaintDevice::PaintDeviceMetric arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -850,7 +850,7 @@ void PythonQtShell_QPageSetupDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -872,7 +872,7 @@ void PythonQtShell_QPageSetupDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -894,7 +894,7 @@ void PythonQtShell_QPageSetupDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -916,7 +916,7 @@ void PythonQtShell_QPageSetupDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -938,7 +938,7 @@ void PythonQtShell_QPageSetupDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -960,7 +960,7 @@ bool PythonQtShell_QPageSetupDialog::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -993,7 +993,7 @@ QPaintEngine* PythonQtShell_QPageSetupDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1026,7 +1026,7 @@ void PythonQtShell_QPageSetupDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1048,7 +1048,7 @@ QPaintDevice* PythonQtShell_QPageSetupDialog::redirected(QPoint* offset0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1081,7 +1081,7 @@ void PythonQtShell_QPageSetupDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1103,7 +1103,7 @@ void PythonQtShell_QPageSetupDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1125,7 +1125,7 @@ void PythonQtShell_QPageSetupDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1147,7 +1147,7 @@ QPainter* PythonQtShell_QPageSetupDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1180,7 +1180,7 @@ void PythonQtShell_QPageSetupDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1202,7 +1202,7 @@ void PythonQtShell_QPageSetupDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1224,7 +1224,7 @@ void PythonQtShell_QPageSetupDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1246,7 +1246,7 @@ void PythonQtShell_QPageSetupDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1474,7 +1474,7 @@ int PythonQtShell_QPagedPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1507,7 +1507,7 @@ void PythonQtShell_QPagedPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1529,7 +1529,7 @@ int PythonQtShell_QPagedPaintDevice::metric(QPaintDevice::PaintDeviceMetric me if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1562,7 +1562,7 @@ bool PythonQtShell_QPagedPaintDevice::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1595,7 +1595,7 @@ QPaintEngine* PythonQtShell_QPagedPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1628,7 +1628,7 @@ QPaintDevice* PythonQtShell_QPagedPaintDevice::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1661,7 +1661,7 @@ void PythonQtShell_QPagedPaintDevice::setMargins(const QPagedPaintDevice::Margin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -1683,7 +1683,7 @@ void PythonQtShell_QPagedPaintDevice::setPageSize(QPagedPaintDevice::PageSize s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -1705,7 +1705,7 @@ void PythonQtShell_QPagedPaintDevice::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -1727,7 +1727,7 @@ QPainter* PythonQtShell_QPagedPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1850,7 +1850,7 @@ int PythonQtShell_QPaintDevice::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1883,7 +1883,7 @@ void PythonQtShell_QPaintDevice::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1905,7 +1905,7 @@ int PythonQtShell_QPaintDevice::metric(QPaintDevice::PaintDeviceMetric metric0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1938,7 +1938,7 @@ QPaintEngine* PythonQtShell_QPaintDevice::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1971,7 +1971,7 @@ QPaintDevice* PythonQtShell_QPaintDevice::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2004,7 +2004,7 @@ QPainter* PythonQtShell_QPaintDevice::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2164,7 +2164,7 @@ bool PythonQtShell_QPaintEngine::begin(QPaintDevice* pdev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("begin"); + static PyObject* name = PyUnicode_FromString("begin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QPaintDevice*"}; @@ -2197,7 +2197,7 @@ QPoint PythonQtShell_QPaintEngine::coordinateOffset() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("coordinateOffset"); + static PyObject* name = PyUnicode_FromString("coordinateOffset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPoint"}; @@ -2230,7 +2230,7 @@ void PythonQtShell_QPaintEngine::drawEllipse(const QRect& r0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2252,7 +2252,7 @@ void PythonQtShell_QPaintEngine::drawEllipse(const QRectF& r0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawEllipse"); + static PyObject* name = PyUnicode_FromString("drawEllipse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -2274,7 +2274,7 @@ void PythonQtShell_QPaintEngine::drawImage(const QRectF& r0, const QImage& pm1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawImage"); + static PyObject* name = PyUnicode_FromString("drawImage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QImage&" , "const QRectF&" , "Qt::ImageConversionFlags"}; @@ -2296,7 +2296,7 @@ void PythonQtShell_QPaintEngine::drawLines(const QLine* lines0, int lineCount1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLine*" , "int"}; @@ -2318,7 +2318,7 @@ void PythonQtShell_QPaintEngine::drawLines(const QLineF* lines0, int lineCount if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawLines"); + static PyObject* name = PyUnicode_FromString("drawLines"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QLineF*" , "int"}; @@ -2340,7 +2340,7 @@ void PythonQtShell_QPaintEngine::drawPath(const QPainterPath& path0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPath"); + static PyObject* name = PyUnicode_FromString("drawPath"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPainterPath&"}; @@ -2362,7 +2362,7 @@ void PythonQtShell_QPaintEngine::drawPixmap(const QRectF& r0, const QPixmap& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPixmap"); + static PyObject* name = PyUnicode_FromString("drawPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QRectF&"}; @@ -2384,7 +2384,7 @@ void PythonQtShell_QPaintEngine::drawPoints(const QPoint* points0, int pointCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int"}; @@ -2406,7 +2406,7 @@ void PythonQtShell_QPaintEngine::drawPoints(const QPointF* points0, int pointC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPoints"); + static PyObject* name = PyUnicode_FromString("drawPoints"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int"}; @@ -2428,7 +2428,7 @@ void PythonQtShell_QPaintEngine::drawPolygon(const QPoint* points0, int pointC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPoint*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -2450,7 +2450,7 @@ void PythonQtShell_QPaintEngine::drawPolygon(const QPointF* points0, int point if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPolygon"); + static PyObject* name = PyUnicode_FromString("drawPolygon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF*" , "int" , "QPaintEngine::PolygonDrawMode"}; @@ -2472,7 +2472,7 @@ void PythonQtShell_QPaintEngine::drawRects(const QRect* rects0, int rectCount1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect*" , "int"}; @@ -2494,7 +2494,7 @@ void PythonQtShell_QPaintEngine::drawRects(const QRectF* rects0, int rectCount if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawRects"); + static PyObject* name = PyUnicode_FromString("drawRects"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF*" , "int"}; @@ -2516,7 +2516,7 @@ void PythonQtShell_QPaintEngine::drawTextItem(const QPointF& p0, const QTextIte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawTextItem"); + static PyObject* name = PyUnicode_FromString("drawTextItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&" , "const QTextItem&"}; @@ -2538,7 +2538,7 @@ void PythonQtShell_QPaintEngine::drawTiledPixmap(const QRectF& r0, const QPixma if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawTiledPixmap"); + static PyObject* name = PyUnicode_FromString("drawTiledPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QPixmap&" , "const QPointF&"}; @@ -2560,7 +2560,7 @@ bool PythonQtShell_QPaintEngine::end() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("end"); + static PyObject* name = PyUnicode_FromString("end"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2593,7 +2593,7 @@ QPaintEngine::Type PythonQtShell_QPaintEngine::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine::Type"}; @@ -2626,7 +2626,7 @@ void PythonQtShell_QPaintEngine::updateState(const QPaintEngineState& state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateState"); + static PyObject* name = PyUnicode_FromString("updateState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPaintEngineState&"}; @@ -4468,7 +4468,7 @@ void PythonQtShell_QPanGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4490,7 +4490,7 @@ void PythonQtShell_QPanGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4512,7 +4512,7 @@ bool PythonQtShell_QPanGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4545,7 +4545,7 @@ bool PythonQtShell_QPanGesture::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4578,7 +4578,7 @@ void PythonQtShell_QPanGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4658,7 +4658,7 @@ void PythonQtShell_QPdfWriter::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4680,7 +4680,7 @@ void PythonQtShell_QPdfWriter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4702,7 +4702,7 @@ int PythonQtShell_QPdfWriter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4735,7 +4735,7 @@ bool PythonQtShell_QPdfWriter::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4768,7 +4768,7 @@ bool PythonQtShell_QPdfWriter::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4801,7 +4801,7 @@ void PythonQtShell_QPdfWriter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -4823,7 +4823,7 @@ int PythonQtShell_QPdfWriter::metric(QPaintDevice::PaintDeviceMetric id0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4856,7 +4856,7 @@ bool PythonQtShell_QPdfWriter::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4889,7 +4889,7 @@ QPaintEngine* PythonQtShell_QPdfWriter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4922,7 +4922,7 @@ QPaintDevice* PythonQtShell_QPdfWriter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4955,7 +4955,7 @@ void PythonQtShell_QPdfWriter::setMargins(const QPagedPaintDevice::Margins& m0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -4977,7 +4977,7 @@ void PythonQtShell_QPdfWriter::setPageSize(QPagedPaintDevice::PageSize size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -4999,7 +4999,7 @@ void PythonQtShell_QPdfWriter::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -5021,7 +5021,7 @@ QPainter* PythonQtShell_QPdfWriter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5054,7 +5054,7 @@ void PythonQtShell_QPdfWriter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5133,7 +5133,7 @@ int PythonQtShell_QPicture::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5166,7 +5166,7 @@ void PythonQtShell_QPicture::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5188,7 +5188,7 @@ int PythonQtShell_QPicture::metric(QPaintDevice::PaintDeviceMetric m0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5221,7 +5221,7 @@ QPaintEngine* PythonQtShell_QPicture::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5254,7 +5254,7 @@ QPaintDevice* PythonQtShell_QPicture::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5287,7 +5287,7 @@ QPainter* PythonQtShell_QPicture::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5399,7 +5399,7 @@ void PythonQtShell_QPictureFormatPlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5421,7 +5421,7 @@ void PythonQtShell_QPictureFormatPlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5443,7 +5443,7 @@ bool PythonQtShell_QPictureFormatPlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5476,7 +5476,7 @@ bool PythonQtShell_QPictureFormatPlugin::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5509,7 +5509,7 @@ bool PythonQtShell_QPictureFormatPlugin::installIOHandler(const QString& forma if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("installIOHandler"); + static PyObject* name = PyUnicode_FromString("installIOHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5542,7 +5542,7 @@ bool PythonQtShell_QPictureFormatPlugin::loadPicture(const QString& format0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadPicture"); + static PyObject* name = PyUnicode_FromString("loadPicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QPicture*"}; @@ -5575,7 +5575,7 @@ bool PythonQtShell_QPictureFormatPlugin::savePicture(const QString& format0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("savePicture"); + static PyObject* name = PyUnicode_FromString("savePicture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QPicture&"}; @@ -5608,7 +5608,7 @@ void PythonQtShell_QPictureFormatPlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5802,7 +5802,7 @@ void PythonQtShell_QPinchGesture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5824,7 +5824,7 @@ void PythonQtShell_QPinchGesture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5846,7 +5846,7 @@ bool PythonQtShell_QPinchGesture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5879,7 +5879,7 @@ bool PythonQtShell_QPinchGesture::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5912,7 +5912,7 @@ void PythonQtShell_QPinchGesture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6277,7 +6277,7 @@ QRectF PythonQtShell_QPlainTextDocumentLayout::blockBoundingRect(const QTextBlo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("blockBoundingRect"); + static PyObject* name = PyUnicode_FromString("blockBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "const QTextBlock&"}; @@ -6310,7 +6310,7 @@ void PythonQtShell_QPlainTextDocumentLayout::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6332,7 +6332,7 @@ void PythonQtShell_QPlainTextDocumentLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6354,7 +6354,7 @@ void PythonQtShell_QPlainTextDocumentLayout::documentChanged(int from0, int ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentChanged"); + static PyObject* name = PyUnicode_FromString("documentChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int" , "int"}; @@ -6376,7 +6376,7 @@ QSizeF PythonQtShell_QPlainTextDocumentLayout::documentSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentSize"); + static PyObject* name = PyUnicode_FromString("documentSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF"}; @@ -6409,7 +6409,7 @@ void PythonQtShell_QPlainTextDocumentLayout::draw(QPainter* arg__1, const QAbst if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("draw"); + static PyObject* name = PyUnicode_FromString("draw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QAbstractTextDocumentLayout::PaintContext&"}; @@ -6431,7 +6431,7 @@ void PythonQtShell_QPlainTextDocumentLayout::drawInlineObject(QPainter* painter if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawInlineObject"); + static PyObject* name = PyUnicode_FromString("drawInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRectF&" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -6453,7 +6453,7 @@ bool PythonQtShell_QPlainTextDocumentLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6486,7 +6486,7 @@ bool PythonQtShell_QPlainTextDocumentLayout::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6519,7 +6519,7 @@ QRectF PythonQtShell_QPlainTextDocumentLayout::frameBoundingRect(QTextFrame* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frameBoundingRect"); + static PyObject* name = PyUnicode_FromString("frameBoundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF" , "QTextFrame*"}; @@ -6552,7 +6552,7 @@ int PythonQtShell_QPlainTextDocumentLayout::hitTest(const QPointF& arg__1, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTest"); + static PyObject* name = PyUnicode_FromString("hitTest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QPointF&" , "Qt::HitTestAccuracy"}; @@ -6585,7 +6585,7 @@ int PythonQtShell_QPlainTextDocumentLayout::pageCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pageCount"); + static PyObject* name = PyUnicode_FromString("pageCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6618,7 +6618,7 @@ void PythonQtShell_QPlainTextDocumentLayout::positionInlineObject(QTextInlineObj if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("positionInlineObject"); + static PyObject* name = PyUnicode_FromString("positionInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -6640,7 +6640,7 @@ void PythonQtShell_QPlainTextDocumentLayout::resizeInlineObject(QTextInlineObjec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeInlineObject"); + static PyObject* name = PyUnicode_FromString("resizeInlineObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTextInlineObject" , "int" , "const QTextFormat&"}; @@ -6662,7 +6662,7 @@ void PythonQtShell_QPlainTextDocumentLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6727,7 +6727,7 @@ void PythonQtShell_QPlainTextEdit::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6749,7 +6749,7 @@ bool PythonQtShell_QPlainTextEdit::canInsertFromMimeData(const QMimeData* sour if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canInsertFromMimeData"); + static PyObject* name = PyUnicode_FromString("canInsertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*"}; @@ -6782,7 +6782,7 @@ void PythonQtShell_QPlainTextEdit::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6804,7 +6804,7 @@ void PythonQtShell_QPlainTextEdit::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6826,7 +6826,7 @@ void PythonQtShell_QPlainTextEdit::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6848,7 +6848,7 @@ void PythonQtShell_QPlainTextEdit::contextMenuEvent(QContextMenuEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6870,7 +6870,7 @@ QMimeData* PythonQtShell_QPlainTextEdit::createMimeDataFromSelection() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createMimeDataFromSelection"); + static PyObject* name = PyUnicode_FromString("createMimeDataFromSelection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*"}; @@ -6903,7 +6903,7 @@ void PythonQtShell_QPlainTextEdit::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6925,7 +6925,7 @@ int PythonQtShell_QPlainTextEdit::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6958,7 +6958,7 @@ void PythonQtShell_QPlainTextEdit::doSetTextCursor(const QTextCursor& cursor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doSetTextCursor"); + static PyObject* name = PyUnicode_FromString("doSetTextCursor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QTextCursor&"}; @@ -6980,7 +6980,7 @@ void PythonQtShell_QPlainTextEdit::dragEnterEvent(QDragEnterEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7002,7 +7002,7 @@ void PythonQtShell_QPlainTextEdit::dragLeaveEvent(QDragLeaveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7024,7 +7024,7 @@ void PythonQtShell_QPlainTextEdit::dragMoveEvent(QDragMoveEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7046,7 +7046,7 @@ void PythonQtShell_QPlainTextEdit::dropEvent(QDropEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7068,7 +7068,7 @@ void PythonQtShell_QPlainTextEdit::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7090,7 +7090,7 @@ bool PythonQtShell_QPlainTextEdit::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7123,7 +7123,7 @@ bool PythonQtShell_QPlainTextEdit::eventFilter(QObject* arg__1, QEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7156,7 +7156,7 @@ void PythonQtShell_QPlainTextEdit::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7178,7 +7178,7 @@ bool PythonQtShell_QPlainTextEdit::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7211,7 +7211,7 @@ void PythonQtShell_QPlainTextEdit::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7233,7 +7233,7 @@ bool PythonQtShell_QPlainTextEdit::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7266,7 +7266,7 @@ int PythonQtShell_QPlainTextEdit::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7299,7 +7299,7 @@ void PythonQtShell_QPlainTextEdit::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7321,7 +7321,7 @@ void PythonQtShell_QPlainTextEdit::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7343,7 +7343,7 @@ void PythonQtShell_QPlainTextEdit::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7365,7 +7365,7 @@ QVariant PythonQtShell_QPlainTextEdit::inputMethodQuery(Qt::InputMethodQuery p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7398,7 +7398,7 @@ void PythonQtShell_QPlainTextEdit::insertFromMimeData(const QMimeData* source0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertFromMimeData"); + static PyObject* name = PyUnicode_FromString("insertFromMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMimeData*"}; @@ -7420,7 +7420,7 @@ void PythonQtShell_QPlainTextEdit::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7442,7 +7442,7 @@ void PythonQtShell_QPlainTextEdit::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7464,7 +7464,7 @@ void PythonQtShell_QPlainTextEdit::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7486,7 +7486,7 @@ QVariant PythonQtShell_QPlainTextEdit::loadResource(int type0, const QUrl& na if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("loadResource"); + static PyObject* name = PyUnicode_FromString("loadResource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QUrl&"}; @@ -7519,7 +7519,7 @@ int PythonQtShell_QPlainTextEdit::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7552,7 +7552,7 @@ QSize PythonQtShell_QPlainTextEdit::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7585,7 +7585,7 @@ void PythonQtShell_QPlainTextEdit::mouseDoubleClickEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7607,7 +7607,7 @@ void PythonQtShell_QPlainTextEdit::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7629,7 +7629,7 @@ void PythonQtShell_QPlainTextEdit::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7651,7 +7651,7 @@ void PythonQtShell_QPlainTextEdit::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7673,7 +7673,7 @@ void PythonQtShell_QPlainTextEdit::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -7695,7 +7695,7 @@ bool PythonQtShell_QPlainTextEdit::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -7728,7 +7728,7 @@ QPaintEngine* PythonQtShell_QPlainTextEdit::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -7761,7 +7761,7 @@ void PythonQtShell_QPlainTextEdit::paintEvent(QPaintEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -7783,7 +7783,7 @@ QPaintDevice* PythonQtShell_QPlainTextEdit::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -7816,7 +7816,7 @@ void PythonQtShell_QPlainTextEdit::resizeEvent(QResizeEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7838,7 +7838,7 @@ void PythonQtShell_QPlainTextEdit::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -7860,7 +7860,7 @@ void PythonQtShell_QPlainTextEdit::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7882,7 +7882,7 @@ void PythonQtShell_QPlainTextEdit::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -7904,7 +7904,7 @@ QPainter* PythonQtShell_QPlainTextEdit::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7937,7 +7937,7 @@ void PythonQtShell_QPlainTextEdit::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7959,7 +7959,7 @@ QSize PythonQtShell_QPlainTextEdit::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7992,7 +7992,7 @@ void PythonQtShell_QPlainTextEdit::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8014,7 +8014,7 @@ void PythonQtShell_QPlainTextEdit::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8036,7 +8036,7 @@ bool PythonQtShell_QPlainTextEdit::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8069,7 +8069,7 @@ QSize PythonQtShell_QPlainTextEdit::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8102,7 +8102,7 @@ void PythonQtShell_QPlainTextEdit::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8849,7 +8849,7 @@ void PythonQtShell_QPrintDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8871,7 +8871,7 @@ void PythonQtShell_QPrintDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -8893,7 +8893,7 @@ void PythonQtShell_QPrintDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8915,7 +8915,7 @@ void PythonQtShell_QPrintDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8937,7 +8937,7 @@ void PythonQtShell_QPrintDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -8959,7 +8959,7 @@ void PythonQtShell_QPrintDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -8981,7 +8981,7 @@ void PythonQtShell_QPrintDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9003,7 +9003,7 @@ int PythonQtShell_QPrintDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9036,7 +9036,7 @@ void PythonQtShell_QPrintDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -9058,7 +9058,7 @@ void PythonQtShell_QPrintDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9080,7 +9080,7 @@ void PythonQtShell_QPrintDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9102,7 +9102,7 @@ void PythonQtShell_QPrintDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9124,7 +9124,7 @@ void PythonQtShell_QPrintDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9146,7 +9146,7 @@ void PythonQtShell_QPrintDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9168,7 +9168,7 @@ bool PythonQtShell_QPrintDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9201,7 +9201,7 @@ bool PythonQtShell_QPrintDialog::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9234,7 +9234,7 @@ int PythonQtShell_QPrintDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9267,7 +9267,7 @@ void PythonQtShell_QPrintDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9289,7 +9289,7 @@ bool PythonQtShell_QPrintDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9322,7 +9322,7 @@ void PythonQtShell_QPrintDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9344,7 +9344,7 @@ bool PythonQtShell_QPrintDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9377,7 +9377,7 @@ int PythonQtShell_QPrintDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9410,7 +9410,7 @@ void PythonQtShell_QPrintDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9432,7 +9432,7 @@ void PythonQtShell_QPrintDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9454,7 +9454,7 @@ void PythonQtShell_QPrintDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9476,7 +9476,7 @@ QVariant PythonQtShell_QPrintDialog::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9509,7 +9509,7 @@ void PythonQtShell_QPrintDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9531,7 +9531,7 @@ void PythonQtShell_QPrintDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9553,7 +9553,7 @@ void PythonQtShell_QPrintDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9575,7 +9575,7 @@ int PythonQtShell_QPrintDialog::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9608,7 +9608,7 @@ void PythonQtShell_QPrintDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9630,7 +9630,7 @@ void PythonQtShell_QPrintDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9652,7 +9652,7 @@ void PythonQtShell_QPrintDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9674,7 +9674,7 @@ void PythonQtShell_QPrintDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -9696,7 +9696,7 @@ void PythonQtShell_QPrintDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -9718,7 +9718,7 @@ bool PythonQtShell_QPrintDialog::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -9751,7 +9751,7 @@ QPaintEngine* PythonQtShell_QPrintDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -9784,7 +9784,7 @@ void PythonQtShell_QPrintDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -9806,7 +9806,7 @@ QPaintDevice* PythonQtShell_QPrintDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -9839,7 +9839,7 @@ void PythonQtShell_QPrintDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -9861,7 +9861,7 @@ void PythonQtShell_QPrintDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -9883,7 +9883,7 @@ void PythonQtShell_QPrintDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -9905,7 +9905,7 @@ QPainter* PythonQtShell_QPrintDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -9938,7 +9938,7 @@ void PythonQtShell_QPrintDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -9960,7 +9960,7 @@ void PythonQtShell_QPrintDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9982,7 +9982,7 @@ void PythonQtShell_QPrintDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10004,7 +10004,7 @@ void PythonQtShell_QPrintDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10078,7 +10078,7 @@ bool PythonQtShell_QPrintEngine::abort() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10111,7 +10111,7 @@ int PythonQtShell_QPrintEngine::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10144,7 +10144,7 @@ bool PythonQtShell_QPrintEngine::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10177,7 +10177,7 @@ QPrinter::PrinterState PythonQtShell_QPrintEngine::printerState() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("printerState"); + static PyObject* name = PyUnicode_FromString("printerState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPrinter::PrinterState"}; @@ -10210,7 +10210,7 @@ QVariant PythonQtShell_QPrintEngine::property(QPrintEngine::PrintEngineProperty if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QPrintEngine::PrintEnginePropertyKey"}; @@ -10243,7 +10243,7 @@ void PythonQtShell_QPrintEngine::setProperty(QPrintEngine::PrintEnginePropertyKe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPrintEngine::PrintEnginePropertyKey" , "const QVariant&"}; @@ -10305,7 +10305,7 @@ void PythonQtShell_QPrintPreviewDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -10327,7 +10327,7 @@ void PythonQtShell_QPrintPreviewDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -10349,7 +10349,7 @@ void PythonQtShell_QPrintPreviewDialog::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10371,7 +10371,7 @@ void PythonQtShell_QPrintPreviewDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10393,7 +10393,7 @@ void PythonQtShell_QPrintPreviewDialog::closeEvent(QCloseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10415,7 +10415,7 @@ void PythonQtShell_QPrintPreviewDialog::contextMenuEvent(QContextMenuEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10437,7 +10437,7 @@ void PythonQtShell_QPrintPreviewDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10459,7 +10459,7 @@ int PythonQtShell_QPrintPreviewDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10492,7 +10492,7 @@ void PythonQtShell_QPrintPreviewDialog::done(int result0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -10514,7 +10514,7 @@ void PythonQtShell_QPrintPreviewDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10536,7 +10536,7 @@ void PythonQtShell_QPrintPreviewDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10558,7 +10558,7 @@ void PythonQtShell_QPrintPreviewDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10580,7 +10580,7 @@ void PythonQtShell_QPrintPreviewDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10602,7 +10602,7 @@ void PythonQtShell_QPrintPreviewDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10624,7 +10624,7 @@ bool PythonQtShell_QPrintPreviewDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10657,7 +10657,7 @@ bool PythonQtShell_QPrintPreviewDialog::eventFilter(QObject* arg__1, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10690,7 +10690,7 @@ int PythonQtShell_QPrintPreviewDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10723,7 +10723,7 @@ void PythonQtShell_QPrintPreviewDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10745,7 +10745,7 @@ bool PythonQtShell_QPrintPreviewDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10778,7 +10778,7 @@ void PythonQtShell_QPrintPreviewDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10800,7 +10800,7 @@ bool PythonQtShell_QPrintPreviewDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10833,7 +10833,7 @@ int PythonQtShell_QPrintPreviewDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10866,7 +10866,7 @@ void PythonQtShell_QPrintPreviewDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10888,7 +10888,7 @@ void PythonQtShell_QPrintPreviewDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10910,7 +10910,7 @@ void PythonQtShell_QPrintPreviewDialog::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10932,7 +10932,7 @@ QVariant PythonQtShell_QPrintPreviewDialog::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10965,7 +10965,7 @@ void PythonQtShell_QPrintPreviewDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10987,7 +10987,7 @@ void PythonQtShell_QPrintPreviewDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11009,7 +11009,7 @@ void PythonQtShell_QPrintPreviewDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11031,7 +11031,7 @@ int PythonQtShell_QPrintPreviewDialog::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -11064,7 +11064,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseDoubleClickEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11086,7 +11086,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11108,7 +11108,7 @@ void PythonQtShell_QPrintPreviewDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11130,7 +11130,7 @@ void PythonQtShell_QPrintPreviewDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -11152,7 +11152,7 @@ void PythonQtShell_QPrintPreviewDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -11174,7 +11174,7 @@ bool PythonQtShell_QPrintPreviewDialog::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -11207,7 +11207,7 @@ QPaintEngine* PythonQtShell_QPrintPreviewDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -11240,7 +11240,7 @@ void PythonQtShell_QPrintPreviewDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -11262,7 +11262,7 @@ QPaintDevice* PythonQtShell_QPrintPreviewDialog::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -11295,7 +11295,7 @@ void PythonQtShell_QPrintPreviewDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11317,7 +11317,7 @@ void PythonQtShell_QPrintPreviewDialog::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -11339,7 +11339,7 @@ void PythonQtShell_QPrintPreviewDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -11361,7 +11361,7 @@ QPainter* PythonQtShell_QPrintPreviewDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -11394,7 +11394,7 @@ void PythonQtShell_QPrintPreviewDialog::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11416,7 +11416,7 @@ void PythonQtShell_QPrintPreviewDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11438,7 +11438,7 @@ void PythonQtShell_QPrintPreviewDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11460,7 +11460,7 @@ void PythonQtShell_QPrintPreviewDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp index 6100ee817..2d3e4538c 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui7.cpp @@ -88,7 +88,7 @@ void PythonQtShell_QPrintPreviewWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -110,7 +110,7 @@ void PythonQtShell_QPrintPreviewWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -132,7 +132,7 @@ void PythonQtShell_QPrintPreviewWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -154,7 +154,7 @@ void PythonQtShell_QPrintPreviewWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -176,7 +176,7 @@ void PythonQtShell_QPrintPreviewWidget::contextMenuEvent(QContextMenuEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -198,7 +198,7 @@ void PythonQtShell_QPrintPreviewWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -220,7 +220,7 @@ int PythonQtShell_QPrintPreviewWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -253,7 +253,7 @@ void PythonQtShell_QPrintPreviewWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -275,7 +275,7 @@ void PythonQtShell_QPrintPreviewWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -297,7 +297,7 @@ void PythonQtShell_QPrintPreviewWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -319,7 +319,7 @@ void PythonQtShell_QPrintPreviewWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -341,7 +341,7 @@ void PythonQtShell_QPrintPreviewWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -363,7 +363,7 @@ bool PythonQtShell_QPrintPreviewWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -396,7 +396,7 @@ bool PythonQtShell_QPrintPreviewWidget::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -429,7 +429,7 @@ void PythonQtShell_QPrintPreviewWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -451,7 +451,7 @@ bool PythonQtShell_QPrintPreviewWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -484,7 +484,7 @@ void PythonQtShell_QPrintPreviewWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -506,7 +506,7 @@ bool PythonQtShell_QPrintPreviewWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -539,7 +539,7 @@ int PythonQtShell_QPrintPreviewWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -572,7 +572,7 @@ void PythonQtShell_QPrintPreviewWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -594,7 +594,7 @@ void PythonQtShell_QPrintPreviewWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -616,7 +616,7 @@ void PythonQtShell_QPrintPreviewWidget::inputMethodEvent(QInputMethodEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -638,7 +638,7 @@ QVariant PythonQtShell_QPrintPreviewWidget::inputMethodQuery(Qt::InputMethodQue if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -671,7 +671,7 @@ void PythonQtShell_QPrintPreviewWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -693,7 +693,7 @@ void PythonQtShell_QPrintPreviewWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -715,7 +715,7 @@ void PythonQtShell_QPrintPreviewWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -737,7 +737,7 @@ int PythonQtShell_QPrintPreviewWidget::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -770,7 +770,7 @@ QSize PythonQtShell_QPrintPreviewWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -803,7 +803,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseDoubleClickEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -825,7 +825,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -847,7 +847,7 @@ void PythonQtShell_QPrintPreviewWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -869,7 +869,7 @@ void PythonQtShell_QPrintPreviewWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -891,7 +891,7 @@ void PythonQtShell_QPrintPreviewWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -913,7 +913,7 @@ bool PythonQtShell_QPrintPreviewWidget::nativeEvent(const QByteArray& eventTyp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -946,7 +946,7 @@ QPaintEngine* PythonQtShell_QPrintPreviewWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -979,7 +979,7 @@ void PythonQtShell_QPrintPreviewWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1001,7 +1001,7 @@ QPaintDevice* PythonQtShell_QPrintPreviewWidget::redirected(QPoint* offset0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1034,7 +1034,7 @@ void PythonQtShell_QPrintPreviewWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1056,7 +1056,7 @@ void PythonQtShell_QPrintPreviewWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1078,7 +1078,7 @@ QPainter* PythonQtShell_QPrintPreviewWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1111,7 +1111,7 @@ void PythonQtShell_QPrintPreviewWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1133,7 +1133,7 @@ QSize PythonQtShell_QPrintPreviewWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1166,7 +1166,7 @@ void PythonQtShell_QPrintPreviewWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1188,7 +1188,7 @@ void PythonQtShell_QPrintPreviewWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1210,7 +1210,7 @@ void PythonQtShell_QPrintPreviewWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1289,7 +1289,7 @@ int PythonQtShell_QPrinter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1322,7 +1322,7 @@ void PythonQtShell_QPrinter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1344,7 +1344,7 @@ int PythonQtShell_QPrinter::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1377,7 +1377,7 @@ bool PythonQtShell_QPrinter::newPage() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("newPage"); + static PyObject* name = PyUnicode_FromString("newPage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1410,7 +1410,7 @@ QPaintEngine* PythonQtShell_QPrinter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1443,7 +1443,7 @@ QPaintDevice* PythonQtShell_QPrinter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1476,7 +1476,7 @@ void PythonQtShell_QPrinter::setMargins(const QPagedPaintDevice::Margins& m0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMargins"); + static PyObject* name = PyUnicode_FromString("setMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPagedPaintDevice::Margins&"}; @@ -1498,7 +1498,7 @@ void PythonQtShell_QPrinter::setPageSize(QPagedPaintDevice::PageSize arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSize"); + static PyObject* name = PyUnicode_FromString("setPageSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPagedPaintDevice::PageSize"}; @@ -1520,7 +1520,7 @@ void PythonQtShell_QPrinter::setPageSizeMM(const QSizeF& size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPageSizeMM"); + static PyObject* name = PyUnicode_FromString("setPageSizeMM"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSizeF&"}; @@ -1542,7 +1542,7 @@ QPainter* PythonQtShell_QPrinter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2038,7 +2038,7 @@ void PythonQtShell_QProgressBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2060,7 +2060,7 @@ void PythonQtShell_QProgressBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2082,7 +2082,7 @@ void PythonQtShell_QProgressBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2104,7 +2104,7 @@ void PythonQtShell_QProgressBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2126,7 +2126,7 @@ void PythonQtShell_QProgressBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2148,7 +2148,7 @@ void PythonQtShell_QProgressBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2170,7 +2170,7 @@ int PythonQtShell_QProgressBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2203,7 +2203,7 @@ void PythonQtShell_QProgressBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2225,7 +2225,7 @@ void PythonQtShell_QProgressBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2247,7 +2247,7 @@ void PythonQtShell_QProgressBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2269,7 +2269,7 @@ void PythonQtShell_QProgressBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2291,7 +2291,7 @@ void PythonQtShell_QProgressBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2313,7 +2313,7 @@ bool PythonQtShell_QProgressBar::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2346,7 +2346,7 @@ bool PythonQtShell_QProgressBar::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2379,7 +2379,7 @@ void PythonQtShell_QProgressBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2401,7 +2401,7 @@ bool PythonQtShell_QProgressBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2434,7 +2434,7 @@ void PythonQtShell_QProgressBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2456,7 +2456,7 @@ bool PythonQtShell_QProgressBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2489,7 +2489,7 @@ int PythonQtShell_QProgressBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2522,7 +2522,7 @@ void PythonQtShell_QProgressBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2544,7 +2544,7 @@ void PythonQtShell_QProgressBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2566,7 +2566,7 @@ void PythonQtShell_QProgressBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2588,7 +2588,7 @@ QVariant PythonQtShell_QProgressBar::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2621,7 +2621,7 @@ void PythonQtShell_QProgressBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2643,7 +2643,7 @@ void PythonQtShell_QProgressBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2665,7 +2665,7 @@ void PythonQtShell_QProgressBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2687,7 +2687,7 @@ int PythonQtShell_QProgressBar::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2720,7 +2720,7 @@ QSize PythonQtShell_QProgressBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2753,7 +2753,7 @@ void PythonQtShell_QProgressBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2775,7 +2775,7 @@ void PythonQtShell_QProgressBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2797,7 +2797,7 @@ void PythonQtShell_QProgressBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2819,7 +2819,7 @@ void PythonQtShell_QProgressBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -2841,7 +2841,7 @@ void PythonQtShell_QProgressBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -2863,7 +2863,7 @@ bool PythonQtShell_QProgressBar::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -2896,7 +2896,7 @@ QPaintEngine* PythonQtShell_QProgressBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2929,7 +2929,7 @@ void PythonQtShell_QProgressBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -2951,7 +2951,7 @@ QPaintDevice* PythonQtShell_QProgressBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2984,7 +2984,7 @@ void PythonQtShell_QProgressBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3006,7 +3006,7 @@ void PythonQtShell_QProgressBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3028,7 +3028,7 @@ QPainter* PythonQtShell_QProgressBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3061,7 +3061,7 @@ void PythonQtShell_QProgressBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3083,7 +3083,7 @@ QSize PythonQtShell_QProgressBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3116,7 +3116,7 @@ void PythonQtShell_QProgressBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3138,7 +3138,7 @@ QString PythonQtShell_QProgressBar::text() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("text"); + static PyObject* name = PyUnicode_FromString("text"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3171,7 +3171,7 @@ void PythonQtShell_QProgressBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3193,7 +3193,7 @@ void PythonQtShell_QProgressBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3333,7 +3333,7 @@ void PythonQtShell_QProgressDialog::accept() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("accept"); + static PyObject* name = PyUnicode_FromString("accept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3355,7 +3355,7 @@ void PythonQtShell_QProgressDialog::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3377,7 +3377,7 @@ void PythonQtShell_QProgressDialog::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3399,7 +3399,7 @@ void PythonQtShell_QProgressDialog::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3421,7 +3421,7 @@ void PythonQtShell_QProgressDialog::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3443,7 +3443,7 @@ void PythonQtShell_QProgressDialog::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3465,7 +3465,7 @@ void PythonQtShell_QProgressDialog::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3487,7 +3487,7 @@ int PythonQtShell_QProgressDialog::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3520,7 +3520,7 @@ void PythonQtShell_QProgressDialog::done(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("done"); + static PyObject* name = PyUnicode_FromString("done"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -3542,7 +3542,7 @@ void PythonQtShell_QProgressDialog::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3564,7 +3564,7 @@ void PythonQtShell_QProgressDialog::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3586,7 +3586,7 @@ void PythonQtShell_QProgressDialog::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3608,7 +3608,7 @@ void PythonQtShell_QProgressDialog::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3630,7 +3630,7 @@ void PythonQtShell_QProgressDialog::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3652,7 +3652,7 @@ bool PythonQtShell_QProgressDialog::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3685,7 +3685,7 @@ bool PythonQtShell_QProgressDialog::eventFilter(QObject* arg__1, QEvent* arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3718,7 +3718,7 @@ int PythonQtShell_QProgressDialog::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3751,7 +3751,7 @@ void PythonQtShell_QProgressDialog::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3773,7 +3773,7 @@ bool PythonQtShell_QProgressDialog::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3806,7 +3806,7 @@ void PythonQtShell_QProgressDialog::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3828,7 +3828,7 @@ bool PythonQtShell_QProgressDialog::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3861,7 +3861,7 @@ int PythonQtShell_QProgressDialog::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3894,7 +3894,7 @@ void PythonQtShell_QProgressDialog::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3916,7 +3916,7 @@ void PythonQtShell_QProgressDialog::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3938,7 +3938,7 @@ void PythonQtShell_QProgressDialog::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3960,7 +3960,7 @@ QVariant PythonQtShell_QProgressDialog::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3993,7 +3993,7 @@ void PythonQtShell_QProgressDialog::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4015,7 +4015,7 @@ void PythonQtShell_QProgressDialog::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4037,7 +4037,7 @@ void PythonQtShell_QProgressDialog::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4059,7 +4059,7 @@ int PythonQtShell_QProgressDialog::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4092,7 +4092,7 @@ void PythonQtShell_QProgressDialog::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4114,7 +4114,7 @@ void PythonQtShell_QProgressDialog::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4136,7 +4136,7 @@ void PythonQtShell_QProgressDialog::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4158,7 +4158,7 @@ void PythonQtShell_QProgressDialog::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4180,7 +4180,7 @@ void PythonQtShell_QProgressDialog::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4202,7 +4202,7 @@ bool PythonQtShell_QProgressDialog::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4235,7 +4235,7 @@ QPaintEngine* PythonQtShell_QProgressDialog::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4268,7 +4268,7 @@ void PythonQtShell_QProgressDialog::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4290,7 +4290,7 @@ QPaintDevice* PythonQtShell_QProgressDialog::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4323,7 +4323,7 @@ void PythonQtShell_QProgressDialog::reject() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reject"); + static PyObject* name = PyUnicode_FromString("reject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4345,7 +4345,7 @@ void PythonQtShell_QProgressDialog::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4367,7 +4367,7 @@ void PythonQtShell_QProgressDialog::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4389,7 +4389,7 @@ QPainter* PythonQtShell_QProgressDialog::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4422,7 +4422,7 @@ void PythonQtShell_QProgressDialog::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4444,7 +4444,7 @@ QSize PythonQtShell_QProgressDialog::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4477,7 +4477,7 @@ void PythonQtShell_QProgressDialog::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4499,7 +4499,7 @@ void PythonQtShell_QProgressDialog::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4521,7 +4521,7 @@ void PythonQtShell_QProgressDialog::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4640,7 +4640,7 @@ void PythonQtShell_QProxyStyle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4662,7 +4662,7 @@ void PythonQtShell_QProxyStyle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4684,7 +4684,7 @@ void PythonQtShell_QProxyStyle::drawComplexControl(QStyle::ComplexControl contr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawComplexControl"); + static PyObject* name = PyUnicode_FromString("drawComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QPainter*" , "const QWidget*"}; @@ -4706,7 +4706,7 @@ void PythonQtShell_QProxyStyle::drawControl(QStyle::ControlElement element0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawControl"); + static PyObject* name = PyUnicode_FromString("drawControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::ControlElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -4728,7 +4728,7 @@ void PythonQtShell_QProxyStyle::drawItemPixmap(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemPixmap"); + static PyObject* name = PyUnicode_FromString("drawItemPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPixmap&"}; @@ -4750,7 +4750,7 @@ void PythonQtShell_QProxyStyle::drawItemText(QPainter* painter0, const QRect& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawItemText"); + static PyObject* name = PyUnicode_FromString("drawItemText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QRect&" , "int" , "const QPalette&" , "bool" , "const QString&" , "QPalette::ColorRole"}; @@ -4772,7 +4772,7 @@ void PythonQtShell_QProxyStyle::drawPrimitive(QStyle::PrimitiveElement element0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawPrimitive"); + static PyObject* name = PyUnicode_FromString("drawPrimitive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyle::PrimitiveElement" , "const QStyleOption*" , "QPainter*" , "const QWidget*"}; @@ -4794,7 +4794,7 @@ bool PythonQtShell_QProxyStyle::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4827,7 +4827,7 @@ bool PythonQtShell_QProxyStyle::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4860,7 +4860,7 @@ QPixmap PythonQtShell_QProxyStyle::generatedIconPixmap(QIcon::Mode iconMode0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("generatedIconPixmap"); + static PyObject* name = PyUnicode_FromString("generatedIconPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QIcon::Mode" , "const QPixmap&" , "const QStyleOption*"}; @@ -4893,7 +4893,7 @@ QStyle::SubControl PythonQtShell_QProxyStyle::hitTestComplexControl(QStyle::Com if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitTestComplexControl"); + static PyObject* name = PyUnicode_FromString("hitTestComplexControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle::SubControl" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "const QPoint&" , "const QWidget*"}; @@ -4926,7 +4926,7 @@ QRect PythonQtShell_QProxyStyle::itemPixmapRect(const QRect& r0, int flags1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemPixmapRect"); + static PyObject* name = PyUnicode_FromString("itemPixmapRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QRect&" , "int" , "const QPixmap&"}; @@ -4959,7 +4959,7 @@ QRect PythonQtShell_QProxyStyle::itemTextRect(const QFontMetrics& fm0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemTextRect"); + static PyObject* name = PyUnicode_FromString("itemTextRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "const QFontMetrics&" , "const QRect&" , "int" , "bool" , "const QString&"}; @@ -4992,7 +4992,7 @@ int PythonQtShell_QProxyStyle::layoutSpacing(QSizePolicy::ControlType control1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layoutSpacing"); + static PyObject* name = PyUnicode_FromString("layoutSpacing"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QSizePolicy::ControlType" , "QSizePolicy::ControlType" , "Qt::Orientation" , "const QStyleOption*" , "const QWidget*"}; @@ -5025,7 +5025,7 @@ int PythonQtShell_QProxyStyle::pixelMetric(QStyle::PixelMetric metric0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pixelMetric"); + static PyObject* name = PyUnicode_FromString("pixelMetric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::PixelMetric" , "const QStyleOption*" , "const QWidget*"}; @@ -5058,7 +5058,7 @@ void PythonQtShell_QProxyStyle::polish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -5080,7 +5080,7 @@ void PythonQtShell_QProxyStyle::polish(QPalette& pal0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPalette&"}; @@ -5102,7 +5102,7 @@ void PythonQtShell_QProxyStyle::polish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polish"); + static PyObject* name = PyUnicode_FromString("polish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5124,7 +5124,7 @@ QSize PythonQtShell_QProxyStyle::sizeFromContents(QStyle::ContentsType type0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeFromContents"); + static PyObject* name = PyUnicode_FromString("sizeFromContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "QStyle::ContentsType" , "const QStyleOption*" , "const QSize&" , "const QWidget*"}; @@ -5157,7 +5157,7 @@ QIcon PythonQtShell_QProxyStyle::standardIcon(QStyle::StandardPixmap standardI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardIcon"); + static PyObject* name = PyUnicode_FromString("standardIcon"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIcon" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -5190,7 +5190,7 @@ QPalette PythonQtShell_QProxyStyle::standardPalette() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPalette"); + static PyObject* name = PyUnicode_FromString("standardPalette"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPalette"}; @@ -5223,7 +5223,7 @@ QPixmap PythonQtShell_QProxyStyle::standardPixmap(QStyle::StandardPixmap stand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("standardPixmap"); + static PyObject* name = PyUnicode_FromString("standardPixmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPixmap" , "QStyle::StandardPixmap" , "const QStyleOption*" , "const QWidget*"}; @@ -5256,7 +5256,7 @@ int PythonQtShell_QProxyStyle::styleHint(QStyle::StyleHint hint0, const QStyle if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("styleHint"); + static PyObject* name = PyUnicode_FromString("styleHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QStyle::StyleHint" , "const QStyleOption*" , "const QWidget*" , "QStyleHintReturn*"}; @@ -5289,7 +5289,7 @@ QRect PythonQtShell_QProxyStyle::subControlRect(QStyle::ComplexControl cc0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subControlRect"); + static PyObject* name = PyUnicode_FromString("subControlRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::ComplexControl" , "const QStyleOptionComplex*" , "QStyle::SubControl" , "const QWidget*"}; @@ -5322,7 +5322,7 @@ QRect PythonQtShell_QProxyStyle::subElementRect(QStyle::SubElement element0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subElementRect"); + static PyObject* name = PyUnicode_FromString("subElementRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect" , "QStyle::SubElement" , "const QStyleOption*" , "const QWidget*"}; @@ -5355,7 +5355,7 @@ void PythonQtShell_QProxyStyle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5377,7 +5377,7 @@ void PythonQtShell_QProxyStyle::unpolish(QApplication* app0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QApplication*"}; @@ -5399,7 +5399,7 @@ void PythonQtShell_QProxyStyle::unpolish(QWidget* widget0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unpolish"); + static PyObject* name = PyUnicode_FromString("unpolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -5463,7 +5463,7 @@ void PythonQtShell_QPushButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5485,7 +5485,7 @@ void PythonQtShell_QPushButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5507,7 +5507,7 @@ void PythonQtShell_QPushButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5529,7 +5529,7 @@ void PythonQtShell_QPushButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5551,7 +5551,7 @@ void PythonQtShell_QPushButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5573,7 +5573,7 @@ void PythonQtShell_QPushButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5595,7 +5595,7 @@ void PythonQtShell_QPushButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5617,7 +5617,7 @@ int PythonQtShell_QPushButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5650,7 +5650,7 @@ void PythonQtShell_QPushButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5672,7 +5672,7 @@ void PythonQtShell_QPushButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5694,7 +5694,7 @@ void PythonQtShell_QPushButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5716,7 +5716,7 @@ void PythonQtShell_QPushButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5738,7 +5738,7 @@ void PythonQtShell_QPushButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5760,7 +5760,7 @@ bool PythonQtShell_QPushButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5793,7 +5793,7 @@ bool PythonQtShell_QPushButton::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5826,7 +5826,7 @@ void PythonQtShell_QPushButton::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5848,7 +5848,7 @@ bool PythonQtShell_QPushButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5881,7 +5881,7 @@ void PythonQtShell_QPushButton::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5903,7 +5903,7 @@ bool PythonQtShell_QPushButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5936,7 +5936,7 @@ int PythonQtShell_QPushButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5969,7 +5969,7 @@ void PythonQtShell_QPushButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5991,7 +5991,7 @@ bool PythonQtShell_QPushButton::hitButton(const QPoint& pos0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -6024,7 +6024,7 @@ void PythonQtShell_QPushButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6046,7 +6046,7 @@ void PythonQtShell_QPushButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6068,7 +6068,7 @@ QVariant PythonQtShell_QPushButton::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6101,7 +6101,7 @@ void PythonQtShell_QPushButton::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6123,7 +6123,7 @@ void PythonQtShell_QPushButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6145,7 +6145,7 @@ void PythonQtShell_QPushButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6167,7 +6167,7 @@ int PythonQtShell_QPushButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6200,7 +6200,7 @@ QSize PythonQtShell_QPushButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6233,7 +6233,7 @@ void PythonQtShell_QPushButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6255,7 +6255,7 @@ void PythonQtShell_QPushButton::mouseMoveEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6277,7 +6277,7 @@ void PythonQtShell_QPushButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6299,7 +6299,7 @@ void PythonQtShell_QPushButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6321,7 +6321,7 @@ void PythonQtShell_QPushButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6343,7 +6343,7 @@ bool PythonQtShell_QPushButton::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6376,7 +6376,7 @@ void PythonQtShell_QPushButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6398,7 +6398,7 @@ QPaintEngine* PythonQtShell_QPushButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6431,7 +6431,7 @@ void PythonQtShell_QPushButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6453,7 +6453,7 @@ QPaintDevice* PythonQtShell_QPushButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6486,7 +6486,7 @@ void PythonQtShell_QPushButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6508,7 +6508,7 @@ void PythonQtShell_QPushButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6530,7 +6530,7 @@ QPainter* PythonQtShell_QPushButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6563,7 +6563,7 @@ void PythonQtShell_QPushButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6585,7 +6585,7 @@ QSize PythonQtShell_QPushButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6618,7 +6618,7 @@ void PythonQtShell_QPushButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6640,7 +6640,7 @@ void PythonQtShell_QPushButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6662,7 +6662,7 @@ void PythonQtShell_QPushButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7140,7 +7140,7 @@ void PythonQtShell_QRadioButton::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7162,7 +7162,7 @@ void PythonQtShell_QRadioButton::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7184,7 +7184,7 @@ void PythonQtShell_QRadioButton::checkStateSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("checkStateSet"); + static PyObject* name = PyUnicode_FromString("checkStateSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7206,7 +7206,7 @@ void PythonQtShell_QRadioButton::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7228,7 +7228,7 @@ void PythonQtShell_QRadioButton::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7250,7 +7250,7 @@ void PythonQtShell_QRadioButton::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7272,7 +7272,7 @@ void PythonQtShell_QRadioButton::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7294,7 +7294,7 @@ int PythonQtShell_QRadioButton::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7327,7 +7327,7 @@ void PythonQtShell_QRadioButton::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7349,7 +7349,7 @@ void PythonQtShell_QRadioButton::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7371,7 +7371,7 @@ void PythonQtShell_QRadioButton::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7393,7 +7393,7 @@ void PythonQtShell_QRadioButton::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7415,7 +7415,7 @@ void PythonQtShell_QRadioButton::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7437,7 +7437,7 @@ bool PythonQtShell_QRadioButton::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7470,7 +7470,7 @@ bool PythonQtShell_QRadioButton::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7503,7 +7503,7 @@ void PythonQtShell_QRadioButton::focusInEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7525,7 +7525,7 @@ bool PythonQtShell_QRadioButton::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7558,7 +7558,7 @@ void PythonQtShell_QRadioButton::focusOutEvent(QFocusEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7580,7 +7580,7 @@ bool PythonQtShell_QRadioButton::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7613,7 +7613,7 @@ int PythonQtShell_QRadioButton::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7646,7 +7646,7 @@ void PythonQtShell_QRadioButton::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7668,7 +7668,7 @@ bool PythonQtShell_QRadioButton::hitButton(const QPoint& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hitButton"); + static PyObject* name = PyUnicode_FromString("hitButton"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPoint&"}; @@ -7701,7 +7701,7 @@ void PythonQtShell_QRadioButton::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7723,7 +7723,7 @@ void PythonQtShell_QRadioButton::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7745,7 +7745,7 @@ QVariant PythonQtShell_QRadioButton::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7778,7 +7778,7 @@ void PythonQtShell_QRadioButton::keyPressEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7800,7 +7800,7 @@ void PythonQtShell_QRadioButton::keyReleaseEvent(QKeyEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7822,7 +7822,7 @@ void PythonQtShell_QRadioButton::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7844,7 +7844,7 @@ int PythonQtShell_QRadioButton::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -7877,7 +7877,7 @@ QSize PythonQtShell_QRadioButton::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7910,7 +7910,7 @@ void PythonQtShell_QRadioButton::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7932,7 +7932,7 @@ void PythonQtShell_QRadioButton::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7954,7 +7954,7 @@ void PythonQtShell_QRadioButton::mousePressEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7976,7 +7976,7 @@ void PythonQtShell_QRadioButton::mouseReleaseEvent(QMouseEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -7998,7 +7998,7 @@ void PythonQtShell_QRadioButton::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8020,7 +8020,7 @@ bool PythonQtShell_QRadioButton::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8053,7 +8053,7 @@ void PythonQtShell_QRadioButton::nextCheckState() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextCheckState"); + static PyObject* name = PyUnicode_FromString("nextCheckState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8075,7 +8075,7 @@ QPaintEngine* PythonQtShell_QRadioButton::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8108,7 +8108,7 @@ void PythonQtShell_QRadioButton::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8130,7 +8130,7 @@ QPaintDevice* PythonQtShell_QRadioButton::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8163,7 +8163,7 @@ void PythonQtShell_QRadioButton::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8185,7 +8185,7 @@ void PythonQtShell_QRadioButton::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8207,7 +8207,7 @@ QPainter* PythonQtShell_QRadioButton::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8240,7 +8240,7 @@ void PythonQtShell_QRadioButton::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8262,7 +8262,7 @@ QSize PythonQtShell_QRadioButton::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8295,7 +8295,7 @@ void PythonQtShell_QRadioButton::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8317,7 +8317,7 @@ void PythonQtShell_QRadioButton::timerEvent(QTimerEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8339,7 +8339,7 @@ void PythonQtShell_QRadioButton::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8403,7 +8403,7 @@ void PythonQtShell_QRasterWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8425,7 +8425,7 @@ void PythonQtShell_QRasterWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8447,7 +8447,7 @@ bool PythonQtShell_QRasterWindow::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8480,7 +8480,7 @@ bool PythonQtShell_QRasterWindow::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8513,7 +8513,7 @@ void PythonQtShell_QRasterWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -8535,7 +8535,7 @@ void PythonQtShell_QRasterWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8557,7 +8557,7 @@ QObject* PythonQtShell_QRasterWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -8590,7 +8590,7 @@ void PythonQtShell_QRasterWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -8612,7 +8612,7 @@ QSurfaceFormat PythonQtShell_QRasterWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -8645,7 +8645,7 @@ void PythonQtShell_QRasterWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -8667,7 +8667,7 @@ void PythonQtShell_QRasterWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8689,7 +8689,7 @@ void PythonQtShell_QRasterWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -8711,7 +8711,7 @@ int PythonQtShell_QRasterWindow::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8744,7 +8744,7 @@ void PythonQtShell_QRasterWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8766,7 +8766,7 @@ void PythonQtShell_QRasterWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8788,7 +8788,7 @@ void PythonQtShell_QRasterWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8810,7 +8810,7 @@ void PythonQtShell_QRasterWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8832,7 +8832,7 @@ void PythonQtShell_QRasterWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8854,7 +8854,7 @@ bool PythonQtShell_QRasterWindow::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8887,7 +8887,7 @@ void PythonQtShell_QRasterWindow::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8909,7 +8909,7 @@ QPaintDevice* PythonQtShell_QRasterWindow::redirected(QPoint* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8942,7 +8942,7 @@ void PythonQtShell_QRasterWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8964,7 +8964,7 @@ void PythonQtShell_QRasterWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8986,7 +8986,7 @@ QSize PythonQtShell_QRasterWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9019,7 +9019,7 @@ QSurface::SurfaceType PythonQtShell_QRasterWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -9052,7 +9052,7 @@ void PythonQtShell_QRasterWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -9074,7 +9074,7 @@ void PythonQtShell_QRasterWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9096,7 +9096,7 @@ void PythonQtShell_QRasterWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -9118,7 +9118,7 @@ void PythonQtShell_QRasterWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -9371,7 +9371,7 @@ void PythonQtShell_QRegExpValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9393,7 +9393,7 @@ void PythonQtShell_QRegExpValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9415,7 +9415,7 @@ bool PythonQtShell_QRegExpValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9448,7 +9448,7 @@ bool PythonQtShell_QRegExpValidator::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9481,7 +9481,7 @@ void PythonQtShell_QRegExpValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -9503,7 +9503,7 @@ void PythonQtShell_QRegExpValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9525,7 +9525,7 @@ QValidator::State PythonQtShell_QRegExpValidator::validate(QString& input0, in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -9595,7 +9595,7 @@ void PythonQtShell_QRegularExpressionValidator::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9617,7 +9617,7 @@ void PythonQtShell_QRegularExpressionValidator::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9639,7 +9639,7 @@ bool PythonQtShell_QRegularExpressionValidator::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9672,7 +9672,7 @@ bool PythonQtShell_QRegularExpressionValidator::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9705,7 +9705,7 @@ void PythonQtShell_QRegularExpressionValidator::fixup(QString& arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -9727,7 +9727,7 @@ void PythonQtShell_QRegularExpressionValidator::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9749,7 +9749,7 @@ QValidator::State PythonQtShell_QRegularExpressionValidator::validate(QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -9959,7 +9959,7 @@ void PythonQtShell_QRubberBand::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9981,7 +9981,7 @@ void PythonQtShell_QRubberBand::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10003,7 +10003,7 @@ void PythonQtShell_QRubberBand::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -10025,7 +10025,7 @@ void PythonQtShell_QRubberBand::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -10047,7 +10047,7 @@ void PythonQtShell_QRubberBand::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -10069,7 +10069,7 @@ void PythonQtShell_QRubberBand::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10091,7 +10091,7 @@ int PythonQtShell_QRubberBand::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10124,7 +10124,7 @@ void PythonQtShell_QRubberBand::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -10146,7 +10146,7 @@ void PythonQtShell_QRubberBand::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -10168,7 +10168,7 @@ void PythonQtShell_QRubberBand::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -10190,7 +10190,7 @@ void PythonQtShell_QRubberBand::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -10212,7 +10212,7 @@ void PythonQtShell_QRubberBand::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10234,7 +10234,7 @@ bool PythonQtShell_QRubberBand::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -10267,7 +10267,7 @@ bool PythonQtShell_QRubberBand::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -10300,7 +10300,7 @@ void PythonQtShell_QRubberBand::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10322,7 +10322,7 @@ bool PythonQtShell_QRubberBand::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -10355,7 +10355,7 @@ void PythonQtShell_QRubberBand::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -10377,7 +10377,7 @@ bool PythonQtShell_QRubberBand::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -10410,7 +10410,7 @@ int PythonQtShell_QRubberBand::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -10443,7 +10443,7 @@ void PythonQtShell_QRubberBand::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -10465,7 +10465,7 @@ void PythonQtShell_QRubberBand::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -10487,7 +10487,7 @@ void PythonQtShell_QRubberBand::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -10509,7 +10509,7 @@ QVariant PythonQtShell_QRubberBand::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -10542,7 +10542,7 @@ void PythonQtShell_QRubberBand::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10564,7 +10564,7 @@ void PythonQtShell_QRubberBand::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -10586,7 +10586,7 @@ void PythonQtShell_QRubberBand::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -10608,7 +10608,7 @@ int PythonQtShell_QRubberBand::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -10641,7 +10641,7 @@ QSize PythonQtShell_QRubberBand::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10674,7 +10674,7 @@ void PythonQtShell_QRubberBand::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10696,7 +10696,7 @@ void PythonQtShell_QRubberBand::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10718,7 +10718,7 @@ void PythonQtShell_QRubberBand::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10740,7 +10740,7 @@ void PythonQtShell_QRubberBand::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10762,7 +10762,7 @@ void PythonQtShell_QRubberBand::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10784,7 +10784,7 @@ bool PythonQtShell_QRubberBand::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10817,7 +10817,7 @@ QPaintEngine* PythonQtShell_QRubberBand::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10850,7 +10850,7 @@ void PythonQtShell_QRubberBand::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10872,7 +10872,7 @@ QPaintDevice* PythonQtShell_QRubberBand::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10905,7 +10905,7 @@ void PythonQtShell_QRubberBand::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10927,7 +10927,7 @@ void PythonQtShell_QRubberBand::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10949,7 +10949,7 @@ QPainter* PythonQtShell_QRubberBand::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10982,7 +10982,7 @@ void PythonQtShell_QRubberBand::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -11004,7 +11004,7 @@ QSize PythonQtShell_QRubberBand::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -11037,7 +11037,7 @@ void PythonQtShell_QRubberBand::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -11059,7 +11059,7 @@ void PythonQtShell_QRubberBand::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -11081,7 +11081,7 @@ void PythonQtShell_QRubberBand::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -11346,7 +11346,7 @@ void PythonQtShell_QScrollArea::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -11368,7 +11368,7 @@ void PythonQtShell_QScrollArea::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11390,7 +11390,7 @@ void PythonQtShell_QScrollArea::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11412,7 +11412,7 @@ void PythonQtShell_QScrollArea::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -11434,7 +11434,7 @@ void PythonQtShell_QScrollArea::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -11456,7 +11456,7 @@ void PythonQtShell_QScrollArea::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11478,7 +11478,7 @@ int PythonQtShell_QScrollArea::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -11511,7 +11511,7 @@ void PythonQtShell_QScrollArea::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -11533,7 +11533,7 @@ void PythonQtShell_QScrollArea::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -11555,7 +11555,7 @@ void PythonQtShell_QScrollArea::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -11577,7 +11577,7 @@ void PythonQtShell_QScrollArea::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -11599,7 +11599,7 @@ void PythonQtShell_QScrollArea::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11621,7 +11621,7 @@ bool PythonQtShell_QScrollArea::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11654,7 +11654,7 @@ bool PythonQtShell_QScrollArea::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11687,7 +11687,7 @@ void PythonQtShell_QScrollArea::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11709,7 +11709,7 @@ bool PythonQtShell_QScrollArea::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -11742,7 +11742,7 @@ void PythonQtShell_QScrollArea::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -11764,7 +11764,7 @@ bool PythonQtShell_QScrollArea::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -11797,7 +11797,7 @@ int PythonQtShell_QScrollArea::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -11830,7 +11830,7 @@ void PythonQtShell_QScrollArea::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -11852,7 +11852,7 @@ void PythonQtShell_QScrollArea::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -11874,7 +11874,7 @@ void PythonQtShell_QScrollArea::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -11896,7 +11896,7 @@ QVariant PythonQtShell_QScrollArea::inputMethodQuery(Qt::InputMethodQuery arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -11929,7 +11929,7 @@ void PythonQtShell_QScrollArea::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11951,7 +11951,7 @@ void PythonQtShell_QScrollArea::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -11973,7 +11973,7 @@ void PythonQtShell_QScrollArea::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11995,7 +11995,7 @@ int PythonQtShell_QScrollArea::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -12028,7 +12028,7 @@ QSize PythonQtShell_QScrollArea::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12061,7 +12061,7 @@ void PythonQtShell_QScrollArea::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12083,7 +12083,7 @@ void PythonQtShell_QScrollArea::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12105,7 +12105,7 @@ void PythonQtShell_QScrollArea::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12127,7 +12127,7 @@ void PythonQtShell_QScrollArea::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -12149,7 +12149,7 @@ void PythonQtShell_QScrollArea::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -12171,7 +12171,7 @@ bool PythonQtShell_QScrollArea::nativeEvent(const QByteArray& eventType0, void if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -12204,7 +12204,7 @@ QPaintEngine* PythonQtShell_QScrollArea::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -12237,7 +12237,7 @@ void PythonQtShell_QScrollArea::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -12259,7 +12259,7 @@ QPaintDevice* PythonQtShell_QScrollArea::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -12292,7 +12292,7 @@ void PythonQtShell_QScrollArea::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -12314,7 +12314,7 @@ void PythonQtShell_QScrollArea::scrollContentsBy(int dx0, int dy1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("scrollContentsBy"); + static PyObject* name = PyUnicode_FromString("scrollContentsBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -12336,7 +12336,7 @@ void PythonQtShell_QScrollArea::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -12358,7 +12358,7 @@ void PythonQtShell_QScrollArea::setupViewport(QWidget* viewport0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setupViewport"); + static PyObject* name = PyUnicode_FromString("setupViewport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*"}; @@ -12380,7 +12380,7 @@ QPainter* PythonQtShell_QScrollArea::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -12413,7 +12413,7 @@ void PythonQtShell_QScrollArea::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -12435,7 +12435,7 @@ QSize PythonQtShell_QScrollArea::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12468,7 +12468,7 @@ void PythonQtShell_QScrollArea::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -12490,7 +12490,7 @@ void PythonQtShell_QScrollArea::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12512,7 +12512,7 @@ bool PythonQtShell_QScrollArea::viewportEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportEvent"); + static PyObject* name = PyUnicode_FromString("viewportEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12545,7 +12545,7 @@ QSize PythonQtShell_QScrollArea::viewportSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewportSizeHint"); + static PyObject* name = PyUnicode_FromString("viewportSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -12578,7 +12578,7 @@ void PythonQtShell_QScrollArea::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -12668,7 +12668,7 @@ void PythonQtShell_QScrollBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12690,7 +12690,7 @@ void PythonQtShell_QScrollBar::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12712,7 +12712,7 @@ void PythonQtShell_QScrollBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12734,7 +12734,7 @@ void PythonQtShell_QScrollBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12756,7 +12756,7 @@ void PythonQtShell_QScrollBar::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12778,7 +12778,7 @@ void PythonQtShell_QScrollBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12800,7 +12800,7 @@ int PythonQtShell_QScrollBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12833,7 +12833,7 @@ void PythonQtShell_QScrollBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12855,7 +12855,7 @@ void PythonQtShell_QScrollBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12877,7 +12877,7 @@ void PythonQtShell_QScrollBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12899,7 +12899,7 @@ void PythonQtShell_QScrollBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12921,7 +12921,7 @@ void PythonQtShell_QScrollBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12943,7 +12943,7 @@ bool PythonQtShell_QScrollBar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12976,7 +12976,7 @@ bool PythonQtShell_QScrollBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -13009,7 +13009,7 @@ void PythonQtShell_QScrollBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13031,7 +13031,7 @@ bool PythonQtShell_QScrollBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13064,7 +13064,7 @@ void PythonQtShell_QScrollBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13086,7 +13086,7 @@ bool PythonQtShell_QScrollBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13119,7 +13119,7 @@ int PythonQtShell_QScrollBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13152,7 +13152,7 @@ void PythonQtShell_QScrollBar::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13174,7 +13174,7 @@ void PythonQtShell_QScrollBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13196,7 +13196,7 @@ void PythonQtShell_QScrollBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13218,7 +13218,7 @@ QVariant PythonQtShell_QScrollBar::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13251,7 +13251,7 @@ void PythonQtShell_QScrollBar::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13273,7 +13273,7 @@ void PythonQtShell_QScrollBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13295,7 +13295,7 @@ void PythonQtShell_QScrollBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13317,7 +13317,7 @@ int PythonQtShell_QScrollBar::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13350,7 +13350,7 @@ QSize PythonQtShell_QScrollBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13383,7 +13383,7 @@ void PythonQtShell_QScrollBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13405,7 +13405,7 @@ void PythonQtShell_QScrollBar::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13427,7 +13427,7 @@ void PythonQtShell_QScrollBar::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13449,7 +13449,7 @@ void PythonQtShell_QScrollBar::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13471,7 +13471,7 @@ void PythonQtShell_QScrollBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13493,7 +13493,7 @@ bool PythonQtShell_QScrollBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13526,7 +13526,7 @@ QPaintEngine* PythonQtShell_QScrollBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13559,7 +13559,7 @@ void PythonQtShell_QScrollBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13581,7 +13581,7 @@ QPaintDevice* PythonQtShell_QScrollBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13614,7 +13614,7 @@ void PythonQtShell_QScrollBar::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13636,7 +13636,7 @@ void PythonQtShell_QScrollBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13658,7 +13658,7 @@ QPainter* PythonQtShell_QScrollBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13691,7 +13691,7 @@ void PythonQtShell_QScrollBar::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13713,7 +13713,7 @@ QSize PythonQtShell_QScrollBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13746,7 +13746,7 @@ void PythonQtShell_QScrollBar::sliderChange(QAbstractSlider::SliderChange chang if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -13768,7 +13768,7 @@ void PythonQtShell_QScrollBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13790,7 +13790,7 @@ void PythonQtShell_QScrollBar::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13812,7 +13812,7 @@ void PythonQtShell_QScrollBar::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -14161,7 +14161,7 @@ void PythonQtShell_QShortcut::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14183,7 +14183,7 @@ void PythonQtShell_QShortcut::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14205,7 +14205,7 @@ bool PythonQtShell_QShortcut::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14238,7 +14238,7 @@ bool PythonQtShell_QShortcut::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14271,7 +14271,7 @@ void PythonQtShell_QShortcut::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -14411,7 +14411,7 @@ void PythonQtShell_QSizeGrip::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -14433,7 +14433,7 @@ void PythonQtShell_QSizeGrip::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14455,7 +14455,7 @@ void PythonQtShell_QSizeGrip::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -14477,7 +14477,7 @@ void PythonQtShell_QSizeGrip::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -14499,7 +14499,7 @@ void PythonQtShell_QSizeGrip::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -14521,7 +14521,7 @@ void PythonQtShell_QSizeGrip::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14543,7 +14543,7 @@ int PythonQtShell_QSizeGrip::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -14576,7 +14576,7 @@ void PythonQtShell_QSizeGrip::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -14598,7 +14598,7 @@ void PythonQtShell_QSizeGrip::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -14620,7 +14620,7 @@ void PythonQtShell_QSizeGrip::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -14642,7 +14642,7 @@ void PythonQtShell_QSizeGrip::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -14664,7 +14664,7 @@ void PythonQtShell_QSizeGrip::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -14686,7 +14686,7 @@ bool PythonQtShell_QSizeGrip::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14719,7 +14719,7 @@ bool PythonQtShell_QSizeGrip::eventFilter(QObject* arg__1, QEvent* arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14752,7 +14752,7 @@ void PythonQtShell_QSizeGrip::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14774,7 +14774,7 @@ bool PythonQtShell_QSizeGrip::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -14807,7 +14807,7 @@ void PythonQtShell_QSizeGrip::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -14829,7 +14829,7 @@ bool PythonQtShell_QSizeGrip::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14862,7 +14862,7 @@ int PythonQtShell_QSizeGrip::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -14895,7 +14895,7 @@ void PythonQtShell_QSizeGrip::hideEvent(QHideEvent* hideEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -14917,7 +14917,7 @@ void PythonQtShell_QSizeGrip::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -14939,7 +14939,7 @@ void PythonQtShell_QSizeGrip::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -14961,7 +14961,7 @@ QVariant PythonQtShell_QSizeGrip::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -14994,7 +14994,7 @@ void PythonQtShell_QSizeGrip::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15016,7 +15016,7 @@ void PythonQtShell_QSizeGrip::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -15038,7 +15038,7 @@ void PythonQtShell_QSizeGrip::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -15060,7 +15060,7 @@ int PythonQtShell_QSizeGrip::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -15093,7 +15093,7 @@ QSize PythonQtShell_QSizeGrip::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15126,7 +15126,7 @@ void PythonQtShell_QSizeGrip::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15148,7 +15148,7 @@ void PythonQtShell_QSizeGrip::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15170,7 +15170,7 @@ void PythonQtShell_QSizeGrip::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15192,7 +15192,7 @@ void PythonQtShell_QSizeGrip::mouseReleaseEvent(QMouseEvent* mouseEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -15214,7 +15214,7 @@ void PythonQtShell_QSizeGrip::moveEvent(QMoveEvent* moveEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -15236,7 +15236,7 @@ bool PythonQtShell_QSizeGrip::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -15269,7 +15269,7 @@ QPaintEngine* PythonQtShell_QSizeGrip::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -15302,7 +15302,7 @@ void PythonQtShell_QSizeGrip::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -15324,7 +15324,7 @@ QPaintDevice* PythonQtShell_QSizeGrip::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -15357,7 +15357,7 @@ void PythonQtShell_QSizeGrip::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -15379,7 +15379,7 @@ void PythonQtShell_QSizeGrip::setVisible(bool arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -15401,7 +15401,7 @@ QPainter* PythonQtShell_QSizeGrip::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -15434,7 +15434,7 @@ void PythonQtShell_QSizeGrip::showEvent(QShowEvent* showEvent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -15456,7 +15456,7 @@ QSize PythonQtShell_QSizeGrip::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -15489,7 +15489,7 @@ void PythonQtShell_QSizeGrip::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -15511,7 +15511,7 @@ void PythonQtShell_QSizeGrip::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -15533,7 +15533,7 @@ void PythonQtShell_QSizeGrip::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp index bf8a7a9c8..436dc6e5e 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui8.cpp @@ -76,7 +76,7 @@ void PythonQtShell_QSlider::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -98,7 +98,7 @@ void PythonQtShell_QSlider::changeEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -120,7 +120,7 @@ void PythonQtShell_QSlider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -142,7 +142,7 @@ void PythonQtShell_QSlider::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -164,7 +164,7 @@ void PythonQtShell_QSlider::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -186,7 +186,7 @@ void PythonQtShell_QSlider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -208,7 +208,7 @@ int PythonQtShell_QSlider::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -241,7 +241,7 @@ void PythonQtShell_QSlider::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -263,7 +263,7 @@ void PythonQtShell_QSlider::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -285,7 +285,7 @@ void PythonQtShell_QSlider::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -307,7 +307,7 @@ void PythonQtShell_QSlider::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -329,7 +329,7 @@ void PythonQtShell_QSlider::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -351,7 +351,7 @@ bool PythonQtShell_QSlider::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -384,7 +384,7 @@ bool PythonQtShell_QSlider::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -417,7 +417,7 @@ void PythonQtShell_QSlider::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -439,7 +439,7 @@ bool PythonQtShell_QSlider::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -472,7 +472,7 @@ void PythonQtShell_QSlider::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -494,7 +494,7 @@ bool PythonQtShell_QSlider::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -527,7 +527,7 @@ int PythonQtShell_QSlider::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -560,7 +560,7 @@ void PythonQtShell_QSlider::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -582,7 +582,7 @@ void PythonQtShell_QSlider::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -604,7 +604,7 @@ void PythonQtShell_QSlider::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -626,7 +626,7 @@ QVariant PythonQtShell_QSlider::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -659,7 +659,7 @@ void PythonQtShell_QSlider::keyPressEvent(QKeyEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -681,7 +681,7 @@ void PythonQtShell_QSlider::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -703,7 +703,7 @@ void PythonQtShell_QSlider::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -725,7 +725,7 @@ int PythonQtShell_QSlider::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -758,7 +758,7 @@ QSize PythonQtShell_QSlider::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -791,7 +791,7 @@ void PythonQtShell_QSlider::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -813,7 +813,7 @@ void PythonQtShell_QSlider::mouseMoveEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -835,7 +835,7 @@ void PythonQtShell_QSlider::mousePressEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -857,7 +857,7 @@ void PythonQtShell_QSlider::mouseReleaseEvent(QMouseEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -879,7 +879,7 @@ void PythonQtShell_QSlider::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -901,7 +901,7 @@ bool PythonQtShell_QSlider::nativeEvent(const QByteArray& eventType0, void* m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -934,7 +934,7 @@ QPaintEngine* PythonQtShell_QSlider::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -967,7 +967,7 @@ void PythonQtShell_QSlider::paintEvent(QPaintEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -989,7 +989,7 @@ QPaintDevice* PythonQtShell_QSlider::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1022,7 +1022,7 @@ void PythonQtShell_QSlider::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1044,7 +1044,7 @@ void PythonQtShell_QSlider::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1066,7 +1066,7 @@ QPainter* PythonQtShell_QSlider::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1099,7 +1099,7 @@ void PythonQtShell_QSlider::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1121,7 +1121,7 @@ QSize PythonQtShell_QSlider::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1154,7 +1154,7 @@ void PythonQtShell_QSlider::sliderChange(QAbstractSlider::SliderChange change0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sliderChange"); + static PyObject* name = PyUnicode_FromString("sliderChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSlider::SliderChange"}; @@ -1176,7 +1176,7 @@ void PythonQtShell_QSlider::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1198,7 +1198,7 @@ void PythonQtShell_QSlider::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1220,7 +1220,7 @@ void PythonQtShell_QSlider::wheelEvent(QWheelEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1304,7 +1304,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::buddy(const QModelIndex& inde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1337,7 +1337,7 @@ bool PythonQtShell_QSortFilterProxyModel::canDropMimeData(const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1370,7 +1370,7 @@ bool PythonQtShell_QSortFilterProxyModel::canFetchMore(const QModelIndex& pare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1403,7 +1403,7 @@ void PythonQtShell_QSortFilterProxyModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1425,7 +1425,7 @@ int PythonQtShell_QSortFilterProxyModel::columnCount(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -1458,7 +1458,7 @@ void PythonQtShell_QSortFilterProxyModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1480,7 +1480,7 @@ QVariant PythonQtShell_QSortFilterProxyModel::data(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -1513,7 +1513,7 @@ bool PythonQtShell_QSortFilterProxyModel::dropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1546,7 +1546,7 @@ bool PythonQtShell_QSortFilterProxyModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1579,7 +1579,7 @@ bool PythonQtShell_QSortFilterProxyModel::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1612,7 +1612,7 @@ void PythonQtShell_QSortFilterProxyModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -1634,7 +1634,7 @@ bool PythonQtShell_QSortFilterProxyModel::filterAcceptsColumn(int source_colum if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("filterAcceptsColumn"); + static PyObject* name = PyUnicode_FromString("filterAcceptsColumn"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -1667,7 +1667,7 @@ bool PythonQtShell_QSortFilterProxyModel::filterAcceptsRow(int source_row0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("filterAcceptsRow"); + static PyObject* name = PyUnicode_FromString("filterAcceptsRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QModelIndex&"}; @@ -1700,7 +1700,7 @@ Qt::ItemFlags PythonQtShell_QSortFilterProxyModel::flags(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -1733,7 +1733,7 @@ bool PythonQtShell_QSortFilterProxyModel::hasChildren(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1766,7 +1766,7 @@ QVariant PythonQtShell_QSortFilterProxyModel::headerData(int section0, Qt::Ori if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -1799,7 +1799,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::index(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -1832,7 +1832,7 @@ bool PythonQtShell_QSortFilterProxyModel::insertColumns(int column0, int coun if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1865,7 +1865,7 @@ bool PythonQtShell_QSortFilterProxyModel::insertRows(int row0, int count1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -1898,7 +1898,7 @@ QMap PythonQtShell_QSortFilterProxyModel::itemData(const QMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -1931,7 +1931,7 @@ bool PythonQtShell_QSortFilterProxyModel::lessThan(const QModelIndex& source_l if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lessThan"); + static PyObject* name = PyUnicode_FromString("lessThan"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QModelIndex&"}; @@ -1964,7 +1964,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::mapFromSource(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapFromSource"); + static PyObject* name = PyUnicode_FromString("mapFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1997,7 +1997,7 @@ QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionFromSource(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionFromSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionFromSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -2030,7 +2030,7 @@ QItemSelection PythonQtShell_QSortFilterProxyModel::mapSelectionToSource(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapSelectionToSource"); + static PyObject* name = PyUnicode_FromString("mapSelectionToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QItemSelection" , "const QItemSelection&"}; @@ -2063,7 +2063,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::mapToSource(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapToSource"); + static PyObject* name = PyUnicode_FromString("mapToSource"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2096,7 +2096,7 @@ QList PythonQtShell_QSortFilterProxyModel::match(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2129,7 +2129,7 @@ QMimeData* PythonQtShell_QSortFilterProxyModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2162,7 +2162,7 @@ QStringList PythonQtShell_QSortFilterProxyModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2195,7 +2195,7 @@ bool PythonQtShell_QSortFilterProxyModel::moveColumns(const QModelIndex& sourc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2228,7 +2228,7 @@ bool PythonQtShell_QSortFilterProxyModel::moveRows(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2261,7 +2261,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::parent(const QModelIndex& chi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2294,7 +2294,7 @@ bool PythonQtShell_QSortFilterProxyModel::removeColumns(int column0, int coun if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2327,7 +2327,7 @@ bool PythonQtShell_QSortFilterProxyModel::removeRows(int row0, int count1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2360,7 +2360,7 @@ void PythonQtShell_QSortFilterProxyModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2382,7 +2382,7 @@ QHash PythonQtShell_QSortFilterProxyModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2415,7 +2415,7 @@ int PythonQtShell_QSortFilterProxyModel::rowCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2448,7 +2448,7 @@ bool PythonQtShell_QSortFilterProxyModel::setData(const QModelIndex& index0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2481,7 +2481,7 @@ bool PythonQtShell_QSortFilterProxyModel::setHeaderData(int section0, Qt::Orie if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2514,7 +2514,7 @@ bool PythonQtShell_QSortFilterProxyModel::setItemData(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2547,7 +2547,7 @@ void PythonQtShell_QSortFilterProxyModel::setSourceModel(QAbstractItemModel* so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceModel"); + static PyObject* name = PyUnicode_FromString("setSourceModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractItemModel*"}; @@ -2569,7 +2569,7 @@ QModelIndex PythonQtShell_QSortFilterProxyModel::sibling(int row0, int column if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2602,7 +2602,7 @@ void PythonQtShell_QSortFilterProxyModel::sort(int column0, Qt::SortOrder orde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2624,7 +2624,7 @@ QSize PythonQtShell_QSortFilterProxyModel::span(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2657,7 +2657,7 @@ bool PythonQtShell_QSortFilterProxyModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2690,7 +2690,7 @@ Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDragActions() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2723,7 +2723,7 @@ Qt::DropActions PythonQtShell_QSortFilterProxyModel::supportedDropActions() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -2756,7 +2756,7 @@ void PythonQtShell_QSortFilterProxyModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2911,7 +2911,7 @@ QSizePolicy::ControlTypes PythonQtShell_QSpacerItem::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -2944,7 +2944,7 @@ Qt::Orientations PythonQtShell_QSpacerItem::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -2977,7 +2977,7 @@ QRect PythonQtShell_QSpacerItem::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -3010,7 +3010,7 @@ bool PythonQtShell_QSpacerItem::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3043,7 +3043,7 @@ int PythonQtShell_QSpacerItem::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3076,7 +3076,7 @@ void PythonQtShell_QSpacerItem::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3098,7 +3098,7 @@ bool PythonQtShell_QSpacerItem::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3131,7 +3131,7 @@ QLayout* PythonQtShell_QSpacerItem::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -3164,7 +3164,7 @@ QSize PythonQtShell_QSpacerItem::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3197,7 +3197,7 @@ int PythonQtShell_QSpacerItem::minimumHeightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumHeightForWidth"); + static PyObject* name = PyUnicode_FromString("minimumHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3230,7 +3230,7 @@ QSize PythonQtShell_QSpacerItem::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3263,7 +3263,7 @@ void PythonQtShell_QSpacerItem::setGeometry(const QRect& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -3285,7 +3285,7 @@ QSize PythonQtShell_QSpacerItem::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3318,7 +3318,7 @@ QSpacerItem* PythonQtShell_QSpacerItem::spacerItem() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("spacerItem"); + static PyObject* name = PyUnicode_FromString("spacerItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSpacerItem*"}; @@ -3351,7 +3351,7 @@ QWidget* PythonQtShell_QSpacerItem::widget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("widget"); + static PyObject* name = PyUnicode_FromString("widget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -3404,7 +3404,7 @@ void PythonQtShell_QSpinBox::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -3426,7 +3426,7 @@ void PythonQtShell_QSpinBox::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3448,7 +3448,7 @@ void PythonQtShell_QSpinBox::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3470,7 +3470,7 @@ void PythonQtShell_QSpinBox::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3492,7 +3492,7 @@ void PythonQtShell_QSpinBox::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3514,7 +3514,7 @@ void PythonQtShell_QSpinBox::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3536,7 +3536,7 @@ void PythonQtShell_QSpinBox::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3558,7 +3558,7 @@ int PythonQtShell_QSpinBox::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3591,7 +3591,7 @@ void PythonQtShell_QSpinBox::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3613,7 +3613,7 @@ void PythonQtShell_QSpinBox::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3635,7 +3635,7 @@ void PythonQtShell_QSpinBox::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3657,7 +3657,7 @@ void PythonQtShell_QSpinBox::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3679,7 +3679,7 @@ void PythonQtShell_QSpinBox::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3701,7 +3701,7 @@ bool PythonQtShell_QSpinBox::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3734,7 +3734,7 @@ bool PythonQtShell_QSpinBox::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3767,7 +3767,7 @@ void PythonQtShell_QSpinBox::fixup(QString& str0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fixup"); + static PyObject* name = PyUnicode_FromString("fixup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QString&"}; @@ -3789,7 +3789,7 @@ void PythonQtShell_QSpinBox::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3811,7 +3811,7 @@ bool PythonQtShell_QSpinBox::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3844,7 +3844,7 @@ void PythonQtShell_QSpinBox::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3866,7 +3866,7 @@ bool PythonQtShell_QSpinBox::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3899,7 +3899,7 @@ int PythonQtShell_QSpinBox::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3932,7 +3932,7 @@ void PythonQtShell_QSpinBox::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3954,7 +3954,7 @@ void PythonQtShell_QSpinBox::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3976,7 +3976,7 @@ void PythonQtShell_QSpinBox::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3998,7 +3998,7 @@ QVariant PythonQtShell_QSpinBox::inputMethodQuery(Qt::InputMethodQuery arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -4031,7 +4031,7 @@ void PythonQtShell_QSpinBox::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4053,7 +4053,7 @@ void PythonQtShell_QSpinBox::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4075,7 +4075,7 @@ void PythonQtShell_QSpinBox::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4097,7 +4097,7 @@ int PythonQtShell_QSpinBox::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -4130,7 +4130,7 @@ void PythonQtShell_QSpinBox::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4152,7 +4152,7 @@ void PythonQtShell_QSpinBox::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4174,7 +4174,7 @@ void PythonQtShell_QSpinBox::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4196,7 +4196,7 @@ void PythonQtShell_QSpinBox::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4218,7 +4218,7 @@ void PythonQtShell_QSpinBox::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4240,7 +4240,7 @@ bool PythonQtShell_QSpinBox::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4273,7 +4273,7 @@ QPaintEngine* PythonQtShell_QSpinBox::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -4306,7 +4306,7 @@ void PythonQtShell_QSpinBox::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -4328,7 +4328,7 @@ QPaintDevice* PythonQtShell_QSpinBox::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4361,7 +4361,7 @@ void PythonQtShell_QSpinBox::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4383,7 +4383,7 @@ void PythonQtShell_QSpinBox::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4405,7 +4405,7 @@ QPainter* PythonQtShell_QSpinBox::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4438,7 +4438,7 @@ void PythonQtShell_QSpinBox::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4460,7 +4460,7 @@ void PythonQtShell_QSpinBox::stepBy(int steps0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepBy"); + static PyObject* name = PyUnicode_FromString("stepBy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4482,7 +4482,7 @@ QAbstractSpinBox::StepEnabled PythonQtShell_QSpinBox::stepEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stepEnabled"); + static PyObject* name = PyUnicode_FromString("stepEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractSpinBox::StepEnabled"}; @@ -4515,7 +4515,7 @@ void PythonQtShell_QSpinBox::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4537,7 +4537,7 @@ QString PythonQtShell_QSpinBox::textFromValue(int val0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textFromValue"); + static PyObject* name = PyUnicode_FromString("textFromValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -4570,7 +4570,7 @@ void PythonQtShell_QSpinBox::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4592,7 +4592,7 @@ QValidator::State PythonQtShell_QSpinBox::validate(QString& input0, int& pos1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validate"); + static PyObject* name = PyUnicode_FromString("validate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QValidator::State" , "QString&" , "int&"}; @@ -4625,7 +4625,7 @@ int PythonQtShell_QSpinBox::valueFromText(const QString& text0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("valueFromText"); + static PyObject* name = PyUnicode_FromString("valueFromText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -4658,7 +4658,7 @@ void PythonQtShell_QSpinBox::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -4788,7 +4788,7 @@ void PythonQtShell_QSplashScreen::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -4810,7 +4810,7 @@ void PythonQtShell_QSplashScreen::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4832,7 +4832,7 @@ void PythonQtShell_QSplashScreen::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4854,7 +4854,7 @@ void PythonQtShell_QSplashScreen::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -4876,7 +4876,7 @@ void PythonQtShell_QSplashScreen::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -4898,7 +4898,7 @@ void PythonQtShell_QSplashScreen::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4920,7 +4920,7 @@ int PythonQtShell_QSplashScreen::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4953,7 +4953,7 @@ void PythonQtShell_QSplashScreen::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -4975,7 +4975,7 @@ void PythonQtShell_QSplashScreen::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -4997,7 +4997,7 @@ void PythonQtShell_QSplashScreen::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5019,7 +5019,7 @@ void PythonQtShell_QSplashScreen::drawContents(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("drawContents"); + static PyObject* name = PyUnicode_FromString("drawContents"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5041,7 +5041,7 @@ void PythonQtShell_QSplashScreen::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5063,7 +5063,7 @@ void PythonQtShell_QSplashScreen::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5085,7 +5085,7 @@ bool PythonQtShell_QSplashScreen::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5118,7 +5118,7 @@ bool PythonQtShell_QSplashScreen::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5151,7 +5151,7 @@ void PythonQtShell_QSplashScreen::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5173,7 +5173,7 @@ bool PythonQtShell_QSplashScreen::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5206,7 +5206,7 @@ void PythonQtShell_QSplashScreen::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5228,7 +5228,7 @@ bool PythonQtShell_QSplashScreen::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5261,7 +5261,7 @@ int PythonQtShell_QSplashScreen::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5294,7 +5294,7 @@ void PythonQtShell_QSplashScreen::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5316,7 +5316,7 @@ void PythonQtShell_QSplashScreen::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5338,7 +5338,7 @@ void PythonQtShell_QSplashScreen::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5360,7 +5360,7 @@ QVariant PythonQtShell_QSplashScreen::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5393,7 +5393,7 @@ void PythonQtShell_QSplashScreen::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5415,7 +5415,7 @@ void PythonQtShell_QSplashScreen::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5437,7 +5437,7 @@ void PythonQtShell_QSplashScreen::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5459,7 +5459,7 @@ int PythonQtShell_QSplashScreen::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5492,7 +5492,7 @@ QSize PythonQtShell_QSplashScreen::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5525,7 +5525,7 @@ void PythonQtShell_QSplashScreen::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5547,7 +5547,7 @@ void PythonQtShell_QSplashScreen::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5569,7 +5569,7 @@ void PythonQtShell_QSplashScreen::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5591,7 +5591,7 @@ void PythonQtShell_QSplashScreen::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5613,7 +5613,7 @@ void PythonQtShell_QSplashScreen::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5635,7 +5635,7 @@ bool PythonQtShell_QSplashScreen::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5668,7 +5668,7 @@ QPaintEngine* PythonQtShell_QSplashScreen::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5701,7 +5701,7 @@ void PythonQtShell_QSplashScreen::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5723,7 +5723,7 @@ QPaintDevice* PythonQtShell_QSplashScreen::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -5756,7 +5756,7 @@ void PythonQtShell_QSplashScreen::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -5778,7 +5778,7 @@ void PythonQtShell_QSplashScreen::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5800,7 +5800,7 @@ QPainter* PythonQtShell_QSplashScreen::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -5833,7 +5833,7 @@ void PythonQtShell_QSplashScreen::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -5855,7 +5855,7 @@ QSize PythonQtShell_QSplashScreen::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5888,7 +5888,7 @@ void PythonQtShell_QSplashScreen::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -5910,7 +5910,7 @@ void PythonQtShell_QSplashScreen::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5932,7 +5932,7 @@ void PythonQtShell_QSplashScreen::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6006,7 +6006,7 @@ void PythonQtShell_QSplitter::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -6028,7 +6028,7 @@ void PythonQtShell_QSplitter::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6050,7 +6050,7 @@ void PythonQtShell_QSplitter::childEvent(QChildEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6072,7 +6072,7 @@ void PythonQtShell_QSplitter::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -6094,7 +6094,7 @@ void PythonQtShell_QSplitter::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -6116,7 +6116,7 @@ QSplitterHandle* PythonQtShell_QSplitter::createHandle() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createHandle"); + static PyObject* name = PyUnicode_FromString("createHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSplitterHandle*"}; @@ -6149,7 +6149,7 @@ void PythonQtShell_QSplitter::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6171,7 +6171,7 @@ int PythonQtShell_QSplitter::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6204,7 +6204,7 @@ void PythonQtShell_QSplitter::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -6226,7 +6226,7 @@ void PythonQtShell_QSplitter::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -6248,7 +6248,7 @@ void PythonQtShell_QSplitter::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -6270,7 +6270,7 @@ void PythonQtShell_QSplitter::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -6292,7 +6292,7 @@ void PythonQtShell_QSplitter::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6314,7 +6314,7 @@ bool PythonQtShell_QSplitter::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6347,7 +6347,7 @@ bool PythonQtShell_QSplitter::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6380,7 +6380,7 @@ void PythonQtShell_QSplitter::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6402,7 +6402,7 @@ bool PythonQtShell_QSplitter::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -6435,7 +6435,7 @@ void PythonQtShell_QSplitter::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6457,7 +6457,7 @@ bool PythonQtShell_QSplitter::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6490,7 +6490,7 @@ int PythonQtShell_QSplitter::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -6523,7 +6523,7 @@ void PythonQtShell_QSplitter::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6545,7 +6545,7 @@ void PythonQtShell_QSplitter::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -6567,7 +6567,7 @@ void PythonQtShell_QSplitter::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6589,7 +6589,7 @@ QVariant PythonQtShell_QSplitter::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6622,7 +6622,7 @@ void PythonQtShell_QSplitter::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6644,7 +6644,7 @@ void PythonQtShell_QSplitter::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6666,7 +6666,7 @@ void PythonQtShell_QSplitter::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6688,7 +6688,7 @@ int PythonQtShell_QSplitter::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6721,7 +6721,7 @@ QSize PythonQtShell_QSplitter::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSizeHint"); + static PyObject* name = PyUnicode_FromString("minimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6754,7 +6754,7 @@ void PythonQtShell_QSplitter::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6776,7 +6776,7 @@ void PythonQtShell_QSplitter::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6798,7 +6798,7 @@ void PythonQtShell_QSplitter::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6820,7 +6820,7 @@ void PythonQtShell_QSplitter::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6842,7 +6842,7 @@ void PythonQtShell_QSplitter::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6864,7 +6864,7 @@ bool PythonQtShell_QSplitter::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6897,7 +6897,7 @@ QPaintEngine* PythonQtShell_QSplitter::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6930,7 +6930,7 @@ void PythonQtShell_QSplitter::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6952,7 +6952,7 @@ QPaintDevice* PythonQtShell_QSplitter::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6985,7 +6985,7 @@ void PythonQtShell_QSplitter::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -7007,7 +7007,7 @@ void PythonQtShell_QSplitter::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -7029,7 +7029,7 @@ QPainter* PythonQtShell_QSplitter::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -7062,7 +7062,7 @@ void PythonQtShell_QSplitter::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -7084,7 +7084,7 @@ QSize PythonQtShell_QSplitter::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7117,7 +7117,7 @@ void PythonQtShell_QSplitter::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -7139,7 +7139,7 @@ void PythonQtShell_QSplitter::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7161,7 +7161,7 @@ void PythonQtShell_QSplitter::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7355,7 +7355,7 @@ void PythonQtShell_QSplitterHandle::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -7377,7 +7377,7 @@ void PythonQtShell_QSplitterHandle::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7399,7 +7399,7 @@ void PythonQtShell_QSplitterHandle::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7421,7 +7421,7 @@ void PythonQtShell_QSplitterHandle::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -7443,7 +7443,7 @@ void PythonQtShell_QSplitterHandle::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -7465,7 +7465,7 @@ void PythonQtShell_QSplitterHandle::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7487,7 +7487,7 @@ int PythonQtShell_QSplitterHandle::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7520,7 +7520,7 @@ void PythonQtShell_QSplitterHandle::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -7542,7 +7542,7 @@ void PythonQtShell_QSplitterHandle::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -7564,7 +7564,7 @@ void PythonQtShell_QSplitterHandle::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -7586,7 +7586,7 @@ void PythonQtShell_QSplitterHandle::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -7608,7 +7608,7 @@ void PythonQtShell_QSplitterHandle::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7630,7 +7630,7 @@ bool PythonQtShell_QSplitterHandle::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7663,7 +7663,7 @@ bool PythonQtShell_QSplitterHandle::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7696,7 +7696,7 @@ void PythonQtShell_QSplitterHandle::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7718,7 +7718,7 @@ bool PythonQtShell_QSplitterHandle::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -7751,7 +7751,7 @@ void PythonQtShell_QSplitterHandle::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -7773,7 +7773,7 @@ bool PythonQtShell_QSplitterHandle::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7806,7 +7806,7 @@ int PythonQtShell_QSplitterHandle::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -7839,7 +7839,7 @@ void PythonQtShell_QSplitterHandle::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -7861,7 +7861,7 @@ void PythonQtShell_QSplitterHandle::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -7883,7 +7883,7 @@ void PythonQtShell_QSplitterHandle::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -7905,7 +7905,7 @@ QVariant PythonQtShell_QSplitterHandle::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -7938,7 +7938,7 @@ void PythonQtShell_QSplitterHandle::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7960,7 +7960,7 @@ void PythonQtShell_QSplitterHandle::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -7982,7 +7982,7 @@ void PythonQtShell_QSplitterHandle::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8004,7 +8004,7 @@ int PythonQtShell_QSplitterHandle::metric(QPaintDevice::PaintDeviceMetric arg_ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -8037,7 +8037,7 @@ QSize PythonQtShell_QSplitterHandle::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8070,7 +8070,7 @@ void PythonQtShell_QSplitterHandle::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8092,7 +8092,7 @@ void PythonQtShell_QSplitterHandle::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8114,7 +8114,7 @@ void PythonQtShell_QSplitterHandle::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8136,7 +8136,7 @@ void PythonQtShell_QSplitterHandle::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -8158,7 +8158,7 @@ void PythonQtShell_QSplitterHandle::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -8180,7 +8180,7 @@ bool PythonQtShell_QSplitterHandle::nativeEvent(const QByteArray& eventType0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -8213,7 +8213,7 @@ QPaintEngine* PythonQtShell_QSplitterHandle::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -8246,7 +8246,7 @@ void PythonQtShell_QSplitterHandle::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -8268,7 +8268,7 @@ QPaintDevice* PythonQtShell_QSplitterHandle::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -8301,7 +8301,7 @@ void PythonQtShell_QSplitterHandle::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -8323,7 +8323,7 @@ void PythonQtShell_QSplitterHandle::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8345,7 +8345,7 @@ QPainter* PythonQtShell_QSplitterHandle::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -8378,7 +8378,7 @@ void PythonQtShell_QSplitterHandle::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -8400,7 +8400,7 @@ QSize PythonQtShell_QSplitterHandle::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -8433,7 +8433,7 @@ void PythonQtShell_QSplitterHandle::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -8455,7 +8455,7 @@ void PythonQtShell_QSplitterHandle::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8477,7 +8477,7 @@ void PythonQtShell_QSplitterHandle::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -8557,7 +8557,7 @@ void PythonQtShell_QStackedLayout::addItem(QLayoutItem* item0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addItem"); + static PyObject* name = PyUnicode_FromString("addItem"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QLayoutItem*"}; @@ -8579,7 +8579,7 @@ void PythonQtShell_QStackedLayout::childEvent(QChildEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8601,7 +8601,7 @@ QSizePolicy::ControlTypes PythonQtShell_QStackedLayout::controlTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("controlTypes"); + static PyObject* name = PyUnicode_FromString("controlTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizePolicy::ControlTypes"}; @@ -8634,7 +8634,7 @@ int PythonQtShell_QStackedLayout::count() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("count"); + static PyObject* name = PyUnicode_FromString("count"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -8667,7 +8667,7 @@ void PythonQtShell_QStackedLayout::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8689,7 +8689,7 @@ bool PythonQtShell_QStackedLayout::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8722,7 +8722,7 @@ bool PythonQtShell_QStackedLayout::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8755,7 +8755,7 @@ Qt::Orientations PythonQtShell_QStackedLayout::expandingDirections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expandingDirections"); + static PyObject* name = PyUnicode_FromString("expandingDirections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::Orientations"}; @@ -8788,7 +8788,7 @@ QRect PythonQtShell_QStackedLayout::geometry() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometry"); + static PyObject* name = PyUnicode_FromString("geometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -8821,7 +8821,7 @@ bool PythonQtShell_QStackedLayout::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8854,7 +8854,7 @@ int PythonQtShell_QStackedLayout::heightForWidth(int width0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -8887,7 +8887,7 @@ int PythonQtShell_QStackedLayout::indexOf(QWidget* arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexOf"); + static PyObject* name = PyUnicode_FromString("indexOf"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QWidget*"}; @@ -8920,7 +8920,7 @@ void PythonQtShell_QStackedLayout::invalidate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("invalidate"); + static PyObject* name = PyUnicode_FromString("invalidate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8942,7 +8942,7 @@ bool PythonQtShell_QStackedLayout::isEmpty() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEmpty"); + static PyObject* name = PyUnicode_FromString("isEmpty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8975,7 +8975,7 @@ QLayoutItem* PythonQtShell_QStackedLayout::itemAt(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemAt"); + static PyObject* name = PyUnicode_FromString("itemAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9008,7 +9008,7 @@ QLayout* PythonQtShell_QStackedLayout::layout() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("layout"); + static PyObject* name = PyUnicode_FromString("layout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*"}; @@ -9041,7 +9041,7 @@ QSize PythonQtShell_QStackedLayout::maximumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumSize"); + static PyObject* name = PyUnicode_FromString("maximumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9074,7 +9074,7 @@ QSize PythonQtShell_QStackedLayout::minimumSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("minimumSize"); + static PyObject* name = PyUnicode_FromString("minimumSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9107,7 +9107,7 @@ void PythonQtShell_QStackedLayout::setGeometry(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -9129,7 +9129,7 @@ QSize PythonQtShell_QStackedLayout::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -9162,7 +9162,7 @@ QLayoutItem* PythonQtShell_QStackedLayout::takeAt(int arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("takeAt"); + static PyObject* name = PyUnicode_FromString("takeAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayoutItem*" , "int"}; @@ -9195,7 +9195,7 @@ void PythonQtShell_QStackedLayout::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -9298,7 +9298,7 @@ void PythonQtShell_QStackedWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -9320,7 +9320,7 @@ void PythonQtShell_QStackedWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9342,7 +9342,7 @@ void PythonQtShell_QStackedWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -9364,7 +9364,7 @@ void PythonQtShell_QStackedWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -9386,7 +9386,7 @@ void PythonQtShell_QStackedWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -9408,7 +9408,7 @@ void PythonQtShell_QStackedWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9430,7 +9430,7 @@ int PythonQtShell_QStackedWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -9463,7 +9463,7 @@ void PythonQtShell_QStackedWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -9485,7 +9485,7 @@ void PythonQtShell_QStackedWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -9507,7 +9507,7 @@ void PythonQtShell_QStackedWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -9529,7 +9529,7 @@ void PythonQtShell_QStackedWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -9551,7 +9551,7 @@ void PythonQtShell_QStackedWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9573,7 +9573,7 @@ bool PythonQtShell_QStackedWidget::event(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -9606,7 +9606,7 @@ bool PythonQtShell_QStackedWidget::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -9639,7 +9639,7 @@ void PythonQtShell_QStackedWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9661,7 +9661,7 @@ bool PythonQtShell_QStackedWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -9694,7 +9694,7 @@ void PythonQtShell_QStackedWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -9716,7 +9716,7 @@ bool PythonQtShell_QStackedWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9749,7 +9749,7 @@ int PythonQtShell_QStackedWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -9782,7 +9782,7 @@ void PythonQtShell_QStackedWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -9804,7 +9804,7 @@ void PythonQtShell_QStackedWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -9826,7 +9826,7 @@ void PythonQtShell_QStackedWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -9848,7 +9848,7 @@ QVariant PythonQtShell_QStackedWidget::inputMethodQuery(Qt::InputMethodQuery a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -9881,7 +9881,7 @@ void PythonQtShell_QStackedWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9903,7 +9903,7 @@ void PythonQtShell_QStackedWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -9925,7 +9925,7 @@ void PythonQtShell_QStackedWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -9947,7 +9947,7 @@ int PythonQtShell_QStackedWidget::metric(QPaintDevice::PaintDeviceMetric arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -9980,7 +9980,7 @@ QSize PythonQtShell_QStackedWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10013,7 +10013,7 @@ void PythonQtShell_QStackedWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10035,7 +10035,7 @@ void PythonQtShell_QStackedWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10057,7 +10057,7 @@ void PythonQtShell_QStackedWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10079,7 +10079,7 @@ void PythonQtShell_QStackedWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -10101,7 +10101,7 @@ void PythonQtShell_QStackedWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -10123,7 +10123,7 @@ bool PythonQtShell_QStackedWidget::nativeEvent(const QByteArray& eventType0, v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -10156,7 +10156,7 @@ QPaintEngine* PythonQtShell_QStackedWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -10189,7 +10189,7 @@ void PythonQtShell_QStackedWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -10211,7 +10211,7 @@ QPaintDevice* PythonQtShell_QStackedWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -10244,7 +10244,7 @@ void PythonQtShell_QStackedWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -10266,7 +10266,7 @@ void PythonQtShell_QStackedWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -10288,7 +10288,7 @@ QPainter* PythonQtShell_QStackedWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -10321,7 +10321,7 @@ void PythonQtShell_QStackedWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -10343,7 +10343,7 @@ QSize PythonQtShell_QStackedWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -10376,7 +10376,7 @@ void PythonQtShell_QStackedWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -10398,7 +10398,7 @@ void PythonQtShell_QStackedWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -10420,7 +10420,7 @@ void PythonQtShell_QStackedWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -10505,7 +10505,7 @@ QStandardItem* PythonQtShell_QStandardItem::clone() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clone"); + static PyObject* name = PyUnicode_FromString("clone"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStandardItem*"}; @@ -10538,7 +10538,7 @@ QVariant PythonQtShell_QStandardItem::data(int role0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -10571,7 +10571,7 @@ void PythonQtShell_QStandardItem::read(QDataStream& in0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -10593,7 +10593,7 @@ void PythonQtShell_QStandardItem::setData(const QVariant& value0, int role1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&" , "int"}; @@ -10615,7 +10615,7 @@ int PythonQtShell_QStandardItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -10648,7 +10648,7 @@ void PythonQtShell_QStandardItem::write(QDataStream& out0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("write"); + static PyObject* name = PyUnicode_FromString("write"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDataStream&"}; @@ -11126,7 +11126,7 @@ QModelIndex PythonQtShell_QStandardItemModel::buddy(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -11159,7 +11159,7 @@ bool PythonQtShell_QStandardItemModel::canDropMimeData(const QMimeData* data0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -11192,7 +11192,7 @@ bool PythonQtShell_QStandardItemModel::canFetchMore(const QModelIndex& parent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -11225,7 +11225,7 @@ void PythonQtShell_QStandardItemModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -11247,7 +11247,7 @@ int PythonQtShell_QStandardItemModel::columnCount(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -11280,7 +11280,7 @@ void PythonQtShell_QStandardItemModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -11302,7 +11302,7 @@ QVariant PythonQtShell_QStandardItemModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -11335,7 +11335,7 @@ bool PythonQtShell_QStandardItemModel::dropMimeData(const QMimeData* data0, Qt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -11368,7 +11368,7 @@ bool PythonQtShell_QStandardItemModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -11401,7 +11401,7 @@ bool PythonQtShell_QStandardItemModel::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -11434,7 +11434,7 @@ void PythonQtShell_QStandardItemModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -11456,7 +11456,7 @@ Qt::ItemFlags PythonQtShell_QStandardItemModel::flags(const QModelIndex& index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -11489,7 +11489,7 @@ bool PythonQtShell_QStandardItemModel::hasChildren(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasChildren"); + static PyObject* name = PyUnicode_FromString("hasChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -11522,7 +11522,7 @@ QVariant PythonQtShell_QStandardItemModel::headerData(int section0, Qt::Orient if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -11555,7 +11555,7 @@ QModelIndex PythonQtShell_QStandardItemModel::index(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -11588,7 +11588,7 @@ bool PythonQtShell_QStandardItemModel::insertColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11621,7 +11621,7 @@ bool PythonQtShell_QStandardItemModel::insertRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11654,7 +11654,7 @@ QMap PythonQtShell_QStandardItemModel::itemData(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -11687,7 +11687,7 @@ QList PythonQtShell_QStandardItemModel::match(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -11720,7 +11720,7 @@ QMimeData* PythonQtShell_QStandardItemModel::mimeData(const QList if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -11753,7 +11753,7 @@ QStringList PythonQtShell_QStandardItemModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -11786,7 +11786,7 @@ bool PythonQtShell_QStandardItemModel::moveColumns(const QModelIndex& sourcePa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -11819,7 +11819,7 @@ bool PythonQtShell_QStandardItemModel::moveRows(const QModelIndex& sourceParen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -11852,7 +11852,7 @@ QModelIndex PythonQtShell_QStandardItemModel::parent(const QModelIndex& child0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parent"); + static PyObject* name = PyUnicode_FromString("parent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -11885,7 +11885,7 @@ bool PythonQtShell_QStandardItemModel::removeColumns(int column0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11918,7 +11918,7 @@ bool PythonQtShell_QStandardItemModel::removeRows(int row0, int count1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -11951,7 +11951,7 @@ void PythonQtShell_QStandardItemModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -11973,7 +11973,7 @@ QHash PythonQtShell_QStandardItemModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -12006,7 +12006,7 @@ int PythonQtShell_QStandardItemModel::rowCount(const QModelIndex& parent0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -12039,7 +12039,7 @@ bool PythonQtShell_QStandardItemModel::setData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -12072,7 +12072,7 @@ bool PythonQtShell_QStandardItemModel::setHeaderData(int section0, Qt::Orienta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -12105,7 +12105,7 @@ bool PythonQtShell_QStandardItemModel::setItemData(const QModelIndex& index0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -12138,7 +12138,7 @@ QModelIndex PythonQtShell_QStandardItemModel::sibling(int row0, int column1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -12171,7 +12171,7 @@ void PythonQtShell_QStandardItemModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -12193,7 +12193,7 @@ QSize PythonQtShell_QStandardItemModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -12226,7 +12226,7 @@ bool PythonQtShell_QStandardItemModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -12259,7 +12259,7 @@ Qt::DropActions PythonQtShell_QStandardItemModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12292,7 +12292,7 @@ Qt::DropActions PythonQtShell_QStandardItemModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -12325,7 +12325,7 @@ void PythonQtShell_QStandardItemModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -12628,7 +12628,7 @@ void PythonQtShell_QStatusBar::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -12650,7 +12650,7 @@ void PythonQtShell_QStatusBar::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12672,7 +12672,7 @@ void PythonQtShell_QStatusBar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -12694,7 +12694,7 @@ void PythonQtShell_QStatusBar::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -12716,7 +12716,7 @@ void PythonQtShell_QStatusBar::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -12738,7 +12738,7 @@ void PythonQtShell_QStatusBar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12760,7 +12760,7 @@ int PythonQtShell_QStatusBar::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -12793,7 +12793,7 @@ void PythonQtShell_QStatusBar::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -12815,7 +12815,7 @@ void PythonQtShell_QStatusBar::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -12837,7 +12837,7 @@ void PythonQtShell_QStatusBar::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -12859,7 +12859,7 @@ void PythonQtShell_QStatusBar::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -12881,7 +12881,7 @@ void PythonQtShell_QStatusBar::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -12903,7 +12903,7 @@ bool PythonQtShell_QStatusBar::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -12936,7 +12936,7 @@ bool PythonQtShell_QStatusBar::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -12969,7 +12969,7 @@ void PythonQtShell_QStatusBar::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -12991,7 +12991,7 @@ bool PythonQtShell_QStatusBar::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -13024,7 +13024,7 @@ void PythonQtShell_QStatusBar::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -13046,7 +13046,7 @@ bool PythonQtShell_QStatusBar::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -13079,7 +13079,7 @@ int PythonQtShell_QStatusBar::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -13112,7 +13112,7 @@ void PythonQtShell_QStatusBar::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -13134,7 +13134,7 @@ void PythonQtShell_QStatusBar::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -13156,7 +13156,7 @@ void PythonQtShell_QStatusBar::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -13178,7 +13178,7 @@ QVariant PythonQtShell_QStatusBar::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -13211,7 +13211,7 @@ void PythonQtShell_QStatusBar::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13233,7 +13233,7 @@ void PythonQtShell_QStatusBar::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -13255,7 +13255,7 @@ void PythonQtShell_QStatusBar::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13277,7 +13277,7 @@ int PythonQtShell_QStatusBar::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -13310,7 +13310,7 @@ QSize PythonQtShell_QStatusBar::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13343,7 +13343,7 @@ void PythonQtShell_QStatusBar::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13365,7 +13365,7 @@ void PythonQtShell_QStatusBar::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13387,7 +13387,7 @@ void PythonQtShell_QStatusBar::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13409,7 +13409,7 @@ void PythonQtShell_QStatusBar::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -13431,7 +13431,7 @@ void PythonQtShell_QStatusBar::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -13453,7 +13453,7 @@ bool PythonQtShell_QStatusBar::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -13486,7 +13486,7 @@ QPaintEngine* PythonQtShell_QStatusBar::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -13519,7 +13519,7 @@ void PythonQtShell_QStatusBar::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -13541,7 +13541,7 @@ QPaintDevice* PythonQtShell_QStatusBar::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -13574,7 +13574,7 @@ void PythonQtShell_QStatusBar::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -13596,7 +13596,7 @@ void PythonQtShell_QStatusBar::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -13618,7 +13618,7 @@ QPainter* PythonQtShell_QStatusBar::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -13651,7 +13651,7 @@ void PythonQtShell_QStatusBar::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -13673,7 +13673,7 @@ QSize PythonQtShell_QStatusBar::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -13706,7 +13706,7 @@ void PythonQtShell_QStatusBar::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -13728,7 +13728,7 @@ void PythonQtShell_QStatusBar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -13750,7 +13750,7 @@ void PythonQtShell_QStatusBar::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -13856,7 +13856,7 @@ QModelIndex PythonQtShell_QStringListModel::buddy(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -13889,7 +13889,7 @@ bool PythonQtShell_QStringListModel::canDropMimeData(const QMimeData* data0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -13922,7 +13922,7 @@ bool PythonQtShell_QStringListModel::canFetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -13955,7 +13955,7 @@ void PythonQtShell_QStringListModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -13977,7 +13977,7 @@ void PythonQtShell_QStringListModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -13999,7 +13999,7 @@ QVariant PythonQtShell_QStringListModel::data(const QModelIndex& index0, int if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -14032,7 +14032,7 @@ bool PythonQtShell_QStringListModel::dropMimeData(const QMimeData* data0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -14065,7 +14065,7 @@ bool PythonQtShell_QStringListModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -14098,7 +14098,7 @@ bool PythonQtShell_QStringListModel::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -14131,7 +14131,7 @@ void PythonQtShell_QStringListModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -14153,7 +14153,7 @@ Qt::ItemFlags PythonQtShell_QStringListModel::flags(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -14186,7 +14186,7 @@ QVariant PythonQtShell_QStringListModel::headerData(int section0, Qt::Orientat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -14219,7 +14219,7 @@ QModelIndex PythonQtShell_QStringListModel::index(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14252,7 +14252,7 @@ bool PythonQtShell_QStringListModel::insertColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14285,7 +14285,7 @@ bool PythonQtShell_QStringListModel::insertRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14318,7 +14318,7 @@ QMap PythonQtShell_QStringListModel::itemData(const QModelInde if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -14351,7 +14351,7 @@ QList PythonQtShell_QStringListModel::match(const QModelIndex& s if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -14384,7 +14384,7 @@ QMimeData* PythonQtShell_QStringListModel::mimeData(const QList& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -14417,7 +14417,7 @@ QStringList PythonQtShell_QStringListModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -14450,7 +14450,7 @@ bool PythonQtShell_QStringListModel::moveColumns(const QModelIndex& sourcePare if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -14483,7 +14483,7 @@ bool PythonQtShell_QStringListModel::moveRows(const QModelIndex& sourceParent0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -14516,7 +14516,7 @@ bool PythonQtShell_QStringListModel::removeColumns(int column0, int count1, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14549,7 +14549,7 @@ bool PythonQtShell_QStringListModel::removeRows(int row0, int count1, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -14582,7 +14582,7 @@ void PythonQtShell_QStringListModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -14604,7 +14604,7 @@ QHash PythonQtShell_QStringListModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -14637,7 +14637,7 @@ int PythonQtShell_QStringListModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -14670,7 +14670,7 @@ bool PythonQtShell_QStringListModel::setData(const QModelIndex& index0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -14703,7 +14703,7 @@ bool PythonQtShell_QStringListModel::setHeaderData(int section0, Qt::Orientati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -14736,7 +14736,7 @@ bool PythonQtShell_QStringListModel::setItemData(const QModelIndex& index0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -14769,7 +14769,7 @@ QModelIndex PythonQtShell_QStringListModel::sibling(int row0, int column1, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -14802,7 +14802,7 @@ void PythonQtShell_QStringListModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -14824,7 +14824,7 @@ QSize PythonQtShell_QStringListModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -14857,7 +14857,7 @@ bool PythonQtShell_QStringListModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -14890,7 +14890,7 @@ Qt::DropActions PythonQtShell_QStringListModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -14923,7 +14923,7 @@ Qt::DropActions PythonQtShell_QStringListModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -14956,7 +14956,7 @@ void PythonQtShell_QStringListModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp index d498a6463..751c9a3ca 100644 --- a/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui/com_trolltech_qt_gui9.cpp @@ -510,7 +510,7 @@ void PythonQtShell_QStylePlugin::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -532,7 +532,7 @@ QStyle* PythonQtShell_QStylePlugin::create(const QString& key0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStyle*" , "const QString&"}; @@ -565,7 +565,7 @@ void PythonQtShell_QStylePlugin::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -587,7 +587,7 @@ bool PythonQtShell_QStylePlugin::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -620,7 +620,7 @@ bool PythonQtShell_QStylePlugin::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -653,7 +653,7 @@ void PythonQtShell_QStylePlugin::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -703,7 +703,7 @@ void PythonQtShell_QStyledItemDelegate::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -725,7 +725,7 @@ QWidget* PythonQtShell_QStyledItemDelegate::createEditor(QWidget* parent0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createEditor"); + static PyObject* name = PyUnicode_FromString("createEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -758,7 +758,7 @@ void PythonQtShell_QStyledItemDelegate::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -780,7 +780,7 @@ void PythonQtShell_QStyledItemDelegate::destroyEditor(QWidget* editor0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("destroyEditor"); + static PyObject* name = PyUnicode_FromString("destroyEditor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -802,7 +802,7 @@ QString PythonQtShell_QStyledItemDelegate::displayText(const QVariant& value0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("displayText"); + static PyObject* name = PyUnicode_FromString("displayText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QVariant&" , "const QLocale&"}; @@ -835,7 +835,7 @@ bool PythonQtShell_QStyledItemDelegate::editorEvent(QEvent* event0, QAbstractI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("editorEvent"); + static PyObject* name = PyUnicode_FromString("editorEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*" , "QAbstractItemModel*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -868,7 +868,7 @@ bool PythonQtShell_QStyledItemDelegate::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -901,7 +901,7 @@ bool PythonQtShell_QStyledItemDelegate::eventFilter(QObject* object0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -934,7 +934,7 @@ bool PythonQtShell_QStyledItemDelegate::helpEvent(QHelpEvent* event0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("helpEvent"); + static PyObject* name = PyUnicode_FromString("helpEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QHelpEvent*" , "QAbstractItemView*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -967,7 +967,7 @@ void PythonQtShell_QStyledItemDelegate::initStyleOption(QStyleOptionViewItem* o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOptionViewItem*" , "const QModelIndex&"}; @@ -989,7 +989,7 @@ void PythonQtShell_QStyledItemDelegate::paint(QPainter* painter0, const QStyleO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -1011,7 +1011,7 @@ QVector PythonQtShell_QStyledItemDelegate::paintingRoles() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintingRoles"); + static PyObject* name = PyUnicode_FromString("paintingRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector"}; @@ -1044,7 +1044,7 @@ void PythonQtShell_QStyledItemDelegate::setEditorData(QWidget* editor0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditorData"); + static PyObject* name = PyUnicode_FromString("setEditorData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QModelIndex&"}; @@ -1066,7 +1066,7 @@ void PythonQtShell_QStyledItemDelegate::setModelData(QWidget* editor0, QAbstrac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setModelData"); + static PyObject* name = PyUnicode_FromString("setModelData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "QAbstractItemModel*" , "const QModelIndex&"}; @@ -1088,7 +1088,7 @@ QSize PythonQtShell_QStyledItemDelegate::sizeHint(const QStyleOptionViewItem& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -1121,7 +1121,7 @@ void PythonQtShell_QStyledItemDelegate::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1143,7 +1143,7 @@ void PythonQtShell_QStyledItemDelegate::updateEditorGeometry(QWidget* editor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateEditorGeometry"); + static PyObject* name = PyUnicode_FromString("updateEditorGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWidget*" , "const QStyleOptionViewItem&" , "const QModelIndex&"}; @@ -1208,7 +1208,7 @@ QSurfaceFormat PythonQtShell_QSurface::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -1241,7 +1241,7 @@ QSize PythonQtShell_QSurface::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1274,7 +1274,7 @@ QPlatformSurface* PythonQtShell_QSurface::surfaceHandle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceHandle"); + static PyObject* name = PyUnicode_FromString("surfaceHandle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPlatformSurface*"}; @@ -1307,7 +1307,7 @@ QSurface::SurfaceType PythonQtShell_QSurface::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; diff --git a/generated_cpp_56/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp b/generated_cpp_56/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp index 5e8218031..8fb43ec59 100644 --- a/generated_cpp_56/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp +++ b/generated_cpp_56/com_trolltech_qt_gui_builtin/com_trolltech_qt_gui_builtin0.cpp @@ -57,7 +57,7 @@ int PythonQtShell_QBitmap::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -90,7 +90,7 @@ int PythonQtShell_QBitmap::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -123,7 +123,7 @@ QPaintEngine* PythonQtShell_QBitmap::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1456,7 +1456,7 @@ int PythonQtShell_QImage::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1489,7 +1489,7 @@ void PythonQtShell_QImage::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1511,7 +1511,7 @@ int PythonQtShell_QImage::metric(QPaintDevice::PaintDeviceMetric metric0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1544,7 +1544,7 @@ QPaintEngine* PythonQtShell_QImage::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1577,7 +1577,7 @@ QPaintDevice* PythonQtShell_QImage::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1610,7 +1610,7 @@ QPainter* PythonQtShell_QImage::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2822,7 +2822,7 @@ int PythonQtShell_QPixmap::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2855,7 +2855,7 @@ void PythonQtShell_QPixmap::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2877,7 +2877,7 @@ int PythonQtShell_QPixmap::metric(QPaintDevice::PaintDeviceMetric arg__1) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2910,7 +2910,7 @@ QPaintEngine* PythonQtShell_QPixmap::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -2943,7 +2943,7 @@ QPaintDevice* PythonQtShell_QPixmap::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -2976,7 +2976,7 @@ QPainter* PythonQtShell_QPixmap::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; diff --git a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp index 507456502..f0532289c 100644 --- a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp +++ b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia0.cpp @@ -47,7 +47,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -69,7 +69,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -91,7 +91,7 @@ QString PythonQtShell_QAbstractAudioDeviceInfo::deviceName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceName"); + static PyObject* name = PyUnicode_FromString("deviceName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -124,7 +124,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -157,7 +157,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -190,7 +190,7 @@ bool PythonQtShell_QAbstractAudioDeviceInfo::isFormatSupported(const QAudioForm if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QAudioFormat&"}; @@ -223,7 +223,7 @@ QAudioFormat PythonQtShell_QAbstractAudioDeviceInfo::preferredFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preferredFormat"); + static PyObject* name = PyUnicode_FromString("preferredFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -256,7 +256,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedB if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedByteOrders"); + static PyObject* name = PyUnicode_FromString("supportedByteOrders"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -289,7 +289,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedChannelCounts() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedChannelCounts"); + static PyObject* name = PyUnicode_FromString("supportedChannelCounts"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -322,7 +322,7 @@ QStringList PythonQtShell_QAbstractAudioDeviceInfo::supportedCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedCodecs"); + static PyObject* name = PyUnicode_FromString("supportedCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -355,7 +355,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedSampleRates() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleRates"); + static PyObject* name = PyUnicode_FromString("supportedSampleRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -388,7 +388,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::supportedSampleSizes() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleSizes"); + static PyObject* name = PyUnicode_FromString("supportedSampleSizes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -421,7 +421,7 @@ QList PythonQtShell_QAbstractAudioDeviceInfo::suppor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleTypes"); + static PyObject* name = PyUnicode_FromString("supportedSampleTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -454,7 +454,7 @@ void PythonQtShell_QAbstractAudioDeviceInfo::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -544,7 +544,7 @@ int PythonQtShell_QAbstractAudioInput::bufferSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferSize"); + static PyObject* name = PyUnicode_FromString("bufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -577,7 +577,7 @@ int PythonQtShell_QAbstractAudioInput::bytesReady() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesReady"); + static PyObject* name = PyUnicode_FromString("bytesReady"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -610,7 +610,7 @@ void PythonQtShell_QAbstractAudioInput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -632,7 +632,7 @@ void PythonQtShell_QAbstractAudioInput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -654,7 +654,7 @@ qint64 PythonQtShell_QAbstractAudioInput::elapsedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elapsedUSecs"); + static PyObject* name = PyUnicode_FromString("elapsedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -687,7 +687,7 @@ QAudio::Error PythonQtShell_QAbstractAudioInput::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Error"}; @@ -720,7 +720,7 @@ bool PythonQtShell_QAbstractAudioInput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -753,7 +753,7 @@ bool PythonQtShell_QAbstractAudioInput::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -786,7 +786,7 @@ QAudioFormat PythonQtShell_QAbstractAudioInput::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -819,7 +819,7 @@ int PythonQtShell_QAbstractAudioInput::notifyInterval() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notifyInterval"); + static PyObject* name = PyUnicode_FromString("notifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -852,7 +852,7 @@ int PythonQtShell_QAbstractAudioInput::periodSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("periodSize"); + static PyObject* name = PyUnicode_FromString("periodSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -885,7 +885,7 @@ qint64 PythonQtShell_QAbstractAudioInput::processedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processedUSecs"); + static PyObject* name = PyUnicode_FromString("processedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -918,7 +918,7 @@ void PythonQtShell_QAbstractAudioInput::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -940,7 +940,7 @@ void PythonQtShell_QAbstractAudioInput::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -962,7 +962,7 @@ void PythonQtShell_QAbstractAudioInput::setBufferSize(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferSize"); + static PyObject* name = PyUnicode_FromString("setBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -984,7 +984,7 @@ void PythonQtShell_QAbstractAudioInput::setFormat(const QAudioFormat& fmt0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFormat"); + static PyObject* name = PyUnicode_FromString("setFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -1006,7 +1006,7 @@ void PythonQtShell_QAbstractAudioInput::setNotifyInterval(int milliSeconds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNotifyInterval"); + static PyObject* name = PyUnicode_FromString("setNotifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1028,7 +1028,7 @@ void PythonQtShell_QAbstractAudioInput::setVolume(qreal arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1050,7 +1050,7 @@ QIODevice* PythonQtShell_QAbstractAudioInput::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -1083,7 +1083,7 @@ void PythonQtShell_QAbstractAudioInput::start(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -1105,7 +1105,7 @@ QAudio::State PythonQtShell_QAbstractAudioInput::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::State"}; @@ -1138,7 +1138,7 @@ void PythonQtShell_QAbstractAudioInput::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1160,7 +1160,7 @@ void PythonQtShell_QAbstractAudioInput::suspend() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("suspend"); + static PyObject* name = PyUnicode_FromString("suspend"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1182,7 +1182,7 @@ void PythonQtShell_QAbstractAudioInput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1204,7 +1204,7 @@ qreal PythonQtShell_QAbstractAudioInput::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -1360,7 +1360,7 @@ int PythonQtShell_QAbstractAudioOutput::bufferSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferSize"); + static PyObject* name = PyUnicode_FromString("bufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1393,7 +1393,7 @@ int PythonQtShell_QAbstractAudioOutput::bytesFree() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesFree"); + static PyObject* name = PyUnicode_FromString("bytesFree"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1426,7 +1426,7 @@ QString PythonQtShell_QAbstractAudioOutput::category() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("category"); + static PyObject* name = PyUnicode_FromString("category"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1459,7 +1459,7 @@ void PythonQtShell_QAbstractAudioOutput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1481,7 +1481,7 @@ void PythonQtShell_QAbstractAudioOutput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1503,7 +1503,7 @@ qint64 PythonQtShell_QAbstractAudioOutput::elapsedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elapsedUSecs"); + static PyObject* name = PyUnicode_FromString("elapsedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1536,7 +1536,7 @@ QAudio::Error PythonQtShell_QAbstractAudioOutput::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Error"}; @@ -1569,7 +1569,7 @@ bool PythonQtShell_QAbstractAudioOutput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1602,7 +1602,7 @@ bool PythonQtShell_QAbstractAudioOutput::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1635,7 +1635,7 @@ QAudioFormat PythonQtShell_QAbstractAudioOutput::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -1668,7 +1668,7 @@ int PythonQtShell_QAbstractAudioOutput::notifyInterval() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notifyInterval"); + static PyObject* name = PyUnicode_FromString("notifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1701,7 +1701,7 @@ int PythonQtShell_QAbstractAudioOutput::periodSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("periodSize"); + static PyObject* name = PyUnicode_FromString("periodSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1734,7 +1734,7 @@ qint64 PythonQtShell_QAbstractAudioOutput::processedUSecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processedUSecs"); + static PyObject* name = PyUnicode_FromString("processedUSecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1767,7 +1767,7 @@ void PythonQtShell_QAbstractAudioOutput::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1789,7 +1789,7 @@ void PythonQtShell_QAbstractAudioOutput::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1811,7 +1811,7 @@ void PythonQtShell_QAbstractAudioOutput::setBufferSize(int value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferSize"); + static PyObject* name = PyUnicode_FromString("setBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1833,7 +1833,7 @@ void PythonQtShell_QAbstractAudioOutput::setCategory(const QString& arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCategory"); + static PyObject* name = PyUnicode_FromString("setCategory"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1855,7 +1855,7 @@ void PythonQtShell_QAbstractAudioOutput::setFormat(const QAudioFormat& fmt0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFormat"); + static PyObject* name = PyUnicode_FromString("setFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -1877,7 +1877,7 @@ void PythonQtShell_QAbstractAudioOutput::setNotifyInterval(int milliSeconds0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNotifyInterval"); + static PyObject* name = PyUnicode_FromString("setNotifyInterval"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -1899,7 +1899,7 @@ void PythonQtShell_QAbstractAudioOutput::setVolume(qreal arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1921,7 +1921,7 @@ QIODevice* PythonQtShell_QAbstractAudioOutput::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -1954,7 +1954,7 @@ void PythonQtShell_QAbstractAudioOutput::start(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -1976,7 +1976,7 @@ QAudio::State PythonQtShell_QAbstractAudioOutput::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::State"}; @@ -2009,7 +2009,7 @@ void PythonQtShell_QAbstractAudioOutput::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2031,7 +2031,7 @@ void PythonQtShell_QAbstractAudioOutput::suspend() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("suspend"); + static PyObject* name = PyUnicode_FromString("suspend"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2053,7 +2053,7 @@ void PythonQtShell_QAbstractAudioOutput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2075,7 +2075,7 @@ qreal PythonQtShell_QAbstractAudioOutput::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -2241,7 +2241,7 @@ QVariant PythonQtShell_QAbstractVideoBuffer::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -2274,7 +2274,7 @@ uchar* PythonQtShell_QAbstractVideoBuffer::map(QAbstractVideoBuffer::MapMode m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("map"); + static PyObject* name = PyUnicode_FromString("map"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"uchar*" , "QAbstractVideoBuffer::MapMode" , "int*" , "int*"}; @@ -2307,7 +2307,7 @@ QAbstractVideoBuffer::MapMode PythonQtShell_QAbstractVideoBuffer::mapMode() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mapMode"); + static PyObject* name = PyUnicode_FromString("mapMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoBuffer::MapMode"}; @@ -2340,7 +2340,7 @@ void PythonQtShell_QAbstractVideoBuffer::release() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2362,7 +2362,7 @@ void PythonQtShell_QAbstractVideoBuffer::unmap() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unmap"); + static PyObject* name = PyUnicode_FromString("unmap"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2424,7 +2424,7 @@ void PythonQtShell_QAbstractVideoSurface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2446,7 +2446,7 @@ void PythonQtShell_QAbstractVideoSurface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2468,7 +2468,7 @@ bool PythonQtShell_QAbstractVideoSurface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2501,7 +2501,7 @@ bool PythonQtShell_QAbstractVideoSurface::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2534,7 +2534,7 @@ bool PythonQtShell_QAbstractVideoSurface::isFormatSupported(const QVideoSurface if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFormatSupported"); + static PyObject* name = PyUnicode_FromString("isFormatSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -2567,7 +2567,7 @@ QVideoSurfaceFormat PythonQtShell_QAbstractVideoSurface::nearestFormat(const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nearestFormat"); + static PyObject* name = PyUnicode_FromString("nearestFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoSurfaceFormat" , "const QVideoSurfaceFormat&"}; @@ -2600,7 +2600,7 @@ bool PythonQtShell_QAbstractVideoSurface::present(const QVideoFrame& frame0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("present"); + static PyObject* name = PyUnicode_FromString("present"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoFrame&"}; @@ -2633,7 +2633,7 @@ bool PythonQtShell_QAbstractVideoSurface::start(const QVideoSurfaceFormat& for if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QVideoSurfaceFormat&"}; @@ -2666,7 +2666,7 @@ void PythonQtShell_QAbstractVideoSurface::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2688,7 +2688,7 @@ QList PythonQtShell_QAbstractVideoSurface::supported if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedPixelFormats"); + static PyObject* name = PyUnicode_FromString("supportedPixelFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAbstractVideoBuffer::HandleType"}; @@ -2721,7 +2721,7 @@ void PythonQtShell_QAbstractVideoSurface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2901,7 +2901,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QAudioDecoder::availability() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -2934,7 +2934,7 @@ bool PythonQtShell_QAudioDecoder::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -2967,7 +2967,7 @@ void PythonQtShell_QAudioDecoder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2989,7 +2989,7 @@ void PythonQtShell_QAudioDecoder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3011,7 +3011,7 @@ bool PythonQtShell_QAudioDecoder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3044,7 +3044,7 @@ bool PythonQtShell_QAudioDecoder::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3077,7 +3077,7 @@ bool PythonQtShell_QAudioDecoder::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3110,7 +3110,7 @@ QMediaService* PythonQtShell_QAudioDecoder::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -3143,7 +3143,7 @@ void PythonQtShell_QAudioDecoder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3165,7 +3165,7 @@ void PythonQtShell_QAudioDecoder::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -3280,7 +3280,7 @@ QAudioFormat PythonQtShell_QAudioDecoderControl::audioFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioFormat"); + static PyObject* name = PyUnicode_FromString("audioFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioFormat"}; @@ -3313,7 +3313,7 @@ bool PythonQtShell_QAudioDecoderControl::bufferAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferAvailable"); + static PyObject* name = PyUnicode_FromString("bufferAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3346,7 +3346,7 @@ void PythonQtShell_QAudioDecoderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3368,7 +3368,7 @@ void PythonQtShell_QAudioDecoderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3390,7 +3390,7 @@ qint64 PythonQtShell_QAudioDecoderControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3423,7 +3423,7 @@ bool PythonQtShell_QAudioDecoderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3456,7 +3456,7 @@ bool PythonQtShell_QAudioDecoderControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3489,7 +3489,7 @@ qint64 PythonQtShell_QAudioDecoderControl::position() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("position"); + static PyObject* name = PyUnicode_FromString("position"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3522,7 +3522,7 @@ QAudioBuffer PythonQtShell_QAudioDecoderControl::read() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("read"); + static PyObject* name = PyUnicode_FromString("read"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioBuffer"}; @@ -3555,7 +3555,7 @@ void PythonQtShell_QAudioDecoderControl::setAudioFormat(const QAudioFormat& for if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioFormat"); + static PyObject* name = PyUnicode_FromString("setAudioFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioFormat&"}; @@ -3577,7 +3577,7 @@ void PythonQtShell_QAudioDecoderControl::setSourceDevice(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceDevice"); + static PyObject* name = PyUnicode_FromString("setSourceDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -3599,7 +3599,7 @@ void PythonQtShell_QAudioDecoderControl::setSourceFilename(const QString& fileN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSourceFilename"); + static PyObject* name = PyUnicode_FromString("setSourceFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3621,7 +3621,7 @@ QIODevice* PythonQtShell_QAudioDecoderControl::sourceDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceDevice"); + static PyObject* name = PyUnicode_FromString("sourceDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*"}; @@ -3654,7 +3654,7 @@ QString PythonQtShell_QAudioDecoderControl::sourceFilename() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sourceFilename"); + static PyObject* name = PyUnicode_FromString("sourceFilename"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3687,7 +3687,7 @@ void PythonQtShell_QAudioDecoderControl::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3709,7 +3709,7 @@ QAudioDecoder::State PythonQtShell_QAudioDecoderControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioDecoder::State"}; @@ -3742,7 +3742,7 @@ void PythonQtShell_QAudioDecoderControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3764,7 +3764,7 @@ void PythonQtShell_QAudioDecoderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4079,7 +4079,7 @@ QAudioEncoderSettings PythonQtShell_QAudioEncoderSettingsControl::audioSettings if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioSettings"); + static PyObject* name = PyUnicode_FromString("audioSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudioEncoderSettings"}; @@ -4112,7 +4112,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4134,7 +4134,7 @@ QString PythonQtShell_QAudioEncoderSettingsControl::codecDescription(const QStr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("codecDescription"); + static PyObject* name = PyUnicode_FromString("codecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -4167,7 +4167,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4189,7 +4189,7 @@ bool PythonQtShell_QAudioEncoderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4222,7 +4222,7 @@ bool PythonQtShell_QAudioEncoderSettingsControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4255,7 +4255,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::setAudioSettings(const QAudioEn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioSettings"); + static PyObject* name = PyUnicode_FromString("setAudioSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QAudioEncoderSettings&"}; @@ -4277,7 +4277,7 @@ QStringList PythonQtShell_QAudioEncoderSettingsControl::supportedAudioCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedAudioCodecs"); + static PyObject* name = PyUnicode_FromString("supportedAudioCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4310,7 +4310,7 @@ QList PythonQtShell_QAudioEncoderSettingsControl::supportedSampleRates(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedSampleRates"); + static PyObject* name = PyUnicode_FromString("supportedSampleRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QAudioEncoderSettings&" , "bool*"}; @@ -4343,7 +4343,7 @@ void PythonQtShell_QAudioEncoderSettingsControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4545,7 +4545,7 @@ void PythonQtShell_QAudioInput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4567,7 +4567,7 @@ void PythonQtShell_QAudioInput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4589,7 +4589,7 @@ bool PythonQtShell_QAudioInput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4622,7 +4622,7 @@ bool PythonQtShell_QAudioInput::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4655,7 +4655,7 @@ void PythonQtShell_QAudioInput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4799,7 +4799,7 @@ QString PythonQtShell_QAudioInputSelectorControl::activeInput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("activeInput"); + static PyObject* name = PyUnicode_FromString("activeInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4832,7 +4832,7 @@ QList PythonQtShell_QAudioInputSelectorControl::availableInputs() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableInputs"); + static PyObject* name = PyUnicode_FromString("availableInputs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4865,7 +4865,7 @@ void PythonQtShell_QAudioInputSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4887,7 +4887,7 @@ void PythonQtShell_QAudioInputSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4909,7 +4909,7 @@ QString PythonQtShell_QAudioInputSelectorControl::defaultInput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultInput"); + static PyObject* name = PyUnicode_FromString("defaultInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4942,7 +4942,7 @@ bool PythonQtShell_QAudioInputSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4975,7 +4975,7 @@ bool PythonQtShell_QAudioInputSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5008,7 +5008,7 @@ QString PythonQtShell_QAudioInputSelectorControl::inputDescription(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputDescription"); + static PyObject* name = PyUnicode_FromString("inputDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5041,7 +5041,7 @@ void PythonQtShell_QAudioInputSelectorControl::setActiveInput(const QString& na if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActiveInput"); + static PyObject* name = PyUnicode_FromString("setActiveInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5063,7 +5063,7 @@ void PythonQtShell_QAudioInputSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5128,7 +5128,7 @@ void PythonQtShell_QAudioOutput::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5150,7 +5150,7 @@ void PythonQtShell_QAudioOutput::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5172,7 +5172,7 @@ bool PythonQtShell_QAudioOutput::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5205,7 +5205,7 @@ bool PythonQtShell_QAudioOutput::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5238,7 +5238,7 @@ void PythonQtShell_QAudioOutput::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5392,7 +5392,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::activeOutput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("activeOutput"); + static PyObject* name = PyUnicode_FromString("activeOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5425,7 +5425,7 @@ QList PythonQtShell_QAudioOutputSelectorControl::availableOutputs() c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableOutputs"); + static PyObject* name = PyUnicode_FromString("availableOutputs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -5458,7 +5458,7 @@ void PythonQtShell_QAudioOutputSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5480,7 +5480,7 @@ void PythonQtShell_QAudioOutputSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5502,7 +5502,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::defaultOutput() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultOutput"); + static PyObject* name = PyUnicode_FromString("defaultOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5535,7 +5535,7 @@ bool PythonQtShell_QAudioOutputSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5568,7 +5568,7 @@ bool PythonQtShell_QAudioOutputSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5601,7 +5601,7 @@ QString PythonQtShell_QAudioOutputSelectorControl::outputDescription(const QStr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("outputDescription"); + static PyObject* name = PyUnicode_FromString("outputDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5634,7 +5634,7 @@ void PythonQtShell_QAudioOutputSelectorControl::setActiveOutput(const QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActiveOutput"); + static PyObject* name = PyUnicode_FromString("setActiveOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5656,7 +5656,7 @@ void PythonQtShell_QAudioOutputSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5721,7 +5721,7 @@ void PythonQtShell_QAudioProbe::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5743,7 +5743,7 @@ void PythonQtShell_QAudioProbe::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5765,7 +5765,7 @@ bool PythonQtShell_QAudioProbe::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5798,7 +5798,7 @@ bool PythonQtShell_QAudioProbe::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5831,7 +5831,7 @@ void PythonQtShell_QAudioProbe::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5891,7 +5891,7 @@ void PythonQtShell_QAudioRecorder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5913,7 +5913,7 @@ void PythonQtShell_QAudioRecorder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5935,7 +5935,7 @@ bool PythonQtShell_QAudioRecorder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5968,7 +5968,7 @@ bool PythonQtShell_QAudioRecorder::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6001,7 +6001,7 @@ QMediaObject* PythonQtShell_QAudioRecorder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -6034,7 +6034,7 @@ bool PythonQtShell_QAudioRecorder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -6067,7 +6067,7 @@ void PythonQtShell_QAudioRecorder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6132,7 +6132,7 @@ QAudio::Role PythonQtShell_QAudioRoleControl::audioRole() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("audioRole"); + static PyObject* name = PyUnicode_FromString("audioRole"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAudio::Role"}; @@ -6165,7 +6165,7 @@ void PythonQtShell_QAudioRoleControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6187,7 +6187,7 @@ void PythonQtShell_QAudioRoleControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6209,7 +6209,7 @@ bool PythonQtShell_QAudioRoleControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6242,7 +6242,7 @@ bool PythonQtShell_QAudioRoleControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6275,7 +6275,7 @@ void PythonQtShell_QAudioRoleControl::setAudioRole(QAudio::Role role0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAudioRole"); + static PyObject* name = PyUnicode_FromString("setAudioRole"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAudio::Role"}; @@ -6297,7 +6297,7 @@ QList PythonQtShell_QAudioRoleControl::supportedAudioRoles() con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedAudioRoles"); + static PyObject* name = PyUnicode_FromString("supportedAudioRoles"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -6330,7 +6330,7 @@ void PythonQtShell_QAudioRoleControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6390,7 +6390,7 @@ QList PythonQtShell_QAudioSystemFactoryInterface::availableDevices if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableDevices"); + static PyObject* name = PyUnicode_FromString("availableDevices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAudio::Mode"}; @@ -6423,7 +6423,7 @@ QAbstractAudioDeviceInfo* PythonQtShell_QAudioSystemFactoryInterface::createDev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createDeviceInfo"); + static PyObject* name = PyUnicode_FromString("createDeviceInfo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioDeviceInfo*" , "const QByteArray&" , "QAudio::Mode"}; @@ -6456,7 +6456,7 @@ QAbstractAudioInput* PythonQtShell_QAudioSystemFactoryInterface::createInput(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createInput"); + static PyObject* name = PyUnicode_FromString("createInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioInput*" , "const QByteArray&"}; @@ -6489,7 +6489,7 @@ QAbstractAudioOutput* PythonQtShell_QAudioSystemFactoryInterface::createOutput( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createOutput"); + static PyObject* name = PyUnicode_FromString("createOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioOutput*" , "const QByteArray&"}; @@ -6552,7 +6552,7 @@ QList PythonQtShell_QAudioSystemPlugin::availableDevices(QAudio::M if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableDevices"); + static PyObject* name = PyUnicode_FromString("availableDevices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QAudio::Mode"}; @@ -6585,7 +6585,7 @@ QAbstractAudioDeviceInfo* PythonQtShell_QAudioSystemPlugin::createDeviceInfo(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createDeviceInfo"); + static PyObject* name = PyUnicode_FromString("createDeviceInfo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioDeviceInfo*" , "const QByteArray&" , "QAudio::Mode"}; @@ -6618,7 +6618,7 @@ QAbstractAudioInput* PythonQtShell_QAudioSystemPlugin::createInput(const QByteA if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createInput"); + static PyObject* name = PyUnicode_FromString("createInput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioInput*" , "const QByteArray&"}; @@ -6651,7 +6651,7 @@ QAbstractAudioOutput* PythonQtShell_QAudioSystemPlugin::createOutput(const QByt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createOutput"); + static PyObject* name = PyUnicode_FromString("createOutput"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractAudioOutput*" , "const QByteArray&"}; @@ -6727,7 +6727,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QCamera::availability() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -6760,7 +6760,7 @@ bool PythonQtShell_QCamera::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -6793,7 +6793,7 @@ void PythonQtShell_QCamera::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6815,7 +6815,7 @@ void PythonQtShell_QCamera::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6837,7 +6837,7 @@ bool PythonQtShell_QCamera::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6870,7 +6870,7 @@ bool PythonQtShell_QCamera::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6903,7 +6903,7 @@ bool PythonQtShell_QCamera::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6936,7 +6936,7 @@ QMediaService* PythonQtShell_QCamera::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -6969,7 +6969,7 @@ void PythonQtShell_QCamera::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6991,7 +6991,7 @@ void PythonQtShell_QCamera::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7168,7 +7168,7 @@ QVideoFrame::PixelFormat PythonQtShell_QCameraCaptureBufferFormatControl::buffe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferFormat"); + static PyObject* name = PyUnicode_FromString("bufferFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoFrame::PixelFormat"}; @@ -7201,7 +7201,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::childEvent(QChildEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7223,7 +7223,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::customEvent(QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7245,7 +7245,7 @@ bool PythonQtShell_QCameraCaptureBufferFormatControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7278,7 +7278,7 @@ bool PythonQtShell_QCameraCaptureBufferFormatControl::eventFilter(QObject* wat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7311,7 +7311,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::setBufferFormat(QVideoFram if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBufferFormat"); + static PyObject* name = PyUnicode_FromString("setBufferFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QVideoFrame::PixelFormat"}; @@ -7333,7 +7333,7 @@ QList PythonQtShell_QCameraCaptureBufferFormatContro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedBufferFormats"); + static PyObject* name = PyUnicode_FromString("supportedBufferFormats"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -7366,7 +7366,7 @@ void PythonQtShell_QCameraCaptureBufferFormatControl::timerEvent(QTimerEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7426,7 +7426,7 @@ QCameraImageCapture::CaptureDestinations PythonQtShell_QCameraCaptureDestinatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("captureDestination"); + static PyObject* name = PyUnicode_FromString("captureDestination"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraImageCapture::CaptureDestinations"}; @@ -7459,7 +7459,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::childEvent(QChildEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7481,7 +7481,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::customEvent(QEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7503,7 +7503,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7536,7 +7536,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::eventFilter(QObject* watc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7569,7 +7569,7 @@ bool PythonQtShell_QCameraCaptureDestinationControl::isCaptureDestinationSuppor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCaptureDestinationSupported"); + static PyObject* name = PyUnicode_FromString("isCaptureDestinationSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageCapture::CaptureDestinations"}; @@ -7602,7 +7602,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::setCaptureDestination(QCame if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCaptureDestination"); + static PyObject* name = PyUnicode_FromString("setCaptureDestination"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageCapture::CaptureDestinations"}; @@ -7624,7 +7624,7 @@ void PythonQtShell_QCameraCaptureDestinationControl::timerEvent(QTimerEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7684,7 +7684,7 @@ bool PythonQtShell_QCameraControl::canChangeProperty(QCameraControl::PropertyCh if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canChangeProperty"); + static PyObject* name = PyUnicode_FromString("canChangeProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraControl::PropertyChangeType" , "QCamera::Status"}; @@ -7717,7 +7717,7 @@ QCamera::CaptureModes PythonQtShell_QCameraControl::captureMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("captureMode"); + static PyObject* name = PyUnicode_FromString("captureMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::CaptureModes"}; @@ -7750,7 +7750,7 @@ void PythonQtShell_QCameraControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7772,7 +7772,7 @@ void PythonQtShell_QCameraControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7794,7 +7794,7 @@ bool PythonQtShell_QCameraControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7827,7 +7827,7 @@ bool PythonQtShell_QCameraControl::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7860,7 +7860,7 @@ bool PythonQtShell_QCameraControl::isCaptureModeSupported(QCamera::CaptureModes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCaptureModeSupported"); + static PyObject* name = PyUnicode_FromString("isCaptureModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCamera::CaptureModes"}; @@ -7893,7 +7893,7 @@ void PythonQtShell_QCameraControl::setCaptureMode(QCamera::CaptureModes arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCaptureMode"); + static PyObject* name = PyUnicode_FromString("setCaptureMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::CaptureModes"}; @@ -7915,7 +7915,7 @@ void PythonQtShell_QCameraControl::setState(QCamera::State state0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setState"); + static PyObject* name = PyUnicode_FromString("setState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::State"}; @@ -7937,7 +7937,7 @@ QCamera::State PythonQtShell_QCameraControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::State"}; @@ -7970,7 +7970,7 @@ QCamera::Status PythonQtShell_QCameraControl::status() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("status"); + static PyObject* name = PyUnicode_FromString("status"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Status"}; @@ -8003,7 +8003,7 @@ void PythonQtShell_QCameraControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8185,7 +8185,7 @@ QVariant PythonQtShell_QCameraExposureControl::actualValue(QCameraExposureContr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actualValue"); + static PyObject* name = PyUnicode_FromString("actualValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraExposureControl::ExposureParameter"}; @@ -8218,7 +8218,7 @@ void PythonQtShell_QCameraExposureControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8240,7 +8240,7 @@ void PythonQtShell_QCameraExposureControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8262,7 +8262,7 @@ bool PythonQtShell_QCameraExposureControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8295,7 +8295,7 @@ bool PythonQtShell_QCameraExposureControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8328,7 +8328,7 @@ bool PythonQtShell_QCameraExposureControl::isParameterSupported(QCameraExposure if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterSupported"); + static PyObject* name = PyUnicode_FromString("isParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposureControl::ExposureParameter"}; @@ -8361,7 +8361,7 @@ QVariant PythonQtShell_QCameraExposureControl::requestedValue(QCameraExposureCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedValue"); + static PyObject* name = PyUnicode_FromString("requestedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraExposureControl::ExposureParameter"}; @@ -8394,7 +8394,7 @@ bool PythonQtShell_QCameraExposureControl::setValue(QCameraExposureControl::Exp if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setValue"); + static PyObject* name = PyUnicode_FromString("setValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposureControl::ExposureParameter" , "const QVariant&"}; @@ -8427,7 +8427,7 @@ QList PythonQtShell_QCameraExposureControl::supportedParameterRange( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedParameterRange"); + static PyObject* name = PyUnicode_FromString("supportedParameterRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "QCameraExposureControl::ExposureParameter" , "bool*"}; @@ -8460,7 +8460,7 @@ void PythonQtShell_QCameraExposureControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8530,7 +8530,7 @@ void PythonQtShell_QCameraFeedbackControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8552,7 +8552,7 @@ void PythonQtShell_QCameraFeedbackControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8574,7 +8574,7 @@ bool PythonQtShell_QCameraFeedbackControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8607,7 +8607,7 @@ bool PythonQtShell_QCameraFeedbackControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8640,7 +8640,7 @@ bool PythonQtShell_QCameraFeedbackControl::isEventFeedbackEnabled(QCameraFeedba if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEventFeedbackEnabled"); + static PyObject* name = PyUnicode_FromString("isEventFeedbackEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType"}; @@ -8673,7 +8673,7 @@ bool PythonQtShell_QCameraFeedbackControl::isEventFeedbackLocked(QCameraFeedbac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isEventFeedbackLocked"); + static PyObject* name = PyUnicode_FromString("isEventFeedbackLocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType"}; @@ -8706,7 +8706,7 @@ void PythonQtShell_QCameraFeedbackControl::resetEventFeedback(QCameraFeedbackCon if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resetEventFeedback"); + static PyObject* name = PyUnicode_FromString("resetEventFeedback"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFeedbackControl::EventType"}; @@ -8728,7 +8728,7 @@ bool PythonQtShell_QCameraFeedbackControl::setEventFeedbackEnabled(QCameraFeedb if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEventFeedbackEnabled"); + static PyObject* name = PyUnicode_FromString("setEventFeedbackEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType" , "bool"}; @@ -8761,7 +8761,7 @@ bool PythonQtShell_QCameraFeedbackControl::setEventFeedbackSound(QCameraFeedbac if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEventFeedbackSound"); + static PyObject* name = PyUnicode_FromString("setEventFeedbackSound"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFeedbackControl::EventType" , "const QString&"}; @@ -8794,7 +8794,7 @@ void PythonQtShell_QCameraFeedbackControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8864,7 +8864,7 @@ void PythonQtShell_QCameraFlashControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8886,7 +8886,7 @@ void PythonQtShell_QCameraFlashControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8908,7 +8908,7 @@ bool PythonQtShell_QCameraFlashControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8941,7 +8941,7 @@ bool PythonQtShell_QCameraFlashControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8974,7 +8974,7 @@ QCameraExposure::FlashModes PythonQtShell_QCameraFlashControl::flashMode() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flashMode"); + static PyObject* name = PyUnicode_FromString("flashMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraExposure::FlashModes"}; @@ -9007,7 +9007,7 @@ bool PythonQtShell_QCameraFlashControl::isFlashModeSupported(QCameraExposure::F if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFlashModeSupported"); + static PyObject* name = PyUnicode_FromString("isFlashModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraExposure::FlashModes"}; @@ -9040,7 +9040,7 @@ bool PythonQtShell_QCameraFlashControl::isFlashReady() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFlashReady"); + static PyObject* name = PyUnicode_FromString("isFlashReady"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9073,7 +9073,7 @@ void PythonQtShell_QCameraFlashControl::setFlashMode(QCameraExposure::FlashModes if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFlashMode"); + static PyObject* name = PyUnicode_FromString("setFlashMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraExposure::FlashModes"}; @@ -9095,7 +9095,7 @@ void PythonQtShell_QCameraFlashControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp index bcbe506d7..a3fb7e7c9 100644 --- a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp +++ b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia1.cpp @@ -151,7 +151,7 @@ void PythonQtShell_QCameraFocusControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -173,7 +173,7 @@ void PythonQtShell_QCameraFocusControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -195,7 +195,7 @@ QPointF PythonQtShell_QCameraFocusControl::customFocusPoint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customFocusPoint"); + static PyObject* name = PyUnicode_FromString("customFocusPoint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPointF"}; @@ -228,7 +228,7 @@ bool PythonQtShell_QCameraFocusControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -261,7 +261,7 @@ bool PythonQtShell_QCameraFocusControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -294,7 +294,7 @@ QCameraFocus::FocusModes PythonQtShell_QCameraFocusControl::focusMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusMode"); + static PyObject* name = PyUnicode_FromString("focusMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraFocus::FocusModes"}; @@ -327,7 +327,7 @@ QCameraFocus::FocusPointMode PythonQtShell_QCameraFocusControl::focusPointMode( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusPointMode"); + static PyObject* name = PyUnicode_FromString("focusPointMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraFocus::FocusPointMode"}; @@ -360,7 +360,7 @@ QList PythonQtShell_QCameraFocusControl::focusZones() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusZones"); + static PyObject* name = PyUnicode_FromString("focusZones"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -393,7 +393,7 @@ bool PythonQtShell_QCameraFocusControl::isFocusModeSupported(QCameraFocus::Focu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFocusModeSupported"); + static PyObject* name = PyUnicode_FromString("isFocusModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFocus::FocusModes"}; @@ -426,7 +426,7 @@ bool PythonQtShell_QCameraFocusControl::isFocusPointModeSupported(QCameraFocus: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFocusPointModeSupported"); + static PyObject* name = PyUnicode_FromString("isFocusPointModeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraFocus::FocusPointMode"}; @@ -459,7 +459,7 @@ void PythonQtShell_QCameraFocusControl::setCustomFocusPoint(const QPointF& poin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCustomFocusPoint"); + static PyObject* name = PyUnicode_FromString("setCustomFocusPoint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QPointF&"}; @@ -481,7 +481,7 @@ void PythonQtShell_QCameraFocusControl::setFocusMode(QCameraFocus::FocusModes m if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFocusMode"); + static PyObject* name = PyUnicode_FromString("setFocusMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFocus::FocusModes"}; @@ -503,7 +503,7 @@ void PythonQtShell_QCameraFocusControl::setFocusPointMode(QCameraFocus::FocusPoi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFocusPointMode"); + static PyObject* name = PyUnicode_FromString("setFocusPointMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraFocus::FocusPointMode"}; @@ -525,7 +525,7 @@ void PythonQtShell_QCameraFocusControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -664,7 +664,7 @@ void PythonQtShell_QCameraImageCapture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -686,7 +686,7 @@ void PythonQtShell_QCameraImageCapture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -708,7 +708,7 @@ bool PythonQtShell_QCameraImageCapture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -741,7 +741,7 @@ bool PythonQtShell_QCameraImageCapture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -774,7 +774,7 @@ QMediaObject* PythonQtShell_QCameraImageCapture::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -807,7 +807,7 @@ bool PythonQtShell_QCameraImageCapture::setMediaObject(QMediaObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -840,7 +840,7 @@ void PythonQtShell_QCameraImageCapture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -965,7 +965,7 @@ void PythonQtShell_QCameraImageCaptureControl::cancelCapture() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelCapture"); + static PyObject* name = PyUnicode_FromString("cancelCapture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -987,7 +987,7 @@ int PythonQtShell_QCameraImageCaptureControl::capture(const QString& fileName0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("capture"); + static PyObject* name = PyUnicode_FromString("capture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -1020,7 +1020,7 @@ void PythonQtShell_QCameraImageCaptureControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1042,7 +1042,7 @@ void PythonQtShell_QCameraImageCaptureControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1064,7 +1064,7 @@ QCameraImageCapture::DriveMode PythonQtShell_QCameraImageCaptureControl::driveM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("driveMode"); + static PyObject* name = PyUnicode_FromString("driveMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraImageCapture::DriveMode"}; @@ -1097,7 +1097,7 @@ bool PythonQtShell_QCameraImageCaptureControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1130,7 +1130,7 @@ bool PythonQtShell_QCameraImageCaptureControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1163,7 +1163,7 @@ bool PythonQtShell_QCameraImageCaptureControl::isReadyForCapture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isReadyForCapture"); + static PyObject* name = PyUnicode_FromString("isReadyForCapture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1196,7 +1196,7 @@ void PythonQtShell_QCameraImageCaptureControl::setDriveMode(QCameraImageCapture: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDriveMode"); + static PyObject* name = PyUnicode_FromString("setDriveMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageCapture::DriveMode"}; @@ -1218,7 +1218,7 @@ void PythonQtShell_QCameraImageCaptureControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1375,7 +1375,7 @@ void PythonQtShell_QCameraImageProcessingControl::childEvent(QChildEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1397,7 +1397,7 @@ void PythonQtShell_QCameraImageProcessingControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1419,7 +1419,7 @@ bool PythonQtShell_QCameraImageProcessingControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1452,7 +1452,7 @@ bool PythonQtShell_QCameraImageProcessingControl::eventFilter(QObject* watched if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1485,7 +1485,7 @@ bool PythonQtShell_QCameraImageProcessingControl::isParameterSupported(QCameraI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterSupported"); + static PyObject* name = PyUnicode_FromString("isParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageProcessingControl::ProcessingParameter"}; @@ -1518,7 +1518,7 @@ bool PythonQtShell_QCameraImageProcessingControl::isParameterValueSupported(QCa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isParameterValueSupported"); + static PyObject* name = PyUnicode_FromString("isParameterValueSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraImageProcessingControl::ProcessingParameter" , "const QVariant&"}; @@ -1551,7 +1551,7 @@ QVariant PythonQtShell_QCameraImageProcessingControl::parameter(QCameraImagePro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parameter"); + static PyObject* name = PyUnicode_FromString("parameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraImageProcessingControl::ProcessingParameter"}; @@ -1584,7 +1584,7 @@ void PythonQtShell_QCameraImageProcessingControl::setParameter(QCameraImageProce if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setParameter"); + static PyObject* name = PyUnicode_FromString("setParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraImageProcessingControl::ProcessingParameter" , "const QVariant&"}; @@ -1606,7 +1606,7 @@ void PythonQtShell_QCameraImageProcessingControl::timerEvent(QTimerEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1742,7 +1742,7 @@ int PythonQtShell_QCameraInfoControl::cameraOrientation(const QString& deviceN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraOrientation"); + static PyObject* name = PyUnicode_FromString("cameraOrientation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QString&"}; @@ -1775,7 +1775,7 @@ QCamera::Position PythonQtShell_QCameraInfoControl::cameraPosition(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraPosition"); + static PyObject* name = PyUnicode_FromString("cameraPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Position" , "const QString&"}; @@ -1808,7 +1808,7 @@ void PythonQtShell_QCameraInfoControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1830,7 +1830,7 @@ void PythonQtShell_QCameraInfoControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1852,7 +1852,7 @@ bool PythonQtShell_QCameraInfoControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1885,7 +1885,7 @@ bool PythonQtShell_QCameraInfoControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1918,7 +1918,7 @@ void PythonQtShell_QCameraInfoControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1973,7 +1973,7 @@ void PythonQtShell_QCameraLocksControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1995,7 +1995,7 @@ void PythonQtShell_QCameraLocksControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2017,7 +2017,7 @@ bool PythonQtShell_QCameraLocksControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2050,7 +2050,7 @@ bool PythonQtShell_QCameraLocksControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2083,7 +2083,7 @@ QCamera::LockStatus PythonQtShell_QCameraLocksControl::lockStatus(QCamera::Lock if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lockStatus"); + static PyObject* name = PyUnicode_FromString("lockStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::LockStatus" , "QCamera::LockType"}; @@ -2116,7 +2116,7 @@ void PythonQtShell_QCameraLocksControl::searchAndLock(QCamera::LockTypes locks0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchAndLock"); + static PyObject* name = PyUnicode_FromString("searchAndLock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::LockTypes"}; @@ -2138,7 +2138,7 @@ QCamera::LockTypes PythonQtShell_QCameraLocksControl::supportedLocks() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedLocks"); + static PyObject* name = PyUnicode_FromString("supportedLocks"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::LockTypes"}; @@ -2171,7 +2171,7 @@ void PythonQtShell_QCameraLocksControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2193,7 +2193,7 @@ void PythonQtShell_QCameraLocksControl::unlock(QCamera::LockTypes locks0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unlock"); + static PyObject* name = PyUnicode_FromString("unlock"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCamera::LockTypes"}; @@ -2258,7 +2258,7 @@ void PythonQtShell_QCameraViewfinder::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2280,7 +2280,7 @@ void PythonQtShell_QCameraViewfinder::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2302,7 +2302,7 @@ void PythonQtShell_QCameraViewfinder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2324,7 +2324,7 @@ void PythonQtShell_QCameraViewfinder::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2346,7 +2346,7 @@ void PythonQtShell_QCameraViewfinder::contextMenuEvent(QContextMenuEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2368,7 +2368,7 @@ void PythonQtShell_QCameraViewfinder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2390,7 +2390,7 @@ int PythonQtShell_QCameraViewfinder::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2423,7 +2423,7 @@ void PythonQtShell_QCameraViewfinder::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2445,7 +2445,7 @@ void PythonQtShell_QCameraViewfinder::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2467,7 +2467,7 @@ void PythonQtShell_QCameraViewfinder::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2489,7 +2489,7 @@ void PythonQtShell_QCameraViewfinder::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2511,7 +2511,7 @@ void PythonQtShell_QCameraViewfinder::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2533,7 +2533,7 @@ bool PythonQtShell_QCameraViewfinder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2566,7 +2566,7 @@ bool PythonQtShell_QCameraViewfinder::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2599,7 +2599,7 @@ void PythonQtShell_QCameraViewfinder::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2621,7 +2621,7 @@ bool PythonQtShell_QCameraViewfinder::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -2654,7 +2654,7 @@ void PythonQtShell_QCameraViewfinder::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -2676,7 +2676,7 @@ bool PythonQtShell_QCameraViewfinder::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2709,7 +2709,7 @@ int PythonQtShell_QCameraViewfinder::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -2742,7 +2742,7 @@ void PythonQtShell_QCameraViewfinder::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -2764,7 +2764,7 @@ void PythonQtShell_QCameraViewfinder::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -2786,7 +2786,7 @@ void PythonQtShell_QCameraViewfinder::inputMethodEvent(QInputMethodEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -2808,7 +2808,7 @@ QVariant PythonQtShell_QCameraViewfinder::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -2841,7 +2841,7 @@ void PythonQtShell_QCameraViewfinder::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2863,7 +2863,7 @@ void PythonQtShell_QCameraViewfinder::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -2885,7 +2885,7 @@ void PythonQtShell_QCameraViewfinder::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2907,7 +2907,7 @@ QMediaObject* PythonQtShell_QCameraViewfinder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -2940,7 +2940,7 @@ int PythonQtShell_QCameraViewfinder::metric(QPaintDevice::PaintDeviceMetric ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -2973,7 +2973,7 @@ QSize PythonQtShell_QCameraViewfinder::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3006,7 +3006,7 @@ void PythonQtShell_QCameraViewfinder::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3028,7 +3028,7 @@ void PythonQtShell_QCameraViewfinder::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3050,7 +3050,7 @@ void PythonQtShell_QCameraViewfinder::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3072,7 +3072,7 @@ void PythonQtShell_QCameraViewfinder::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3094,7 +3094,7 @@ void PythonQtShell_QCameraViewfinder::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3116,7 +3116,7 @@ bool PythonQtShell_QCameraViewfinder::nativeEvent(const QByteArray& eventType0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3149,7 +3149,7 @@ QPaintEngine* PythonQtShell_QCameraViewfinder::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3182,7 +3182,7 @@ void PythonQtShell_QCameraViewfinder::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3204,7 +3204,7 @@ QPaintDevice* PythonQtShell_QCameraViewfinder::redirected(QPoint* offset0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3237,7 +3237,7 @@ void PythonQtShell_QCameraViewfinder::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3259,7 +3259,7 @@ bool PythonQtShell_QCameraViewfinder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -3292,7 +3292,7 @@ void PythonQtShell_QCameraViewfinder::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3314,7 +3314,7 @@ QPainter* PythonQtShell_QCameraViewfinder::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3347,7 +3347,7 @@ void PythonQtShell_QCameraViewfinder::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3369,7 +3369,7 @@ void PythonQtShell_QCameraViewfinder::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3391,7 +3391,7 @@ void PythonQtShell_QCameraViewfinder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3413,7 +3413,7 @@ void PythonQtShell_QCameraViewfinder::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3543,7 +3543,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::childEvent(QChildEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3565,7 +3565,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::customEvent(QEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3587,7 +3587,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3620,7 +3620,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::eventFilter(QObject* watc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3653,7 +3653,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl::isViewfinderParameterSuppo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isViewfinderParameterSupported"); + static PyObject* name = PyUnicode_FromString("isViewfinderParameterSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QCameraViewfinderSettingsControl::ViewfinderParameter"}; @@ -3686,7 +3686,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::setViewfinderParameter(QCam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setViewfinderParameter"); + static PyObject* name = PyUnicode_FromString("setViewfinderParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCameraViewfinderSettingsControl::ViewfinderParameter" , "const QVariant&"}; @@ -3708,7 +3708,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl::timerEvent(QTimerEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3730,7 +3730,7 @@ QVariant PythonQtShell_QCameraViewfinderSettingsControl::viewfinderParameter(QC if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewfinderParameter"); + static PyObject* name = PyUnicode_FromString("viewfinderParameter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QCameraViewfinderSettingsControl::ViewfinderParameter"}; @@ -3801,7 +3801,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::childEvent(QChildEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3823,7 +3823,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::customEvent(QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3845,7 +3845,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl2::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3878,7 +3878,7 @@ bool PythonQtShell_QCameraViewfinderSettingsControl2::eventFilter(QObject* wat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3911,7 +3911,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::setViewfinderSettings(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setViewfinderSettings"); + static PyObject* name = PyUnicode_FromString("setViewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QCameraViewfinderSettings&"}; @@ -3933,7 +3933,7 @@ QList PythonQtShell_QCameraViewfinderSettingsContro if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedViewfinderSettings"); + static PyObject* name = PyUnicode_FromString("supportedViewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -3966,7 +3966,7 @@ void PythonQtShell_QCameraViewfinderSettingsControl2::timerEvent(QTimerEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3988,7 +3988,7 @@ QCameraViewfinderSettings PythonQtShell_QCameraViewfinderSettingsControl2::view if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("viewfinderSettings"); + static PyObject* name = PyUnicode_FromString("viewfinderSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCameraViewfinderSettings"}; @@ -4059,7 +4059,7 @@ void PythonQtShell_QCameraZoomControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4081,7 +4081,7 @@ qreal PythonQtShell_QCameraZoomControl::currentDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentDigitalZoom"); + static PyObject* name = PyUnicode_FromString("currentDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4114,7 +4114,7 @@ qreal PythonQtShell_QCameraZoomControl::currentOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentOpticalZoom"); + static PyObject* name = PyUnicode_FromString("currentOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4147,7 +4147,7 @@ void PythonQtShell_QCameraZoomControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4169,7 +4169,7 @@ bool PythonQtShell_QCameraZoomControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4202,7 +4202,7 @@ bool PythonQtShell_QCameraZoomControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4235,7 +4235,7 @@ qreal PythonQtShell_QCameraZoomControl::maximumDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumDigitalZoom"); + static PyObject* name = PyUnicode_FromString("maximumDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4268,7 +4268,7 @@ qreal PythonQtShell_QCameraZoomControl::maximumOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("maximumOpticalZoom"); + static PyObject* name = PyUnicode_FromString("maximumOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4301,7 +4301,7 @@ qreal PythonQtShell_QCameraZoomControl::requestedDigitalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedDigitalZoom"); + static PyObject* name = PyUnicode_FromString("requestedDigitalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4334,7 +4334,7 @@ qreal PythonQtShell_QCameraZoomControl::requestedOpticalZoom() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestedOpticalZoom"); + static PyObject* name = PyUnicode_FromString("requestedOpticalZoom"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -4367,7 +4367,7 @@ void PythonQtShell_QCameraZoomControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4389,7 +4389,7 @@ void PythonQtShell_QCameraZoomControl::zoomTo(qreal optical0, qreal digital1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("zoomTo"); + static PyObject* name = PyUnicode_FromString("zoomTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal" , "qreal"}; @@ -4488,7 +4488,7 @@ void PythonQtShell_QGraphicsVideoItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4510,7 +4510,7 @@ void PythonQtShell_QGraphicsVideoItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4532,7 +4532,7 @@ bool PythonQtShell_QGraphicsVideoItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4565,7 +4565,7 @@ bool PythonQtShell_QGraphicsVideoItem::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4598,7 +4598,7 @@ QMediaObject* PythonQtShell_QGraphicsVideoItem::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -4631,7 +4631,7 @@ bool PythonQtShell_QGraphicsVideoItem::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -4664,7 +4664,7 @@ void PythonQtShell_QGraphicsVideoItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4759,7 +4759,7 @@ void PythonQtShell_QImageEncoderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4781,7 +4781,7 @@ void PythonQtShell_QImageEncoderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4803,7 +4803,7 @@ bool PythonQtShell_QImageEncoderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4836,7 +4836,7 @@ bool PythonQtShell_QImageEncoderControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4869,7 +4869,7 @@ QString PythonQtShell_QImageEncoderControl::imageCodecDescription(const QString if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageCodecDescription"); + static PyObject* name = PyUnicode_FromString("imageCodecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -4902,7 +4902,7 @@ QImageEncoderSettings PythonQtShell_QImageEncoderControl::imageSettings() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("imageSettings"); + static PyObject* name = PyUnicode_FromString("imageSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QImageEncoderSettings"}; @@ -4935,7 +4935,7 @@ void PythonQtShell_QImageEncoderControl::setImageSettings(const QImageEncoderSet if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setImageSettings"); + static PyObject* name = PyUnicode_FromString("setImageSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QImageEncoderSettings&"}; @@ -4957,7 +4957,7 @@ QStringList PythonQtShell_QImageEncoderControl::supportedImageCodecs() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedImageCodecs"); + static PyObject* name = PyUnicode_FromString("supportedImageCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4990,7 +4990,7 @@ QList PythonQtShell_QImageEncoderControl::supportedResolutions(const QI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedResolutions"); + static PyObject* name = PyUnicode_FromString("supportedResolutions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QImageEncoderSettings&" , "bool*"}; @@ -5023,7 +5023,7 @@ void PythonQtShell_QImageEncoderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5178,7 +5178,7 @@ void PythonQtShell_QMediaAudioProbeControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5200,7 +5200,7 @@ void PythonQtShell_QMediaAudioProbeControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5222,7 +5222,7 @@ bool PythonQtShell_QMediaAudioProbeControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5255,7 +5255,7 @@ bool PythonQtShell_QMediaAudioProbeControl::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5288,7 +5288,7 @@ void PythonQtShell_QMediaAudioProbeControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5333,7 +5333,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaAvailabilityControl::availa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -5366,7 +5366,7 @@ void PythonQtShell_QMediaAvailabilityControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5388,7 +5388,7 @@ void PythonQtShell_QMediaAvailabilityControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5410,7 +5410,7 @@ bool PythonQtShell_QMediaAvailabilityControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5443,7 +5443,7 @@ bool PythonQtShell_QMediaAvailabilityControl::eventFilter(QObject* watched0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5476,7 +5476,7 @@ void PythonQtShell_QMediaAvailabilityControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5526,7 +5526,7 @@ QMediaObject* PythonQtShell_QMediaBindableInterface::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -5559,7 +5559,7 @@ bool PythonQtShell_QMediaBindableInterface::setMediaObject(QMediaObject* objec if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -5612,7 +5612,7 @@ void PythonQtShell_QMediaContainerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5634,7 +5634,7 @@ QString PythonQtShell_QMediaContainerControl::containerDescription(const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("containerDescription"); + static PyObject* name = PyUnicode_FromString("containerDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -5667,7 +5667,7 @@ QString PythonQtShell_QMediaContainerControl::containerFormat() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("containerFormat"); + static PyObject* name = PyUnicode_FromString("containerFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -5700,7 +5700,7 @@ void PythonQtShell_QMediaContainerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5722,7 +5722,7 @@ bool PythonQtShell_QMediaContainerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5755,7 +5755,7 @@ bool PythonQtShell_QMediaContainerControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5788,7 +5788,7 @@ void PythonQtShell_QMediaContainerControl::setContainerFormat(const QString& fo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContainerFormat"); + static PyObject* name = PyUnicode_FromString("setContainerFormat"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5810,7 +5810,7 @@ QStringList PythonQtShell_QMediaContainerControl::supportedContainers() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedContainers"); + static PyObject* name = PyUnicode_FromString("supportedContainers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -5843,7 +5843,7 @@ void PythonQtShell_QMediaContainerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5983,7 +5983,7 @@ void PythonQtShell_QMediaControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6005,7 +6005,7 @@ void PythonQtShell_QMediaControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6027,7 +6027,7 @@ bool PythonQtShell_QMediaControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6060,7 +6060,7 @@ bool PythonQtShell_QMediaControl::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6093,7 +6093,7 @@ void PythonQtShell_QMediaControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6138,7 +6138,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6160,7 +6160,7 @@ qreal PythonQtShell_QMediaGaplessPlaybackControl::crossfadeTime() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("crossfadeTime"); + static PyObject* name = PyUnicode_FromString("crossfadeTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -6193,7 +6193,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6215,7 +6215,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6248,7 +6248,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6281,7 +6281,7 @@ bool PythonQtShell_QMediaGaplessPlaybackControl::isCrossfadeSupported() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isCrossfadeSupported"); + static PyObject* name = PyUnicode_FromString("isCrossfadeSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6314,7 +6314,7 @@ QMediaContent PythonQtShell_QMediaGaplessPlaybackControl::nextMedia() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextMedia"); + static PyObject* name = PyUnicode_FromString("nextMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaContent"}; @@ -6347,7 +6347,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::setCrossfadeTime(qreal crossfa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setCrossfadeTime"); + static PyObject* name = PyUnicode_FromString("setCrossfadeTime"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -6369,7 +6369,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::setNextMedia(const QMediaConten if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNextMedia"); + static PyObject* name = PyUnicode_FromString("setNextMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMediaContent&"}; @@ -6391,7 +6391,7 @@ void PythonQtShell_QMediaGaplessPlaybackControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6461,7 +6461,7 @@ void PythonQtShell_QMediaNetworkAccessControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6483,7 +6483,7 @@ QNetworkConfiguration PythonQtShell_QMediaNetworkAccessControl::currentConfigur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("currentConfiguration"); + static PyObject* name = PyUnicode_FromString("currentConfiguration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkConfiguration"}; @@ -6516,7 +6516,7 @@ void PythonQtShell_QMediaNetworkAccessControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6538,7 +6538,7 @@ bool PythonQtShell_QMediaNetworkAccessControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6571,7 +6571,7 @@ bool PythonQtShell_QMediaNetworkAccessControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6604,7 +6604,7 @@ void PythonQtShell_QMediaNetworkAccessControl::setConfigurations(const QList 0) { - static PyObject* name = PyString_FromString("setConfigurations"); + static PyObject* name = PyUnicode_FromString("setConfigurations"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -6626,7 +6626,7 @@ void PythonQtShell_QMediaNetworkAccessControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6681,7 +6681,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaObject::availability() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -6714,7 +6714,7 @@ bool PythonQtShell_QMediaObject::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -6747,7 +6747,7 @@ void PythonQtShell_QMediaObject::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6769,7 +6769,7 @@ void PythonQtShell_QMediaObject::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6791,7 +6791,7 @@ bool PythonQtShell_QMediaObject::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6824,7 +6824,7 @@ bool PythonQtShell_QMediaObject::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6857,7 +6857,7 @@ bool PythonQtShell_QMediaObject::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6890,7 +6890,7 @@ QMediaService* PythonQtShell_QMediaObject::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -6923,7 +6923,7 @@ void PythonQtShell_QMediaObject::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6945,7 +6945,7 @@ void PythonQtShell_QMediaObject::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7050,7 +7050,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QMediaPlayer::availability() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -7083,7 +7083,7 @@ bool PythonQtShell_QMediaPlayer::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -7116,7 +7116,7 @@ void PythonQtShell_QMediaPlayer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7138,7 +7138,7 @@ void PythonQtShell_QMediaPlayer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7160,7 +7160,7 @@ bool PythonQtShell_QMediaPlayer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7193,7 +7193,7 @@ bool PythonQtShell_QMediaPlayer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7226,7 +7226,7 @@ bool PythonQtShell_QMediaPlayer::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7259,7 +7259,7 @@ QMediaService* PythonQtShell_QMediaPlayer::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -7292,7 +7292,7 @@ void PythonQtShell_QMediaPlayer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7314,7 +7314,7 @@ void PythonQtShell_QMediaPlayer::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -7489,7 +7489,7 @@ QMediaTimeRange PythonQtShell_QMediaPlayerControl::availablePlaybackRanges() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availablePlaybackRanges"); + static PyObject* name = PyUnicode_FromString("availablePlaybackRanges"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaTimeRange"}; @@ -7522,7 +7522,7 @@ int PythonQtShell_QMediaPlayerControl::bufferStatus() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bufferStatus"); + static PyObject* name = PyUnicode_FromString("bufferStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7555,7 +7555,7 @@ void PythonQtShell_QMediaPlayerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7577,7 +7577,7 @@ void PythonQtShell_QMediaPlayerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7599,7 +7599,7 @@ qint64 PythonQtShell_QMediaPlayerControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -7632,7 +7632,7 @@ bool PythonQtShell_QMediaPlayerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7665,7 +7665,7 @@ bool PythonQtShell_QMediaPlayerControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7698,7 +7698,7 @@ bool PythonQtShell_QMediaPlayerControl::isAudioAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAudioAvailable"); + static PyObject* name = PyUnicode_FromString("isAudioAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7731,7 +7731,7 @@ bool PythonQtShell_QMediaPlayerControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7764,7 +7764,7 @@ bool PythonQtShell_QMediaPlayerControl::isSeekable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSeekable"); + static PyObject* name = PyUnicode_FromString("isSeekable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7797,7 +7797,7 @@ bool PythonQtShell_QMediaPlayerControl::isVideoAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isVideoAvailable"); + static PyObject* name = PyUnicode_FromString("isVideoAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7830,7 +7830,7 @@ QMediaContent PythonQtShell_QMediaPlayerControl::media() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("media"); + static PyObject* name = PyUnicode_FromString("media"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaContent"}; @@ -7863,7 +7863,7 @@ QMediaPlayer::MediaStatus PythonQtShell_QMediaPlayerControl::mediaStatus() cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaStatus"); + static PyObject* name = PyUnicode_FromString("mediaStatus"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaPlayer::MediaStatus"}; @@ -7896,7 +7896,7 @@ const QIODevice* PythonQtShell_QMediaPlayerControl::mediaStream() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaStream"); + static PyObject* name = PyUnicode_FromString("mediaStream"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"const QIODevice*"}; @@ -7929,7 +7929,7 @@ void PythonQtShell_QMediaPlayerControl::pause() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pause"); + static PyObject* name = PyUnicode_FromString("pause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7951,7 +7951,7 @@ void PythonQtShell_QMediaPlayerControl::play() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("play"); + static PyObject* name = PyUnicode_FromString("play"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7973,7 +7973,7 @@ qreal PythonQtShell_QMediaPlayerControl::playbackRate() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("playbackRate"); + static PyObject* name = PyUnicode_FromString("playbackRate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -8006,7 +8006,7 @@ qint64 PythonQtShell_QMediaPlayerControl::position() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("position"); + static PyObject* name = PyUnicode_FromString("position"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -8039,7 +8039,7 @@ void PythonQtShell_QMediaPlayerControl::setMedia(const QMediaContent& media0, Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMedia"); + static PyObject* name = PyUnicode_FromString("setMedia"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMediaContent&" , "QIODevice*"}; @@ -8061,7 +8061,7 @@ void PythonQtShell_QMediaPlayerControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -8083,7 +8083,7 @@ void PythonQtShell_QMediaPlayerControl::setPlaybackRate(qreal rate0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPlaybackRate"); + static PyObject* name = PyUnicode_FromString("setPlaybackRate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -8105,7 +8105,7 @@ void PythonQtShell_QMediaPlayerControl::setPosition(qint64 position0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setPosition"); + static PyObject* name = PyUnicode_FromString("setPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -8127,7 +8127,7 @@ void PythonQtShell_QMediaPlayerControl::setVolume(int volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -8149,7 +8149,7 @@ QMediaPlayer::State PythonQtShell_QMediaPlayerControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaPlayer::State"}; @@ -8182,7 +8182,7 @@ void PythonQtShell_QMediaPlayerControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8204,7 +8204,7 @@ void PythonQtShell_QMediaPlayerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8226,7 +8226,7 @@ int PythonQtShell_QMediaPlayerControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; diff --git a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp index c255b880b..98fa4748e 100644 --- a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp +++ b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia2.cpp @@ -39,7 +39,7 @@ void PythonQtShell_QMediaPlaylist::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -61,7 +61,7 @@ void PythonQtShell_QMediaPlaylist::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -83,7 +83,7 @@ bool PythonQtShell_QMediaPlaylist::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -116,7 +116,7 @@ bool PythonQtShell_QMediaPlaylist::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -149,7 +149,7 @@ QMediaObject* PythonQtShell_QMediaPlaylist::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -182,7 +182,7 @@ bool PythonQtShell_QMediaPlaylist::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -215,7 +215,7 @@ void PythonQtShell_QMediaPlaylist::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -380,7 +380,7 @@ void PythonQtShell_QMediaRecorder::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -402,7 +402,7 @@ void PythonQtShell_QMediaRecorder::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -424,7 +424,7 @@ bool PythonQtShell_QMediaRecorder::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -457,7 +457,7 @@ bool PythonQtShell_QMediaRecorder::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -490,7 +490,7 @@ QMediaObject* PythonQtShell_QMediaRecorder::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -523,7 +523,7 @@ bool PythonQtShell_QMediaRecorder::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -556,7 +556,7 @@ void PythonQtShell_QMediaRecorder::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -766,7 +766,7 @@ void PythonQtShell_QMediaRecorderControl::applySettings() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applySettings"); + static PyObject* name = PyUnicode_FromString("applySettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -788,7 +788,7 @@ void PythonQtShell_QMediaRecorderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -810,7 +810,7 @@ void PythonQtShell_QMediaRecorderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -832,7 +832,7 @@ qint64 PythonQtShell_QMediaRecorderControl::duration() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("duration"); + static PyObject* name = PyUnicode_FromString("duration"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -865,7 +865,7 @@ bool PythonQtShell_QMediaRecorderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -898,7 +898,7 @@ bool PythonQtShell_QMediaRecorderControl::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -931,7 +931,7 @@ bool PythonQtShell_QMediaRecorderControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -964,7 +964,7 @@ QUrl PythonQtShell_QMediaRecorderControl::outputLocation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("outputLocation"); + static PyObject* name = PyUnicode_FromString("outputLocation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl"}; @@ -997,7 +997,7 @@ void PythonQtShell_QMediaRecorderControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1019,7 +1019,7 @@ bool PythonQtShell_QMediaRecorderControl::setOutputLocation(const QUrl& locati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOutputLocation"); + static PyObject* name = PyUnicode_FromString("setOutputLocation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -1052,7 +1052,7 @@ void PythonQtShell_QMediaRecorderControl::setState(QMediaRecorder::State state0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setState"); + static PyObject* name = PyUnicode_FromString("setState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaRecorder::State"}; @@ -1074,7 +1074,7 @@ void PythonQtShell_QMediaRecorderControl::setVolume(qreal volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal"}; @@ -1096,7 +1096,7 @@ QMediaRecorder::State PythonQtShell_QMediaRecorderControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaRecorder::State"}; @@ -1129,7 +1129,7 @@ QMediaRecorder::Status PythonQtShell_QMediaRecorderControl::status() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("status"); + static PyObject* name = PyUnicode_FromString("status"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaRecorder::Status"}; @@ -1162,7 +1162,7 @@ void PythonQtShell_QMediaRecorderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1184,7 +1184,7 @@ qreal PythonQtShell_QMediaRecorderControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qreal"}; @@ -1428,7 +1428,7 @@ void PythonQtShell_QMediaService::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1450,7 +1450,7 @@ void PythonQtShell_QMediaService::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1472,7 +1472,7 @@ bool PythonQtShell_QMediaService::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1505,7 +1505,7 @@ bool PythonQtShell_QMediaService::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1538,7 +1538,7 @@ void PythonQtShell_QMediaService::releaseControl(QMediaControl* control0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseControl"); + static PyObject* name = PyUnicode_FromString("releaseControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaControl*"}; @@ -1560,7 +1560,7 @@ QMediaControl* PythonQtShell_QMediaService::requestControl(const char* name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("requestControl"); + static PyObject* name = PyUnicode_FromString("requestControl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaControl*" , "const char*"}; @@ -1593,7 +1593,7 @@ void PythonQtShell_QMediaService::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1648,7 +1648,7 @@ int PythonQtShell_QMediaServiceCameraInfoInterface::cameraOrientation(const QBy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraOrientation"); + static PyObject* name = PyUnicode_FromString("cameraOrientation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QByteArray&"}; @@ -1681,7 +1681,7 @@ QCamera::Position PythonQtShell_QMediaServiceCameraInfoInterface::cameraPositio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cameraPosition"); + static PyObject* name = PyUnicode_FromString("cameraPosition"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QCamera::Position" , "const QByteArray&"}; @@ -1734,7 +1734,7 @@ QByteArray PythonQtShell_QMediaServiceDefaultDeviceInterface::defaultDevice(con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultDevice"); + static PyObject* name = PyUnicode_FromString("defaultDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QByteArray" , "const QByteArray&"}; @@ -1782,7 +1782,7 @@ QMediaService* PythonQtShell_QMediaServiceProviderFactoryInterface::create(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*" , "const QString&"}; @@ -1815,7 +1815,7 @@ void PythonQtShell_QMediaServiceProviderFactoryInterface::release(QMediaService* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaService*"}; @@ -1924,7 +1924,7 @@ QMediaService* PythonQtShell_QMediaServiceProviderPlugin::create(const QString& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*" , "const QString&"}; @@ -1957,7 +1957,7 @@ void PythonQtShell_QMediaServiceProviderPlugin::release(QMediaService* service0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("release"); + static PyObject* name = PyUnicode_FromString("release"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMediaService*"}; @@ -2012,7 +2012,7 @@ QString PythonQtShell_QMediaServiceSupportedDevicesInterface::deviceDescription if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceDescription"); + static PyObject* name = PyUnicode_FromString("deviceDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "const QByteArray&"}; @@ -2045,7 +2045,7 @@ QList PythonQtShell_QMediaServiceSupportedDevicesInterface::device if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devices"); + static PyObject* name = PyUnicode_FromString("devices"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QByteArray&"}; @@ -2098,7 +2098,7 @@ QMultimedia::SupportEstimate PythonQtShell_QMediaServiceSupportedFormatsInterfa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasSupport"); + static PyObject* name = PyUnicode_FromString("hasSupport"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::SupportEstimate" , "const QString&" , "const QStringList&"}; @@ -2131,7 +2131,7 @@ QStringList PythonQtShell_QMediaServiceSupportedFormatsInterface::supportedMime if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedMimeTypes"); + static PyObject* name = PyUnicode_FromString("supportedMimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2184,7 +2184,7 @@ void PythonQtShell_QMediaStreamsControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2206,7 +2206,7 @@ void PythonQtShell_QMediaStreamsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2228,7 +2228,7 @@ bool PythonQtShell_QMediaStreamsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2261,7 +2261,7 @@ bool PythonQtShell_QMediaStreamsControl::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2294,7 +2294,7 @@ bool PythonQtShell_QMediaStreamsControl::isActive(int streamNumber0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isActive"); + static PyObject* name = PyUnicode_FromString("isActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2327,7 +2327,7 @@ QVariant PythonQtShell_QMediaStreamsControl::metaData(int streamNumber0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "const QString&"}; @@ -2360,7 +2360,7 @@ void PythonQtShell_QMediaStreamsControl::setActive(int streamNumber0, bool sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "bool"}; @@ -2382,7 +2382,7 @@ int PythonQtShell_QMediaStreamsControl::streamCount() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("streamCount"); + static PyObject* name = PyUnicode_FromString("streamCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2415,7 +2415,7 @@ QMediaStreamsControl::StreamType PythonQtShell_QMediaStreamsControl::streamType if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("streamType"); + static PyObject* name = PyUnicode_FromString("streamType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaStreamsControl::StreamType" , "int"}; @@ -2448,7 +2448,7 @@ void PythonQtShell_QMediaStreamsControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2702,7 +2702,7 @@ void PythonQtShell_QMediaVideoProbeControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2724,7 +2724,7 @@ void PythonQtShell_QMediaVideoProbeControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2746,7 +2746,7 @@ bool PythonQtShell_QMediaVideoProbeControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2779,7 +2779,7 @@ bool PythonQtShell_QMediaVideoProbeControl::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2812,7 +2812,7 @@ void PythonQtShell_QMediaVideoProbeControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2857,7 +2857,7 @@ QStringList PythonQtShell_QMetaDataReaderControl::availableMetaData() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableMetaData"); + static PyObject* name = PyUnicode_FromString("availableMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2890,7 +2890,7 @@ void PythonQtShell_QMetaDataReaderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2912,7 +2912,7 @@ void PythonQtShell_QMetaDataReaderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2934,7 +2934,7 @@ bool PythonQtShell_QMetaDataReaderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2967,7 +2967,7 @@ bool PythonQtShell_QMetaDataReaderControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3000,7 +3000,7 @@ bool PythonQtShell_QMetaDataReaderControl::isMetaDataAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMetaDataAvailable"); + static PyObject* name = PyUnicode_FromString("isMetaDataAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3033,7 +3033,7 @@ QVariant PythonQtShell_QMetaDataReaderControl::metaData(const QString& key0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&"}; @@ -3066,7 +3066,7 @@ void PythonQtShell_QMetaDataReaderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3126,7 +3126,7 @@ QStringList PythonQtShell_QMetaDataWriterControl::availableMetaData() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availableMetaData"); + static PyObject* name = PyUnicode_FromString("availableMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -3159,7 +3159,7 @@ void PythonQtShell_QMetaDataWriterControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3181,7 +3181,7 @@ void PythonQtShell_QMetaDataWriterControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3203,7 +3203,7 @@ bool PythonQtShell_QMetaDataWriterControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3236,7 +3236,7 @@ bool PythonQtShell_QMetaDataWriterControl::eventFilter(QObject* watched0, QEve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3269,7 +3269,7 @@ bool PythonQtShell_QMetaDataWriterControl::isMetaDataAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMetaDataAvailable"); + static PyObject* name = PyUnicode_FromString("isMetaDataAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3302,7 +3302,7 @@ bool PythonQtShell_QMetaDataWriterControl::isWritable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isWritable"); + static PyObject* name = PyUnicode_FromString("isWritable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3335,7 +3335,7 @@ QVariant PythonQtShell_QMetaDataWriterControl::metaData(const QString& key0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&"}; @@ -3368,7 +3368,7 @@ void PythonQtShell_QMetaDataWriterControl::setMetaData(const QString& key0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMetaData"); + static PyObject* name = PyUnicode_FromString("setMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&"}; @@ -3390,7 +3390,7 @@ void PythonQtShell_QMetaDataWriterControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3462,7 +3462,7 @@ void PythonQtShell_QRadioData::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3484,7 +3484,7 @@ void PythonQtShell_QRadioData::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3506,7 +3506,7 @@ bool PythonQtShell_QRadioData::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3539,7 +3539,7 @@ bool PythonQtShell_QRadioData::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3572,7 +3572,7 @@ QMediaObject* PythonQtShell_QRadioData::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -3605,7 +3605,7 @@ bool PythonQtShell_QRadioData::setMediaObject(QMediaObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -3638,7 +3638,7 @@ void PythonQtShell_QRadioData::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3728,7 +3728,7 @@ void PythonQtShell_QRadioDataControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3750,7 +3750,7 @@ void PythonQtShell_QRadioDataControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3772,7 +3772,7 @@ QRadioData::Error PythonQtShell_QRadioDataControl::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioData::Error"}; @@ -3805,7 +3805,7 @@ QString PythonQtShell_QRadioDataControl::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3838,7 +3838,7 @@ bool PythonQtShell_QRadioDataControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3871,7 +3871,7 @@ bool PythonQtShell_QRadioDataControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3904,7 +3904,7 @@ bool PythonQtShell_QRadioDataControl::isAlternativeFrequenciesEnabled() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAlternativeFrequenciesEnabled"); + static PyObject* name = PyUnicode_FromString("isAlternativeFrequenciesEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3937,7 +3937,7 @@ QRadioData::ProgramType PythonQtShell_QRadioDataControl::programType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("programType"); + static PyObject* name = PyUnicode_FromString("programType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioData::ProgramType"}; @@ -3970,7 +3970,7 @@ QString PythonQtShell_QRadioDataControl::programTypeName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("programTypeName"); + static PyObject* name = PyUnicode_FromString("programTypeName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4003,7 +4003,7 @@ QString PythonQtShell_QRadioDataControl::radioText() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("radioText"); + static PyObject* name = PyUnicode_FromString("radioText"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4036,7 +4036,7 @@ void PythonQtShell_QRadioDataControl::setAlternativeFrequenciesEnabled(bool ena if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAlternativeFrequenciesEnabled"); + static PyObject* name = PyUnicode_FromString("setAlternativeFrequenciesEnabled"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4058,7 +4058,7 @@ QString PythonQtShell_QRadioDataControl::stationId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stationId"); + static PyObject* name = PyUnicode_FromString("stationId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4091,7 +4091,7 @@ QString PythonQtShell_QRadioDataControl::stationName() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stationName"); + static PyObject* name = PyUnicode_FromString("stationName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4124,7 +4124,7 @@ void PythonQtShell_QRadioDataControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4214,7 +4214,7 @@ QMultimedia::AvailabilityStatus PythonQtShell_QRadioTuner::availability() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("availability"); + static PyObject* name = PyUnicode_FromString("availability"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMultimedia::AvailabilityStatus"}; @@ -4247,7 +4247,7 @@ bool PythonQtShell_QRadioTuner::bind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*"}; @@ -4280,7 +4280,7 @@ void PythonQtShell_QRadioTuner::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4302,7 +4302,7 @@ void PythonQtShell_QRadioTuner::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4324,7 +4324,7 @@ bool PythonQtShell_QRadioTuner::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4357,7 +4357,7 @@ bool PythonQtShell_QRadioTuner::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4390,7 +4390,7 @@ bool PythonQtShell_QRadioTuner::isAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAvailable"); + static PyObject* name = PyUnicode_FromString("isAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4423,7 +4423,7 @@ QMediaService* PythonQtShell_QRadioTuner::service() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("service"); + static PyObject* name = PyUnicode_FromString("service"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaService*"}; @@ -4456,7 +4456,7 @@ void PythonQtShell_QRadioTuner::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4478,7 +4478,7 @@ void PythonQtShell_QRadioTuner::unbind(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unbind"); + static PyObject* name = PyUnicode_FromString("unbind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -4608,7 +4608,7 @@ QRadioTuner::Band PythonQtShell_QRadioTunerControl::band() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("band"); + static PyObject* name = PyUnicode_FromString("band"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::Band"}; @@ -4641,7 +4641,7 @@ void PythonQtShell_QRadioTunerControl::cancelSearch() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelSearch"); + static PyObject* name = PyUnicode_FromString("cancelSearch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4663,7 +4663,7 @@ void PythonQtShell_QRadioTunerControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4685,7 +4685,7 @@ void PythonQtShell_QRadioTunerControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4707,7 +4707,7 @@ QRadioTuner::Error PythonQtShell_QRadioTunerControl::error() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::Error"}; @@ -4740,7 +4740,7 @@ QString PythonQtShell_QRadioTunerControl::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4773,7 +4773,7 @@ bool PythonQtShell_QRadioTunerControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4806,7 +4806,7 @@ bool PythonQtShell_QRadioTunerControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4839,7 +4839,7 @@ int PythonQtShell_QRadioTunerControl::frequency() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequency"); + static PyObject* name = PyUnicode_FromString("frequency"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -4872,7 +4872,7 @@ QPair PythonQtShell_QRadioTunerControl::frequencyRange(QRadioTuner: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequencyRange"); + static PyObject* name = PyUnicode_FromString("frequencyRange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPair" , "QRadioTuner::Band"}; @@ -4905,7 +4905,7 @@ int PythonQtShell_QRadioTunerControl::frequencyStep(QRadioTuner::Band b0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("frequencyStep"); + static PyObject* name = PyUnicode_FromString("frequencyStep"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QRadioTuner::Band"}; @@ -4938,7 +4938,7 @@ bool PythonQtShell_QRadioTunerControl::isAntennaConnected() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAntennaConnected"); + static PyObject* name = PyUnicode_FromString("isAntennaConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4971,7 +4971,7 @@ bool PythonQtShell_QRadioTunerControl::isBandSupported(QRadioTuner::Band b0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isBandSupported"); + static PyObject* name = PyUnicode_FromString("isBandSupported"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QRadioTuner::Band"}; @@ -5004,7 +5004,7 @@ bool PythonQtShell_QRadioTunerControl::isMuted() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isMuted"); + static PyObject* name = PyUnicode_FromString("isMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5037,7 +5037,7 @@ bool PythonQtShell_QRadioTunerControl::isSearching() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSearching"); + static PyObject* name = PyUnicode_FromString("isSearching"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5070,7 +5070,7 @@ bool PythonQtShell_QRadioTunerControl::isStereo() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isStereo"); + static PyObject* name = PyUnicode_FromString("isStereo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5103,7 +5103,7 @@ void PythonQtShell_QRadioTunerControl::searchAllStations(QRadioTuner::SearchMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchAllStations"); + static PyObject* name = PyUnicode_FromString("searchAllStations"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::SearchMode"}; @@ -5125,7 +5125,7 @@ void PythonQtShell_QRadioTunerControl::searchBackward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchBackward"); + static PyObject* name = PyUnicode_FromString("searchBackward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5147,7 +5147,7 @@ void PythonQtShell_QRadioTunerControl::searchForward() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("searchForward"); + static PyObject* name = PyUnicode_FromString("searchForward"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5169,7 +5169,7 @@ void PythonQtShell_QRadioTunerControl::setBand(QRadioTuner::Band b0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBand"); + static PyObject* name = PyUnicode_FromString("setBand"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::Band"}; @@ -5191,7 +5191,7 @@ void PythonQtShell_QRadioTunerControl::setFrequency(int frequency0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFrequency"); + static PyObject* name = PyUnicode_FromString("setFrequency"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5213,7 +5213,7 @@ void PythonQtShell_QRadioTunerControl::setMuted(bool muted0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMuted"); + static PyObject* name = PyUnicode_FromString("setMuted"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5235,7 +5235,7 @@ void PythonQtShell_QRadioTunerControl::setStereoMode(QRadioTuner::StereoMode mo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setStereoMode"); + static PyObject* name = PyUnicode_FromString("setStereoMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QRadioTuner::StereoMode"}; @@ -5257,7 +5257,7 @@ void PythonQtShell_QRadioTunerControl::setVolume(int volume0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVolume"); + static PyObject* name = PyUnicode_FromString("setVolume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5279,7 +5279,7 @@ int PythonQtShell_QRadioTunerControl::signalStrength() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("signalStrength"); + static PyObject* name = PyUnicode_FromString("signalStrength"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5312,7 +5312,7 @@ void PythonQtShell_QRadioTunerControl::start() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("start"); + static PyObject* name = PyUnicode_FromString("start"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5334,7 +5334,7 @@ QRadioTuner::State PythonQtShell_QRadioTunerControl::state() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("state"); + static PyObject* name = PyUnicode_FromString("state"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::State"}; @@ -5367,7 +5367,7 @@ QRadioTuner::StereoMode PythonQtShell_QRadioTunerControl::stereoMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stereoMode"); + static PyObject* name = PyUnicode_FromString("stereoMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRadioTuner::StereoMode"}; @@ -5400,7 +5400,7 @@ void PythonQtShell_QRadioTunerControl::stop() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stop"); + static PyObject* name = PyUnicode_FromString("stop"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5422,7 +5422,7 @@ void PythonQtShell_QRadioTunerControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5444,7 +5444,7 @@ int PythonQtShell_QRadioTunerControl::volume() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("volume"); + static PyObject* name = PyUnicode_FromString("volume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5630,7 +5630,7 @@ void PythonQtShell_QSound::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5652,7 +5652,7 @@ void PythonQtShell_QSound::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5674,7 +5674,7 @@ bool PythonQtShell_QSound::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5707,7 +5707,7 @@ bool PythonQtShell_QSound::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5740,7 +5740,7 @@ void PythonQtShell_QSound::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5815,7 +5815,7 @@ void PythonQtShell_QSoundEffect::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5837,7 +5837,7 @@ void PythonQtShell_QSoundEffect::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5859,7 +5859,7 @@ bool PythonQtShell_QSoundEffect::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5892,7 +5892,7 @@ bool PythonQtShell_QSoundEffect::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5925,7 +5925,7 @@ void PythonQtShell_QSoundEffect::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6045,7 +6045,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6067,7 +6067,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6089,7 +6089,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::defaultDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("defaultDevice"); + static PyObject* name = PyUnicode_FromString("defaultDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6122,7 +6122,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::deviceCount() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceCount"); + static PyObject* name = PyUnicode_FromString("deviceCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6155,7 +6155,7 @@ QString PythonQtShell_QVideoDeviceSelectorControl::deviceDescription(int index if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceDescription"); + static PyObject* name = PyUnicode_FromString("deviceDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6188,7 +6188,7 @@ QString PythonQtShell_QVideoDeviceSelectorControl::deviceName(int index0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deviceName"); + static PyObject* name = PyUnicode_FromString("deviceName"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "int"}; @@ -6221,7 +6221,7 @@ bool PythonQtShell_QVideoDeviceSelectorControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6254,7 +6254,7 @@ bool PythonQtShell_QVideoDeviceSelectorControl::eventFilter(QObject* watched0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6287,7 +6287,7 @@ int PythonQtShell_QVideoDeviceSelectorControl::selectedDevice() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectedDevice"); + static PyObject* name = PyUnicode_FromString("selectedDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6320,7 +6320,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::setSelectedDevice(int index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelectedDevice"); + static PyObject* name = PyUnicode_FromString("setSelectedDevice"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -6342,7 +6342,7 @@ void PythonQtShell_QVideoDeviceSelectorControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6527,7 +6527,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6549,7 +6549,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6571,7 +6571,7 @@ bool PythonQtShell_QVideoEncoderSettingsControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6604,7 +6604,7 @@ bool PythonQtShell_QVideoEncoderSettingsControl::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6637,7 +6637,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::setVideoSettings(const QVideoEn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVideoSettings"); + static PyObject* name = PyUnicode_FromString("setVideoSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVideoEncoderSettings&"}; @@ -6659,7 +6659,7 @@ QList PythonQtShell_QVideoEncoderSettingsControl::supportedFrameRates(c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedFrameRates"); + static PyObject* name = PyUnicode_FromString("supportedFrameRates"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QVideoEncoderSettings&" , "bool*"}; @@ -6692,7 +6692,7 @@ QList PythonQtShell_QVideoEncoderSettingsControl::supportedResolutions( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedResolutions"); + static PyObject* name = PyUnicode_FromString("supportedResolutions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QVideoEncoderSettings&" , "bool*"}; @@ -6725,7 +6725,7 @@ QStringList PythonQtShell_QVideoEncoderSettingsControl::supportedVideoCodecs() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedVideoCodecs"); + static PyObject* name = PyUnicode_FromString("supportedVideoCodecs"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6758,7 +6758,7 @@ void PythonQtShell_QVideoEncoderSettingsControl::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6780,7 +6780,7 @@ QString PythonQtShell_QVideoEncoderSettingsControl::videoCodecDescription(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoCodecDescription"); + static PyObject* name = PyUnicode_FromString("videoCodecDescription"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&"}; @@ -6813,7 +6813,7 @@ QVideoEncoderSettings PythonQtShell_QVideoEncoderSettingsControl::videoSettings if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoSettings"); + static PyObject* name = PyUnicode_FromString("videoSettings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVideoEncoderSettings"}; @@ -7103,7 +7103,7 @@ void PythonQtShell_QVideoProbe::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7125,7 +7125,7 @@ void PythonQtShell_QVideoProbe::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7147,7 +7147,7 @@ bool PythonQtShell_QVideoProbe::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7180,7 +7180,7 @@ bool PythonQtShell_QVideoProbe::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7213,7 +7213,7 @@ void PythonQtShell_QVideoProbe::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp index b69d0ca91..956a8e18e 100644 --- a/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp +++ b/generated_cpp_56/com_trolltech_qt_multimedia/com_trolltech_qt_multimedia3.cpp @@ -49,7 +49,7 @@ void PythonQtShell_QVideoRendererControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -71,7 +71,7 @@ void PythonQtShell_QVideoRendererControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -93,7 +93,7 @@ bool PythonQtShell_QVideoRendererControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -126,7 +126,7 @@ bool PythonQtShell_QVideoRendererControl::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -159,7 +159,7 @@ void PythonQtShell_QVideoRendererControl::setSurface(QAbstractVideoSurface* sur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSurface"); + static PyObject* name = PyUnicode_FromString("setSurface"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractVideoSurface*"}; @@ -181,7 +181,7 @@ QAbstractVideoSurface* PythonQtShell_QVideoRendererControl::surface() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surface"); + static PyObject* name = PyUnicode_FromString("surface"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAbstractVideoSurface*"}; @@ -214,7 +214,7 @@ void PythonQtShell_QVideoRendererControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -420,7 +420,7 @@ void PythonQtShell_QVideoWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -442,7 +442,7 @@ void PythonQtShell_QVideoWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -464,7 +464,7 @@ void PythonQtShell_QVideoWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -486,7 +486,7 @@ void PythonQtShell_QVideoWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -508,7 +508,7 @@ void PythonQtShell_QVideoWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -530,7 +530,7 @@ void PythonQtShell_QVideoWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -552,7 +552,7 @@ int PythonQtShell_QVideoWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -585,7 +585,7 @@ void PythonQtShell_QVideoWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -607,7 +607,7 @@ void PythonQtShell_QVideoWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -629,7 +629,7 @@ void PythonQtShell_QVideoWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -651,7 +651,7 @@ void PythonQtShell_QVideoWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -673,7 +673,7 @@ void PythonQtShell_QVideoWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -695,7 +695,7 @@ bool PythonQtShell_QVideoWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -728,7 +728,7 @@ bool PythonQtShell_QVideoWidget::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -761,7 +761,7 @@ void PythonQtShell_QVideoWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -783,7 +783,7 @@ bool PythonQtShell_QVideoWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -816,7 +816,7 @@ void PythonQtShell_QVideoWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -838,7 +838,7 @@ bool PythonQtShell_QVideoWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -871,7 +871,7 @@ int PythonQtShell_QVideoWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -904,7 +904,7 @@ void PythonQtShell_QVideoWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -926,7 +926,7 @@ void PythonQtShell_QVideoWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -948,7 +948,7 @@ void PythonQtShell_QVideoWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -970,7 +970,7 @@ QVariant PythonQtShell_QVideoWidget::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1003,7 +1003,7 @@ void PythonQtShell_QVideoWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1025,7 +1025,7 @@ void PythonQtShell_QVideoWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1047,7 +1047,7 @@ void PythonQtShell_QVideoWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1069,7 +1069,7 @@ QMediaObject* PythonQtShell_QVideoWidget::mediaObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mediaObject"); + static PyObject* name = PyUnicode_FromString("mediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMediaObject*"}; @@ -1102,7 +1102,7 @@ int PythonQtShell_QVideoWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1135,7 +1135,7 @@ QSize PythonQtShell_QVideoWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1168,7 +1168,7 @@ void PythonQtShell_QVideoWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1190,7 +1190,7 @@ void PythonQtShell_QVideoWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1212,7 +1212,7 @@ void PythonQtShell_QVideoWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1234,7 +1234,7 @@ void PythonQtShell_QVideoWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1256,7 +1256,7 @@ void PythonQtShell_QVideoWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1278,7 +1278,7 @@ bool PythonQtShell_QVideoWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1311,7 +1311,7 @@ QPaintEngine* PythonQtShell_QVideoWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1344,7 +1344,7 @@ void PythonQtShell_QVideoWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1366,7 +1366,7 @@ QPaintDevice* PythonQtShell_QVideoWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1399,7 +1399,7 @@ void PythonQtShell_QVideoWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1421,7 +1421,7 @@ bool PythonQtShell_QVideoWidget::setMediaObject(QMediaObject* object0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setMediaObject"); + static PyObject* name = PyUnicode_FromString("setMediaObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QMediaObject*"}; @@ -1454,7 +1454,7 @@ void PythonQtShell_QVideoWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1476,7 +1476,7 @@ QPainter* PythonQtShell_QVideoWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1509,7 +1509,7 @@ void PythonQtShell_QVideoWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1531,7 +1531,7 @@ void PythonQtShell_QVideoWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1553,7 +1553,7 @@ void PythonQtShell_QVideoWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1575,7 +1575,7 @@ void PythonQtShell_QVideoWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -1650,7 +1650,7 @@ Qt::AspectRatioMode PythonQtShell_QVideoWidgetControl::aspectRatioMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aspectRatioMode"); + static PyObject* name = PyUnicode_FromString("aspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::AspectRatioMode"}; @@ -1683,7 +1683,7 @@ int PythonQtShell_QVideoWidgetControl::brightness() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("brightness"); + static PyObject* name = PyUnicode_FromString("brightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1716,7 +1716,7 @@ void PythonQtShell_QVideoWidgetControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1738,7 +1738,7 @@ int PythonQtShell_QVideoWidgetControl::contrast() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contrast"); + static PyObject* name = PyUnicode_FromString("contrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1771,7 +1771,7 @@ void PythonQtShell_QVideoWidgetControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1793,7 +1793,7 @@ bool PythonQtShell_QVideoWidgetControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1826,7 +1826,7 @@ bool PythonQtShell_QVideoWidgetControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1859,7 +1859,7 @@ int PythonQtShell_QVideoWidgetControl::hue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hue"); + static PyObject* name = PyUnicode_FromString("hue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1892,7 +1892,7 @@ bool PythonQtShell_QVideoWidgetControl::isFullScreen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFullScreen"); + static PyObject* name = PyUnicode_FromString("isFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1925,7 +1925,7 @@ int PythonQtShell_QVideoWidgetControl::saturation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("saturation"); + static PyObject* name = PyUnicode_FromString("saturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1958,7 +1958,7 @@ void PythonQtShell_QVideoWidgetControl::setAspectRatioMode(Qt::AspectRatioMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAspectRatioMode"); + static PyObject* name = PyUnicode_FromString("setAspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::AspectRatioMode"}; @@ -1980,7 +1980,7 @@ void PythonQtShell_QVideoWidgetControl::setBrightness(int brightness0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBrightness"); + static PyObject* name = PyUnicode_FromString("setBrightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2002,7 +2002,7 @@ void PythonQtShell_QVideoWidgetControl::setContrast(int contrast0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContrast"); + static PyObject* name = PyUnicode_FromString("setContrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2024,7 +2024,7 @@ void PythonQtShell_QVideoWidgetControl::setFullScreen(bool fullScreen0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFullScreen"); + static PyObject* name = PyUnicode_FromString("setFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2046,7 +2046,7 @@ void PythonQtShell_QVideoWidgetControl::setHue(int hue0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHue"); + static PyObject* name = PyUnicode_FromString("setHue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2068,7 +2068,7 @@ void PythonQtShell_QVideoWidgetControl::setSaturation(int saturation0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSaturation"); + static PyObject* name = PyUnicode_FromString("setSaturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2090,7 +2090,7 @@ void PythonQtShell_QVideoWidgetControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2112,7 +2112,7 @@ QWidget* PythonQtShell_QVideoWidgetControl::videoWidget() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("videoWidget"); + static PyObject* name = PyUnicode_FromString("videoWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*"}; @@ -2233,7 +2233,7 @@ Qt::AspectRatioMode PythonQtShell_QVideoWindowControl::aspectRatioMode() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("aspectRatioMode"); + static PyObject* name = PyUnicode_FromString("aspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::AspectRatioMode"}; @@ -2266,7 +2266,7 @@ int PythonQtShell_QVideoWindowControl::brightness() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("brightness"); + static PyObject* name = PyUnicode_FromString("brightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2299,7 +2299,7 @@ void PythonQtShell_QVideoWindowControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2321,7 +2321,7 @@ int PythonQtShell_QVideoWindowControl::contrast() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contrast"); + static PyObject* name = PyUnicode_FromString("contrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2354,7 +2354,7 @@ void PythonQtShell_QVideoWindowControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2376,7 +2376,7 @@ QRect PythonQtShell_QVideoWindowControl::displayRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("displayRect"); + static PyObject* name = PyUnicode_FromString("displayRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRect"}; @@ -2409,7 +2409,7 @@ bool PythonQtShell_QVideoWindowControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2442,7 +2442,7 @@ bool PythonQtShell_QVideoWindowControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2475,7 +2475,7 @@ int PythonQtShell_QVideoWindowControl::hue() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hue"); + static PyObject* name = PyUnicode_FromString("hue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2508,7 +2508,7 @@ bool PythonQtShell_QVideoWindowControl::isFullScreen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isFullScreen"); + static PyObject* name = PyUnicode_FromString("isFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2541,7 +2541,7 @@ QSize PythonQtShell_QVideoWindowControl::nativeSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeSize"); + static PyObject* name = PyUnicode_FromString("nativeSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -2574,7 +2574,7 @@ void PythonQtShell_QVideoWindowControl::repaint() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("repaint"); + static PyObject* name = PyUnicode_FromString("repaint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2596,7 +2596,7 @@ int PythonQtShell_QVideoWindowControl::saturation() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("saturation"); + static PyObject* name = PyUnicode_FromString("saturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2629,7 +2629,7 @@ void PythonQtShell_QVideoWindowControl::setAspectRatioMode(Qt::AspectRatioMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAspectRatioMode"); + static PyObject* name = PyUnicode_FromString("setAspectRatioMode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "Qt::AspectRatioMode"}; @@ -2651,7 +2651,7 @@ void PythonQtShell_QVideoWindowControl::setBrightness(int brightness0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setBrightness"); + static PyObject* name = PyUnicode_FromString("setBrightness"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2673,7 +2673,7 @@ void PythonQtShell_QVideoWindowControl::setContrast(int contrast0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContrast"); + static PyObject* name = PyUnicode_FromString("setContrast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2695,7 +2695,7 @@ void PythonQtShell_QVideoWindowControl::setDisplayRect(const QRect& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDisplayRect"); + static PyObject* name = PyUnicode_FromString("setDisplayRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRect&"}; @@ -2717,7 +2717,7 @@ void PythonQtShell_QVideoWindowControl::setFullScreen(bool fullScreen0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFullScreen"); + static PyObject* name = PyUnicode_FromString("setFullScreen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -2739,7 +2739,7 @@ void PythonQtShell_QVideoWindowControl::setHue(int hue0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHue"); + static PyObject* name = PyUnicode_FromString("setHue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2761,7 +2761,7 @@ void PythonQtShell_QVideoWindowControl::setSaturation(int saturation0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSaturation"); + static PyObject* name = PyUnicode_FromString("setSaturation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2783,7 +2783,7 @@ void PythonQtShell_QVideoWindowControl::setWinId(WId id0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setWinId"); + static PyObject* name = PyUnicode_FromString("setWinId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "WId"}; @@ -2805,7 +2805,7 @@ void PythonQtShell_QVideoWindowControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2827,7 +2827,7 @@ WId PythonQtShell_QVideoWindowControl::winId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("winId"); + static PyObject* name = PyUnicode_FromString("winId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"WId"}; diff --git a/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network0.cpp b/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network0.cpp index 619140085..0e5b2a2ff 100644 --- a/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network0.cpp +++ b/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network0.cpp @@ -47,7 +47,7 @@ qint64 PythonQtShell_QAbstractNetworkCache::cacheSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -80,7 +80,7 @@ void PythonQtShell_QAbstractNetworkCache::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -102,7 +102,7 @@ void PythonQtShell_QAbstractNetworkCache::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -124,7 +124,7 @@ void PythonQtShell_QAbstractNetworkCache::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -146,7 +146,7 @@ QIODevice* PythonQtShell_QAbstractNetworkCache::data(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -179,7 +179,7 @@ bool PythonQtShell_QAbstractNetworkCache::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -212,7 +212,7 @@ bool PythonQtShell_QAbstractNetworkCache::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -245,7 +245,7 @@ void PythonQtShell_QAbstractNetworkCache::insert(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -267,7 +267,7 @@ QNetworkCacheMetaData PythonQtShell_QAbstractNetworkCache::metaData(const QUrl& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -300,7 +300,7 @@ QIODevice* PythonQtShell_QAbstractNetworkCache::prepare(const QNetworkCacheMeta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -333,7 +333,7 @@ bool PythonQtShell_QAbstractNetworkCache::remove(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -366,7 +366,7 @@ void PythonQtShell_QAbstractNetworkCache::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -388,7 +388,7 @@ void PythonQtShell_QAbstractNetworkCache::updateMetaData(const QNetworkCacheMeta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -468,7 +468,7 @@ bool PythonQtShell_QAbstractSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -501,7 +501,7 @@ qint64 PythonQtShell_QAbstractSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -534,7 +534,7 @@ qint64 PythonQtShell_QAbstractSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -567,7 +567,7 @@ bool PythonQtShell_QAbstractSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -600,7 +600,7 @@ void PythonQtShell_QAbstractSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -622,7 +622,7 @@ void PythonQtShell_QAbstractSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -644,7 +644,7 @@ void PythonQtShell_QAbstractSocket::connectToHost(const QHostAddress& address0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -666,7 +666,7 @@ void PythonQtShell_QAbstractSocket::connectToHost(const QString& hostName0, uns if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -688,7 +688,7 @@ void PythonQtShell_QAbstractSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -710,7 +710,7 @@ void PythonQtShell_QAbstractSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -732,7 +732,7 @@ bool PythonQtShell_QAbstractSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -765,7 +765,7 @@ bool PythonQtShell_QAbstractSocket::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -798,7 +798,7 @@ bool PythonQtShell_QAbstractSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -831,7 +831,7 @@ bool PythonQtShell_QAbstractSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -864,7 +864,7 @@ qint64 PythonQtShell_QAbstractSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -897,7 +897,7 @@ qint64 PythonQtShell_QAbstractSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -930,7 +930,7 @@ qint64 PythonQtShell_QAbstractSocket::readLineData(char* data0, qint64 maxlen if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -963,7 +963,7 @@ bool PythonQtShell_QAbstractSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -996,7 +996,7 @@ void PythonQtShell_QAbstractSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1018,7 +1018,7 @@ bool PythonQtShell_QAbstractSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1051,7 +1051,7 @@ void PythonQtShell_QAbstractSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -1073,7 +1073,7 @@ bool PythonQtShell_QAbstractSocket::setSocketDescriptor(qintptr socketDescript if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -1106,7 +1106,7 @@ void PythonQtShell_QAbstractSocket::setSocketOption(QAbstractSocket::SocketOptio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -1128,7 +1128,7 @@ qint64 PythonQtShell_QAbstractSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1161,7 +1161,7 @@ qintptr PythonQtShell_QAbstractSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -1194,7 +1194,7 @@ QVariant PythonQtShell_QAbstractSocket::socketOption(QAbstractSocket::SocketOpt if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1227,7 +1227,7 @@ void PythonQtShell_QAbstractSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1249,7 +1249,7 @@ bool PythonQtShell_QAbstractSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1282,7 +1282,7 @@ bool PythonQtShell_QAbstractSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1315,7 +1315,7 @@ bool PythonQtShell_QAbstractSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1348,7 +1348,7 @@ bool PythonQtShell_QAbstractSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1381,7 +1381,7 @@ qint64 PythonQtShell_QAbstractSocket::writeData(const char* data0, qint64 len if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -1757,7 +1757,7 @@ void PythonQtShell_QDnsLookup::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1779,7 +1779,7 @@ void PythonQtShell_QDnsLookup::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1801,7 +1801,7 @@ bool PythonQtShell_QDnsLookup::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1834,7 +1834,7 @@ bool PythonQtShell_QDnsLookup::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1867,7 +1867,7 @@ void PythonQtShell_QDnsLookup::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2366,7 +2366,7 @@ void PythonQtShell_QHttpMultiPart::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2388,7 +2388,7 @@ void PythonQtShell_QHttpMultiPart::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2410,7 +2410,7 @@ bool PythonQtShell_QHttpMultiPart::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2443,7 +2443,7 @@ bool PythonQtShell_QHttpMultiPart::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2476,7 +2476,7 @@ void PythonQtShell_QHttpMultiPart::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2605,7 +2605,7 @@ void PythonQtShell_QLocalServer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2627,7 +2627,7 @@ void PythonQtShell_QLocalServer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2649,7 +2649,7 @@ bool PythonQtShell_QLocalServer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2682,7 +2682,7 @@ bool PythonQtShell_QLocalServer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2715,7 +2715,7 @@ bool PythonQtShell_QLocalServer::hasPendingConnections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2748,7 +2748,7 @@ void PythonQtShell_QLocalServer::incomingConnection(quintptr socketDescriptor0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "quintptr"}; @@ -2770,7 +2770,7 @@ QLocalSocket* PythonQtShell_QLocalServer::nextPendingConnection() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLocalSocket*"}; @@ -2803,7 +2803,7 @@ void PythonQtShell_QLocalServer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2933,7 +2933,7 @@ bool PythonQtShell_QLocalSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2966,7 +2966,7 @@ qint64 PythonQtShell_QLocalSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2999,7 +2999,7 @@ qint64 PythonQtShell_QLocalSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3032,7 +3032,7 @@ bool PythonQtShell_QLocalSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3065,7 +3065,7 @@ void PythonQtShell_QLocalSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3087,7 +3087,7 @@ void PythonQtShell_QLocalSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3109,7 +3109,7 @@ void PythonQtShell_QLocalSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3131,7 +3131,7 @@ bool PythonQtShell_QLocalSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3164,7 +3164,7 @@ bool PythonQtShell_QLocalSocket::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3197,7 +3197,7 @@ bool PythonQtShell_QLocalSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3230,7 +3230,7 @@ bool PythonQtShell_QLocalSocket::open(QIODevice::OpenMode openMode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3263,7 +3263,7 @@ qint64 PythonQtShell_QLocalSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3296,7 +3296,7 @@ qint64 PythonQtShell_QLocalSocket::readData(char* arg__1, qint64 arg__2) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3329,7 +3329,7 @@ qint64 PythonQtShell_QLocalSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3362,7 +3362,7 @@ bool PythonQtShell_QLocalSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3395,7 +3395,7 @@ bool PythonQtShell_QLocalSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3428,7 +3428,7 @@ qint64 PythonQtShell_QLocalSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3461,7 +3461,7 @@ void PythonQtShell_QLocalSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3483,7 +3483,7 @@ bool PythonQtShell_QLocalSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3516,7 +3516,7 @@ bool PythonQtShell_QLocalSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3549,7 +3549,7 @@ qint64 PythonQtShell_QLocalSocket::writeData(const char* arg__1, qint64 arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3690,7 +3690,7 @@ void PythonQtShell_QNetworkAccessManager::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3712,7 +3712,7 @@ QNetworkReply* PythonQtShell_QNetworkAccessManager::createRequest(QNetworkAcces if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createRequest"); + static PyObject* name = PyUnicode_FromString("createRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkReply*" , "QNetworkAccessManager::Operation" , "const QNetworkRequest&" , "QIODevice*"}; @@ -3745,7 +3745,7 @@ void PythonQtShell_QNetworkAccessManager::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3767,7 +3767,7 @@ bool PythonQtShell_QNetworkAccessManager::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3800,7 +3800,7 @@ bool PythonQtShell_QNetworkAccessManager::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3833,7 +3833,7 @@ void PythonQtShell_QNetworkAccessManager::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4268,7 +4268,7 @@ void PythonQtShell_QNetworkConfigurationManager::childEvent(QChildEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4290,7 +4290,7 @@ void PythonQtShell_QNetworkConfigurationManager::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4312,7 +4312,7 @@ bool PythonQtShell_QNetworkConfigurationManager::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4345,7 +4345,7 @@ bool PythonQtShell_QNetworkConfigurationManager::eventFilter(QObject* watched0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4378,7 +4378,7 @@ void PythonQtShell_QNetworkConfigurationManager::timerEvent(QTimerEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4575,7 +4575,7 @@ void PythonQtShell_QNetworkCookieJar::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4597,7 +4597,7 @@ QList PythonQtShell_QNetworkCookieJar::cookiesForUrl(const QUr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cookiesForUrl"); + static PyObject* name = PyUnicode_FromString("cookiesForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QUrl&"}; @@ -4630,7 +4630,7 @@ void PythonQtShell_QNetworkCookieJar::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4652,7 +4652,7 @@ bool PythonQtShell_QNetworkCookieJar::deleteCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteCookie"); + static PyObject* name = PyUnicode_FromString("deleteCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4685,7 +4685,7 @@ bool PythonQtShell_QNetworkCookieJar::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4718,7 +4718,7 @@ bool PythonQtShell_QNetworkCookieJar::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4751,7 +4751,7 @@ bool PythonQtShell_QNetworkCookieJar::insertCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertCookie"); + static PyObject* name = PyUnicode_FromString("insertCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4784,7 +4784,7 @@ bool PythonQtShell_QNetworkCookieJar::setCookiesFromUrl(const QList 0) { - static PyObject* name = PyString_FromString("setCookiesFromUrl"); + static PyObject* name = PyUnicode_FromString("setCookiesFromUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QList&" , "const QUrl&"}; @@ -4817,7 +4817,7 @@ void PythonQtShell_QNetworkCookieJar::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4839,7 +4839,7 @@ bool PythonQtShell_QNetworkCookieJar::updateCookie(const QNetworkCookie& cooki if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateCookie"); + static PyObject* name = PyUnicode_FromString("updateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&"}; @@ -4872,7 +4872,7 @@ bool PythonQtShell_QNetworkCookieJar::validateCookie(const QNetworkCookie& coo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("validateCookie"); + static PyObject* name = PyUnicode_FromString("validateCookie"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QNetworkCookie&" , "const QUrl&"}; @@ -4968,7 +4968,7 @@ qint64 PythonQtShell_QNetworkDiskCache::cacheSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cacheSize"); + static PyObject* name = PyUnicode_FromString("cacheSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5001,7 +5001,7 @@ void PythonQtShell_QNetworkDiskCache::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5023,7 +5023,7 @@ void PythonQtShell_QNetworkDiskCache::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5045,7 +5045,7 @@ void PythonQtShell_QNetworkDiskCache::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5067,7 +5067,7 @@ QIODevice* PythonQtShell_QNetworkDiskCache::data(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QUrl&"}; @@ -5100,7 +5100,7 @@ bool PythonQtShell_QNetworkDiskCache::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5133,7 +5133,7 @@ bool PythonQtShell_QNetworkDiskCache::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5166,7 +5166,7 @@ qint64 PythonQtShell_QNetworkDiskCache::expire() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("expire"); + static PyObject* name = PyUnicode_FromString("expire"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5199,7 +5199,7 @@ void PythonQtShell_QNetworkDiskCache::insert(QIODevice* device0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insert"); + static PyObject* name = PyUnicode_FromString("insert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QIODevice*"}; @@ -5221,7 +5221,7 @@ QNetworkCacheMetaData PythonQtShell_QNetworkDiskCache::metaData(const QUrl& ur if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metaData"); + static PyObject* name = PyUnicode_FromString("metaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkCacheMetaData" , "const QUrl&"}; @@ -5254,7 +5254,7 @@ QIODevice* PythonQtShell_QNetworkDiskCache::prepare(const QNetworkCacheMetaData if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QIODevice*" , "const QNetworkCacheMetaData&"}; @@ -5287,7 +5287,7 @@ bool PythonQtShell_QNetworkDiskCache::remove(const QUrl& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("remove"); + static PyObject* name = PyUnicode_FromString("remove"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QUrl&"}; @@ -5320,7 +5320,7 @@ void PythonQtShell_QNetworkDiskCache::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5342,7 +5342,7 @@ void PythonQtShell_QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateMetaData"); + static PyObject* name = PyUnicode_FromString("updateMetaData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QNetworkCacheMetaData&"}; @@ -5640,7 +5640,7 @@ QList PythonQtShell_QNetworkProxyFactory::queryProxy(const QNet if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryProxy"); + static PyObject* name = PyUnicode_FromString("queryProxy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QNetworkProxyQuery&"}; @@ -5827,7 +5827,7 @@ void PythonQtShell_QNetworkReply::abort() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("abort"); + static PyObject* name = PyUnicode_FromString("abort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5849,7 +5849,7 @@ bool PythonQtShell_QNetworkReply::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5882,7 +5882,7 @@ qint64 PythonQtShell_QNetworkReply::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5915,7 +5915,7 @@ qint64 PythonQtShell_QNetworkReply::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -5948,7 +5948,7 @@ bool PythonQtShell_QNetworkReply::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5981,7 +5981,7 @@ void PythonQtShell_QNetworkReply::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6003,7 +6003,7 @@ void PythonQtShell_QNetworkReply::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6025,7 +6025,7 @@ void PythonQtShell_QNetworkReply::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6047,7 +6047,7 @@ bool PythonQtShell_QNetworkReply::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6080,7 +6080,7 @@ bool PythonQtShell_QNetworkReply::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6113,7 +6113,7 @@ void PythonQtShell_QNetworkReply::ignoreSslErrors() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignoreSslErrors"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrors"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6135,7 +6135,7 @@ void PythonQtShell_QNetworkReply::ignoreSslErrorsImplementation(const QList 0) { - static PyObject* name = PyString_FromString("ignoreSslErrorsImplementation"); + static PyObject* name = PyUnicode_FromString("ignoreSslErrorsImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QList&"}; @@ -6157,7 +6157,7 @@ bool PythonQtShell_QNetworkReply::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6190,7 +6190,7 @@ bool PythonQtShell_QNetworkReply::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -6223,7 +6223,7 @@ qint64 PythonQtShell_QNetworkReply::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6256,7 +6256,7 @@ qint64 PythonQtShell_QNetworkReply::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6289,7 +6289,7 @@ qint64 PythonQtShell_QNetworkReply::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -6322,7 +6322,7 @@ bool PythonQtShell_QNetworkReply::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -6355,7 +6355,7 @@ bool PythonQtShell_QNetworkReply::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -6388,7 +6388,7 @@ void PythonQtShell_QNetworkReply::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -6410,7 +6410,7 @@ void PythonQtShell_QNetworkReply::setSslConfigurationImplementation(const QSslCo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("setSslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSslConfiguration&"}; @@ -6432,7 +6432,7 @@ qint64 PythonQtShell_QNetworkReply::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -6465,7 +6465,7 @@ void PythonQtShell_QNetworkReply::sslConfigurationImplementation(QSslConfigurati if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sslConfigurationImplementation"); + static PyObject* name = PyUnicode_FromString("sslConfigurationImplementation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSslConfiguration&"}; @@ -6487,7 +6487,7 @@ void PythonQtShell_QNetworkReply::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6509,7 +6509,7 @@ bool PythonQtShell_QNetworkReply::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6542,7 +6542,7 @@ bool PythonQtShell_QNetworkReply::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6575,7 +6575,7 @@ qint64 PythonQtShell_QNetworkReply::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network1.cpp b/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network1.cpp index 48dc140db..54d68b329 100644 --- a/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network1.cpp +++ b/generated_cpp_56/com_trolltech_qt_network/com_trolltech_qt_network1.cpp @@ -41,7 +41,7 @@ void PythonQtShell_QNetworkSession::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -63,7 +63,7 @@ void PythonQtShell_QNetworkSession::connectNotify(const QMetaMethod& signal0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectNotify"); + static PyObject* name = PyUnicode_FromString("connectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -85,7 +85,7 @@ void PythonQtShell_QNetworkSession::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -107,7 +107,7 @@ void PythonQtShell_QNetworkSession::disconnectNotify(const QMetaMethod& signal0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectNotify"); + static PyObject* name = PyUnicode_FromString("disconnectNotify"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QMetaMethod&"}; @@ -129,7 +129,7 @@ bool PythonQtShell_QNetworkSession::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -162,7 +162,7 @@ bool PythonQtShell_QNetworkSession::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -195,7 +195,7 @@ void PythonQtShell_QNetworkSession::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1118,7 +1118,7 @@ bool PythonQtShell_QSslSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1151,7 +1151,7 @@ qint64 PythonQtShell_QSslSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1184,7 +1184,7 @@ qint64 PythonQtShell_QSslSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1217,7 +1217,7 @@ bool PythonQtShell_QSslSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1250,7 +1250,7 @@ void PythonQtShell_QSslSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1272,7 +1272,7 @@ void PythonQtShell_QSslSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1294,7 +1294,7 @@ void PythonQtShell_QSslSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -1316,7 +1316,7 @@ void PythonQtShell_QSslSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1338,7 +1338,7 @@ void PythonQtShell_QSslSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1360,7 +1360,7 @@ bool PythonQtShell_QSslSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1393,7 +1393,7 @@ bool PythonQtShell_QSslSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1426,7 +1426,7 @@ bool PythonQtShell_QSslSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1459,7 +1459,7 @@ bool PythonQtShell_QSslSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -1492,7 +1492,7 @@ qint64 PythonQtShell_QSslSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1525,7 +1525,7 @@ qint64 PythonQtShell_QSslSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1558,7 +1558,7 @@ qint64 PythonQtShell_QSslSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -1591,7 +1591,7 @@ bool PythonQtShell_QSslSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1624,7 +1624,7 @@ void PythonQtShell_QSslSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1646,7 +1646,7 @@ bool PythonQtShell_QSslSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -1679,7 +1679,7 @@ void PythonQtShell_QSslSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -1701,7 +1701,7 @@ bool PythonQtShell_QSslSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -1734,7 +1734,7 @@ void PythonQtShell_QSslSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -1756,7 +1756,7 @@ qint64 PythonQtShell_QSslSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -1789,7 +1789,7 @@ qintptr PythonQtShell_QSslSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -1822,7 +1822,7 @@ QVariant PythonQtShell_QSslSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -1855,7 +1855,7 @@ void PythonQtShell_QSslSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1877,7 +1877,7 @@ bool PythonQtShell_QSslSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1910,7 +1910,7 @@ bool PythonQtShell_QSslSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1943,7 +1943,7 @@ bool PythonQtShell_QSslSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -1976,7 +1976,7 @@ bool PythonQtShell_QSslSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -2009,7 +2009,7 @@ qint64 PythonQtShell_QSslSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -2341,7 +2341,7 @@ void PythonQtShell_QTcpServer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2363,7 +2363,7 @@ void PythonQtShell_QTcpServer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2385,7 +2385,7 @@ bool PythonQtShell_QTcpServer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2418,7 +2418,7 @@ bool PythonQtShell_QTcpServer::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2451,7 +2451,7 @@ bool PythonQtShell_QTcpServer::hasPendingConnections() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasPendingConnections"); + static PyObject* name = PyUnicode_FromString("hasPendingConnections"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2484,7 +2484,7 @@ void PythonQtShell_QTcpServer::incomingConnection(qintptr handle0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incomingConnection"); + static PyObject* name = PyUnicode_FromString("incomingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qintptr"}; @@ -2506,7 +2506,7 @@ QTcpSocket* PythonQtShell_QTcpServer::nextPendingConnection() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextPendingConnection"); + static PyObject* name = PyUnicode_FromString("nextPendingConnection"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QTcpSocket*"}; @@ -2539,7 +2539,7 @@ void PythonQtShell_QTcpServer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2684,7 +2684,7 @@ bool PythonQtShell_QTcpSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2717,7 +2717,7 @@ qint64 PythonQtShell_QTcpSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2750,7 +2750,7 @@ qint64 PythonQtShell_QTcpSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -2783,7 +2783,7 @@ bool PythonQtShell_QTcpSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2816,7 +2816,7 @@ void PythonQtShell_QTcpSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2838,7 +2838,7 @@ void PythonQtShell_QTcpSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2860,7 +2860,7 @@ void PythonQtShell_QTcpSocket::connectToHost(const QHostAddress& address0, unsi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -2882,7 +2882,7 @@ void PythonQtShell_QTcpSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -2904,7 +2904,7 @@ void PythonQtShell_QTcpSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2926,7 +2926,7 @@ void PythonQtShell_QTcpSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2948,7 +2948,7 @@ bool PythonQtShell_QTcpSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2981,7 +2981,7 @@ bool PythonQtShell_QTcpSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3014,7 +3014,7 @@ bool PythonQtShell_QTcpSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3047,7 +3047,7 @@ bool PythonQtShell_QTcpSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -3080,7 +3080,7 @@ qint64 PythonQtShell_QTcpSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3113,7 +3113,7 @@ qint64 PythonQtShell_QTcpSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3146,7 +3146,7 @@ qint64 PythonQtShell_QTcpSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -3179,7 +3179,7 @@ bool PythonQtShell_QTcpSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3212,7 +3212,7 @@ void PythonQtShell_QTcpSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3234,7 +3234,7 @@ bool PythonQtShell_QTcpSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -3267,7 +3267,7 @@ void PythonQtShell_QTcpSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -3289,7 +3289,7 @@ bool PythonQtShell_QTcpSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -3322,7 +3322,7 @@ void PythonQtShell_QTcpSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -3344,7 +3344,7 @@ qint64 PythonQtShell_QTcpSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3377,7 +3377,7 @@ qintptr PythonQtShell_QTcpSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -3410,7 +3410,7 @@ QVariant PythonQtShell_QTcpSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -3443,7 +3443,7 @@ void PythonQtShell_QTcpSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3465,7 +3465,7 @@ bool PythonQtShell_QTcpSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3498,7 +3498,7 @@ bool PythonQtShell_QTcpSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3531,7 +3531,7 @@ bool PythonQtShell_QTcpSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3564,7 +3564,7 @@ bool PythonQtShell_QTcpSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3597,7 +3597,7 @@ qint64 PythonQtShell_QTcpSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; @@ -3653,7 +3653,7 @@ bool PythonQtShell_QUdpSocket::atEnd() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atEnd"); + static PyObject* name = PyUnicode_FromString("atEnd"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3686,7 +3686,7 @@ qint64 PythonQtShell_QUdpSocket::bytesAvailable() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesAvailable"); + static PyObject* name = PyUnicode_FromString("bytesAvailable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3719,7 +3719,7 @@ qint64 PythonQtShell_QUdpSocket::bytesToWrite() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bytesToWrite"); + static PyObject* name = PyUnicode_FromString("bytesToWrite"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -3752,7 +3752,7 @@ bool PythonQtShell_QUdpSocket::canReadLine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canReadLine"); + static PyObject* name = PyUnicode_FromString("canReadLine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3785,7 +3785,7 @@ void PythonQtShell_QUdpSocket::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3807,7 +3807,7 @@ void PythonQtShell_QUdpSocket::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3829,7 +3829,7 @@ void PythonQtShell_QUdpSocket::connectToHost(const QHostAddress& address0, unsi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QHostAddress&" , "unsigned short" , "QIODevice::OpenMode"}; @@ -3851,7 +3851,7 @@ void PythonQtShell_QUdpSocket::connectToHost(const QString& hostName0, unsigned if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("connectToHost"); + static PyObject* name = PyUnicode_FromString("connectToHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "unsigned short" , "QIODevice::OpenMode" , "QAbstractSocket::NetworkLayerProtocol"}; @@ -3873,7 +3873,7 @@ void PythonQtShell_QUdpSocket::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3895,7 +3895,7 @@ void PythonQtShell_QUdpSocket::disconnectFromHost() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("disconnectFromHost"); + static PyObject* name = PyUnicode_FromString("disconnectFromHost"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3917,7 +3917,7 @@ bool PythonQtShell_QUdpSocket::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3950,7 +3950,7 @@ bool PythonQtShell_QUdpSocket::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3983,7 +3983,7 @@ bool PythonQtShell_QUdpSocket::isSequential() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSequential"); + static PyObject* name = PyUnicode_FromString("isSequential"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4016,7 +4016,7 @@ bool PythonQtShell_QUdpSocket::open(QIODevice::OpenMode mode0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QIODevice::OpenMode"}; @@ -4049,7 +4049,7 @@ qint64 PythonQtShell_QUdpSocket::pos() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("pos"); + static PyObject* name = PyUnicode_FromString("pos"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4082,7 +4082,7 @@ qint64 PythonQtShell_QUdpSocket::readData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readData"); + static PyObject* name = PyUnicode_FromString("readData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4115,7 +4115,7 @@ qint64 PythonQtShell_QUdpSocket::readLineData(char* data0, qint64 maxlen1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("readLineData"); + static PyObject* name = PyUnicode_FromString("readLineData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "char*" , "qint64"}; @@ -4148,7 +4148,7 @@ bool PythonQtShell_QUdpSocket::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4181,7 +4181,7 @@ void PythonQtShell_QUdpSocket::resume() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resume"); + static PyObject* name = PyUnicode_FromString("resume"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4203,7 +4203,7 @@ bool PythonQtShell_QUdpSocket::seek(qint64 pos0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("seek"); + static PyObject* name = PyUnicode_FromString("seek"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qint64"}; @@ -4236,7 +4236,7 @@ void PythonQtShell_QUdpSocket::setReadBufferSize(qint64 size0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setReadBufferSize"); + static PyObject* name = PyUnicode_FromString("setReadBufferSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qint64"}; @@ -4258,7 +4258,7 @@ bool PythonQtShell_QUdpSocket::setSocketDescriptor(qintptr socketDescriptor0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketDescriptor"); + static PyObject* name = PyUnicode_FromString("setSocketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "qintptr" , "QAbstractSocket::SocketState" , "QIODevice::OpenMode"}; @@ -4291,7 +4291,7 @@ void PythonQtShell_QUdpSocket::setSocketOption(QAbstractSocket::SocketOption op if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSocketOption"); + static PyObject* name = PyUnicode_FromString("setSocketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QAbstractSocket::SocketOption" , "const QVariant&"}; @@ -4313,7 +4313,7 @@ qint64 PythonQtShell_QUdpSocket::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64"}; @@ -4346,7 +4346,7 @@ qintptr PythonQtShell_QUdpSocket::socketDescriptor() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketDescriptor"); + static PyObject* name = PyUnicode_FromString("socketDescriptor"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qintptr"}; @@ -4379,7 +4379,7 @@ QVariant PythonQtShell_QUdpSocket::socketOption(QAbstractSocket::SocketOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("socketOption"); + static PyObject* name = PyUnicode_FromString("socketOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QAbstractSocket::SocketOption"}; @@ -4412,7 +4412,7 @@ void PythonQtShell_QUdpSocket::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4434,7 +4434,7 @@ bool PythonQtShell_QUdpSocket::waitForBytesWritten(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForBytesWritten"); + static PyObject* name = PyUnicode_FromString("waitForBytesWritten"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4467,7 +4467,7 @@ bool PythonQtShell_QUdpSocket::waitForConnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForConnected"); + static PyObject* name = PyUnicode_FromString("waitForConnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4500,7 +4500,7 @@ bool PythonQtShell_QUdpSocket::waitForDisconnected(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForDisconnected"); + static PyObject* name = PyUnicode_FromString("waitForDisconnected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4533,7 +4533,7 @@ bool PythonQtShell_QUdpSocket::waitForReadyRead(int msecs0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("waitForReadyRead"); + static PyObject* name = PyUnicode_FromString("waitForReadyRead"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4566,7 +4566,7 @@ qint64 PythonQtShell_QUdpSocket::writeData(const char* data0, qint64 len1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("writeData"); + static PyObject* name = PyUnicode_FromString("writeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"qint64" , "const char*" , "qint64"}; diff --git a/generated_cpp_56/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp b/generated_cpp_56/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp index ce7d25da4..0ed1e4e58 100644 --- a/generated_cpp_56/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp +++ b/generated_cpp_56/com_trolltech_qt_opengl/com_trolltech_qt_opengl0.cpp @@ -232,7 +232,7 @@ bool PythonQtShell_QGLContext::chooseContext(const QGLContext* shareContext0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("chooseContext"); + static PyObject* name = PyUnicode_FromString("chooseContext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -265,7 +265,7 @@ bool PythonQtShell_QGLContext::create(const QGLContext* shareContext0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QGLContext*"}; @@ -298,7 +298,7 @@ void PythonQtShell_QGLContext::doneCurrent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("doneCurrent"); + static PyObject* name = PyUnicode_FromString("doneCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -320,7 +320,7 @@ void PythonQtShell_QGLContext::makeCurrent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("makeCurrent"); + static PyObject* name = PyUnicode_FromString("makeCurrent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -342,7 +342,7 @@ void PythonQtShell_QGLContext::swapBuffers() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("swapBuffers"); + static PyObject* name = PyUnicode_FromString("swapBuffers"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -864,7 +864,7 @@ int PythonQtShell_QGLFramebufferObject::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -897,7 +897,7 @@ void PythonQtShell_QGLFramebufferObject::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -919,7 +919,7 @@ int PythonQtShell_QGLFramebufferObject::metric(QPaintDevice::PaintDeviceMetric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -952,7 +952,7 @@ QPaintEngine* PythonQtShell_QGLFramebufferObject::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -985,7 +985,7 @@ QPaintDevice* PythonQtShell_QGLFramebufferObject::redirected(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1018,7 +1018,7 @@ QPainter* PythonQtShell_QGLFramebufferObject::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1736,7 +1736,7 @@ int PythonQtShell_QGLPixelBuffer::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1769,7 +1769,7 @@ void PythonQtShell_QGLPixelBuffer::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1791,7 +1791,7 @@ int PythonQtShell_QGLPixelBuffer::metric(QPaintDevice::PaintDeviceMetric metri if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1824,7 +1824,7 @@ QPaintEngine* PythonQtShell_QGLPixelBuffer::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1857,7 +1857,7 @@ QPaintDevice* PythonQtShell_QGLPixelBuffer::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1890,7 +1890,7 @@ QPainter* PythonQtShell_QGLPixelBuffer::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -2032,7 +2032,7 @@ void PythonQtShell_QGLShader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2054,7 +2054,7 @@ void PythonQtShell_QGLShader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2076,7 +2076,7 @@ bool PythonQtShell_QGLShader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2109,7 +2109,7 @@ bool PythonQtShell_QGLShader::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2142,7 +2142,7 @@ void PythonQtShell_QGLShader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2241,7 +2241,7 @@ void PythonQtShell_QGLShaderProgram::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2263,7 +2263,7 @@ void PythonQtShell_QGLShaderProgram::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2285,7 +2285,7 @@ bool PythonQtShell_QGLShaderProgram::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2318,7 +2318,7 @@ bool PythonQtShell_QGLShaderProgram::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2351,7 +2351,7 @@ bool PythonQtShell_QGLShaderProgram::link() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("link"); + static PyObject* name = PyUnicode_FromString("link"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2384,7 +2384,7 @@ void PythonQtShell_QGLShaderProgram::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2973,7 +2973,7 @@ void PythonQtShell_QGLWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2995,7 +2995,7 @@ void PythonQtShell_QGLWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3017,7 +3017,7 @@ void PythonQtShell_QGLWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3039,7 +3039,7 @@ void PythonQtShell_QGLWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -3061,7 +3061,7 @@ void PythonQtShell_QGLWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -3083,7 +3083,7 @@ void PythonQtShell_QGLWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3105,7 +3105,7 @@ int PythonQtShell_QGLWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3138,7 +3138,7 @@ void PythonQtShell_QGLWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -3160,7 +3160,7 @@ void PythonQtShell_QGLWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -3182,7 +3182,7 @@ void PythonQtShell_QGLWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -3204,7 +3204,7 @@ void PythonQtShell_QGLWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3226,7 +3226,7 @@ void PythonQtShell_QGLWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3248,7 +3248,7 @@ bool PythonQtShell_QGLWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3281,7 +3281,7 @@ bool PythonQtShell_QGLWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3314,7 +3314,7 @@ void PythonQtShell_QGLWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3336,7 +3336,7 @@ bool PythonQtShell_QGLWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3369,7 +3369,7 @@ void PythonQtShell_QGLWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3391,7 +3391,7 @@ void PythonQtShell_QGLWidget::glDraw() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("glDraw"); + static PyObject* name = PyUnicode_FromString("glDraw"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3413,7 +3413,7 @@ void PythonQtShell_QGLWidget::glInit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("glInit"); + static PyObject* name = PyUnicode_FromString("glInit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3435,7 +3435,7 @@ bool PythonQtShell_QGLWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3468,7 +3468,7 @@ int PythonQtShell_QGLWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3501,7 +3501,7 @@ void PythonQtShell_QGLWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3523,7 +3523,7 @@ void PythonQtShell_QGLWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3545,7 +3545,7 @@ void PythonQtShell_QGLWidget::initializeGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeGL"); + static PyObject* name = PyUnicode_FromString("initializeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3567,7 +3567,7 @@ void PythonQtShell_QGLWidget::initializeOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeOverlayGL"); + static PyObject* name = PyUnicode_FromString("initializeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3589,7 +3589,7 @@ void PythonQtShell_QGLWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3611,7 +3611,7 @@ QVariant PythonQtShell_QGLWidget::inputMethodQuery(Qt::InputMethodQuery arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3644,7 +3644,7 @@ void PythonQtShell_QGLWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3666,7 +3666,7 @@ void PythonQtShell_QGLWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3688,7 +3688,7 @@ void PythonQtShell_QGLWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3710,7 +3710,7 @@ int PythonQtShell_QGLWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3743,7 +3743,7 @@ QSize PythonQtShell_QGLWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3776,7 +3776,7 @@ void PythonQtShell_QGLWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3798,7 +3798,7 @@ void PythonQtShell_QGLWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3820,7 +3820,7 @@ void PythonQtShell_QGLWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3842,7 +3842,7 @@ void PythonQtShell_QGLWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3864,7 +3864,7 @@ void PythonQtShell_QGLWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3886,7 +3886,7 @@ bool PythonQtShell_QGLWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3919,7 +3919,7 @@ QPaintEngine* PythonQtShell_QGLWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3952,7 +3952,7 @@ void PythonQtShell_QGLWidget::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3974,7 +3974,7 @@ void PythonQtShell_QGLWidget::paintGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintGL"); + static PyObject* name = PyUnicode_FromString("paintGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3996,7 +3996,7 @@ void PythonQtShell_QGLWidget::paintOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintOverlayGL"); + static PyObject* name = PyUnicode_FromString("paintOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4018,7 +4018,7 @@ QPaintDevice* PythonQtShell_QGLWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -4051,7 +4051,7 @@ void PythonQtShell_QGLWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4073,7 +4073,7 @@ void PythonQtShell_QGLWidget::resizeGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeGL"); + static PyObject* name = PyUnicode_FromString("resizeGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4095,7 +4095,7 @@ void PythonQtShell_QGLWidget::resizeOverlayGL(int w0, int h1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeOverlayGL"); + static PyObject* name = PyUnicode_FromString("resizeOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "int"}; @@ -4117,7 +4117,7 @@ void PythonQtShell_QGLWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -4139,7 +4139,7 @@ QPainter* PythonQtShell_QGLWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -4172,7 +4172,7 @@ void PythonQtShell_QGLWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4194,7 +4194,7 @@ QSize PythonQtShell_QGLWidget::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getSizeHint"); + static PyObject* name = PyUnicode_FromString("getSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4227,7 +4227,7 @@ void PythonQtShell_QGLWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4249,7 +4249,7 @@ void PythonQtShell_QGLWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4271,7 +4271,7 @@ void PythonQtShell_QGLWidget::updateGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGL"); + static PyObject* name = PyUnicode_FromString("updateGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4293,7 +4293,7 @@ void PythonQtShell_QGLWidget::updateOverlayGL() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateOverlayGL"); + static PyObject* name = PyUnicode_FromString("updateOverlayGL"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4315,7 +4315,7 @@ void PythonQtShell_QGLWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp b/generated_cpp_56/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp index 13a926e14..92b34b7d6 100644 --- a/generated_cpp_56/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp +++ b/generated_cpp_56/com_trolltech_qt_qml/com_trolltech_qt_qml0.cpp @@ -42,7 +42,7 @@ void PythonQtShell_QJSEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -64,7 +64,7 @@ void PythonQtShell_QJSEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -86,7 +86,7 @@ bool PythonQtShell_QJSEngine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -119,7 +119,7 @@ bool PythonQtShell_QJSEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -152,7 +152,7 @@ void PythonQtShell_QJSEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -460,7 +460,7 @@ QUrl PythonQtShell_QQmlAbstractUrlInterceptor::intercept(const QUrl& path0, QQ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("intercept"); + static PyObject* name = PyUnicode_FromString("intercept"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "QQmlAbstractUrlInterceptor::DataType"}; @@ -508,7 +508,7 @@ void PythonQtShell_QQmlApplicationEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -530,7 +530,7 @@ void PythonQtShell_QQmlApplicationEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -552,7 +552,7 @@ bool PythonQtShell_QQmlApplicationEngine::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -585,7 +585,7 @@ bool PythonQtShell_QQmlApplicationEngine::eventFilter(QObject* watched0, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -618,7 +618,7 @@ void PythonQtShell_QQmlApplicationEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -676,7 +676,7 @@ QObject* PythonQtShell_QQmlComponent::beginCreate(QQmlContext* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginCreate"); + static PyObject* name = PyUnicode_FromString("beginCreate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "QQmlContext*"}; @@ -709,7 +709,7 @@ void PythonQtShell_QQmlComponent::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -731,7 +731,7 @@ void PythonQtShell_QQmlComponent::completeCreate() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("completeCreate"); + static PyObject* name = PyUnicode_FromString("completeCreate"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -753,7 +753,7 @@ QObject* PythonQtShell_QQmlComponent::create(QQmlContext* context0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "QQmlContext*"}; @@ -786,7 +786,7 @@ void PythonQtShell_QQmlComponent::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -808,7 +808,7 @@ bool PythonQtShell_QQmlComponent::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -841,7 +841,7 @@ bool PythonQtShell_QQmlComponent::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -874,7 +874,7 @@ void PythonQtShell_QQmlComponent::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1009,7 +1009,7 @@ void PythonQtShell_QQmlContext::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1031,7 +1031,7 @@ void PythonQtShell_QQmlContext::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1053,7 +1053,7 @@ bool PythonQtShell_QQmlContext::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1086,7 +1086,7 @@ bool PythonQtShell_QQmlContext::eventFilter(QObject* watched0, QEvent* event1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1119,7 +1119,7 @@ void PythonQtShell_QQmlContext::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1244,7 +1244,7 @@ void PythonQtShell_QQmlEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1266,7 +1266,7 @@ void PythonQtShell_QQmlEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1288,7 +1288,7 @@ bool PythonQtShell_QQmlEngine::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1321,7 +1321,7 @@ bool PythonQtShell_QQmlEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1354,7 +1354,7 @@ void PythonQtShell_QQmlEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1620,7 +1620,7 @@ void PythonQtShell_QQmlExpression::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1642,7 +1642,7 @@ void PythonQtShell_QQmlExpression::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1664,7 +1664,7 @@ bool PythonQtShell_QQmlExpression::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1697,7 +1697,7 @@ bool PythonQtShell_QQmlExpression::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1730,7 +1730,7 @@ void PythonQtShell_QQmlExpression::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1858,7 +1858,7 @@ void PythonQtShell_QQmlExtensionInterface::initializeEngine(QQmlEngine* engine0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeEngine"); + static PyObject* name = PyUnicode_FromString("initializeEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlEngine*" , "const char*"}; @@ -1880,7 +1880,7 @@ void PythonQtShell_QQmlExtensionInterface::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; @@ -1917,7 +1917,7 @@ void PythonQtShell_QQmlExtensionPlugin::initializeEngine(QQmlEngine* engine0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initializeEngine"); + static PyObject* name = PyUnicode_FromString("initializeEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlEngine*" , "const char*"}; @@ -1939,7 +1939,7 @@ void PythonQtShell_QQmlExtensionPlugin::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; @@ -2133,7 +2133,7 @@ void PythonQtShell_QQmlFileSelector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2155,7 +2155,7 @@ void PythonQtShell_QQmlFileSelector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2177,7 +2177,7 @@ bool PythonQtShell_QQmlFileSelector::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2210,7 +2210,7 @@ bool PythonQtShell_QQmlFileSelector::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2243,7 +2243,7 @@ void PythonQtShell_QQmlFileSelector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2308,7 +2308,7 @@ void PythonQtShell_QQmlIncubationController::incubatingObjectCountChanged(int a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("incubatingObjectCountChanged"); + static PyObject* name = PyUnicode_FromString("incubatingObjectCountChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -2360,7 +2360,7 @@ void PythonQtShell_QQmlIncubator::setInitialState(QObject* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setInitialState"); + static PyObject* name = PyUnicode_FromString("setInitialState"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QObject*"}; @@ -2382,7 +2382,7 @@ void PythonQtShell_QQmlIncubator::statusChanged(QQmlIncubator::Status arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("statusChanged"); + static PyObject* name = PyUnicode_FromString("statusChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQmlIncubator::Status"}; @@ -2664,7 +2664,7 @@ QNetworkAccessManager* PythonQtShell_QQmlNetworkAccessManagerFactory::create(QO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QNetworkAccessManager*" , "QObject*"}; @@ -2712,7 +2712,7 @@ void PythonQtShell_QQmlParserStatus::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2734,7 +2734,7 @@ void PythonQtShell_QQmlParserStatus::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2960,7 +2960,7 @@ void PythonQtShell_QQmlPropertyMap::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2982,7 +2982,7 @@ void PythonQtShell_QQmlPropertyMap::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3004,7 +3004,7 @@ bool PythonQtShell_QQmlPropertyMap::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3037,7 +3037,7 @@ bool PythonQtShell_QQmlPropertyMap::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3070,7 +3070,7 @@ void PythonQtShell_QQmlPropertyMap::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3092,7 +3092,7 @@ QVariant PythonQtShell_QQmlPropertyMap::updateValue(const QString& key0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateValue"); + static PyObject* name = PyUnicode_FromString("updateValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -3198,7 +3198,7 @@ void PythonQtShell_QQmlPropertyValueSource::setTarget(const QQmlProperty& arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTarget"); + static PyObject* name = PyUnicode_FromString("setTarget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QQmlProperty&"}; @@ -3290,7 +3290,7 @@ void PythonQtShell_QQmlTypesExtensionInterface::registerTypes(const char* uri0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("registerTypes"); + static PyObject* name = PyUnicode_FromString("registerTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const char*"}; diff --git a/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp b/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp index 04837ea9f..fbc9e2641 100644 --- a/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp +++ b/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick0.cpp @@ -78,7 +78,7 @@ QRectF PythonQtShell_QQuickFramebufferObject::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -111,7 +111,7 @@ bool PythonQtShell_QQuickFramebufferObject::childMouseEventFilter(QQuickItem* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -144,7 +144,7 @@ void PythonQtShell_QQuickFramebufferObject::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -166,7 +166,7 @@ QRectF PythonQtShell_QQuickFramebufferObject::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -199,7 +199,7 @@ void PythonQtShell_QQuickFramebufferObject::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -221,7 +221,7 @@ bool PythonQtShell_QQuickFramebufferObject::contains(const QPointF& point0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -254,7 +254,7 @@ QQuickFramebufferObject::Renderer* PythonQtShell_QQuickFramebufferObject::creat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createRenderer"); + static PyObject* name = PyUnicode_FromString("createRenderer"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QQuickFramebufferObject::Renderer*"}; @@ -287,7 +287,7 @@ void PythonQtShell_QQuickFramebufferObject::dragEnterEvent(QDragEnterEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -309,7 +309,7 @@ void PythonQtShell_QQuickFramebufferObject::dragLeaveEvent(QDragLeaveEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -331,7 +331,7 @@ void PythonQtShell_QQuickFramebufferObject::dragMoveEvent(QDragMoveEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -353,7 +353,7 @@ void PythonQtShell_QQuickFramebufferObject::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -375,7 +375,7 @@ bool PythonQtShell_QQuickFramebufferObject::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -408,7 +408,7 @@ void PythonQtShell_QQuickFramebufferObject::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -430,7 +430,7 @@ void PythonQtShell_QQuickFramebufferObject::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -452,7 +452,7 @@ void PythonQtShell_QQuickFramebufferObject::geometryChanged(const QRectF& newGe if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -474,7 +474,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverEnterEvent(QHoverEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -496,7 +496,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverLeaveEvent(QHoverEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -518,7 +518,7 @@ void PythonQtShell_QQuickFramebufferObject::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -540,7 +540,7 @@ void PythonQtShell_QQuickFramebufferObject::inputMethodEvent(QInputMethodEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -562,7 +562,7 @@ QVariant PythonQtShell_QQuickFramebufferObject::inputMethodQuery(Qt::InputMetho if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -595,7 +595,7 @@ bool PythonQtShell_QQuickFramebufferObject::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -628,7 +628,7 @@ void PythonQtShell_QQuickFramebufferObject::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -650,7 +650,7 @@ void PythonQtShell_QQuickFramebufferObject::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -672,7 +672,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseDoubleClickEvent(QMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -694,7 +694,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -716,7 +716,7 @@ void PythonQtShell_QQuickFramebufferObject::mousePressEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -738,7 +738,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseReleaseEvent(QMouseEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -760,7 +760,7 @@ void PythonQtShell_QQuickFramebufferObject::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -782,7 +782,7 @@ void PythonQtShell_QQuickFramebufferObject::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -804,7 +804,7 @@ QSGTextureProvider* PythonQtShell_QQuickFramebufferObject::textureProvider() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -837,7 +837,7 @@ void PythonQtShell_QQuickFramebufferObject::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -859,7 +859,7 @@ void PythonQtShell_QQuickFramebufferObject::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -881,7 +881,7 @@ QSGNode* PythonQtShell_QQuickFramebufferObject::updatePaintNode(QSGNode* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -914,7 +914,7 @@ void PythonQtShell_QQuickFramebufferObject::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -936,7 +936,7 @@ void PythonQtShell_QQuickFramebufferObject::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -958,7 +958,7 @@ void PythonQtShell_QQuickFramebufferObject::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1028,7 +1028,7 @@ QOpenGLFramebufferObject* PythonQtShell_QQuickFramebufferObject__Renderer::crea if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createFramebufferObject"); + static PyObject* name = PyUnicode_FromString("createFramebufferObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QOpenGLFramebufferObject*" , "const QSize&"}; @@ -1061,7 +1061,7 @@ void PythonQtShell_QQuickFramebufferObject__Renderer::render() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("render"); + static PyObject* name = PyUnicode_FromString("render"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1083,7 +1083,7 @@ void PythonQtShell_QQuickFramebufferObject__Renderer::synchronize(QQuickFramebuf if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("synchronize"); + static PyObject* name = PyUnicode_FromString("synchronize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QQuickFramebufferObject*"}; @@ -1157,7 +1157,7 @@ QRectF PythonQtShell_QQuickItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1190,7 +1190,7 @@ bool PythonQtShell_QQuickItem::childMouseEventFilter(QQuickItem* arg__1, QEven if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -1223,7 +1223,7 @@ void PythonQtShell_QQuickItem::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1245,7 +1245,7 @@ QRectF PythonQtShell_QQuickItem::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -1278,7 +1278,7 @@ void PythonQtShell_QQuickItem::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1300,7 +1300,7 @@ bool PythonQtShell_QQuickItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -1333,7 +1333,7 @@ void PythonQtShell_QQuickItem::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1355,7 +1355,7 @@ void PythonQtShell_QQuickItem::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1377,7 +1377,7 @@ void PythonQtShell_QQuickItem::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1399,7 +1399,7 @@ void PythonQtShell_QQuickItem::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1421,7 +1421,7 @@ bool PythonQtShell_QQuickItem::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1454,7 +1454,7 @@ void PythonQtShell_QQuickItem::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1476,7 +1476,7 @@ void PythonQtShell_QQuickItem::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1498,7 +1498,7 @@ void PythonQtShell_QQuickItem::geometryChanged(const QRectF& newGeometry0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -1520,7 +1520,7 @@ void PythonQtShell_QQuickItem::hoverEnterEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1542,7 +1542,7 @@ void PythonQtShell_QQuickItem::hoverLeaveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1564,7 +1564,7 @@ void PythonQtShell_QQuickItem::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -1586,7 +1586,7 @@ void PythonQtShell_QQuickItem::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1608,7 +1608,7 @@ QVariant PythonQtShell_QQuickItem::inputMethodQuery(Qt::InputMethodQuery query if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1641,7 +1641,7 @@ bool PythonQtShell_QQuickItem::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1674,7 +1674,7 @@ void PythonQtShell_QQuickItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1696,7 +1696,7 @@ void PythonQtShell_QQuickItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1718,7 +1718,7 @@ void PythonQtShell_QQuickItem::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1740,7 +1740,7 @@ void PythonQtShell_QQuickItem::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1762,7 +1762,7 @@ void PythonQtShell_QQuickItem::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1784,7 +1784,7 @@ void PythonQtShell_QQuickItem::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1806,7 +1806,7 @@ void PythonQtShell_QQuickItem::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1828,7 +1828,7 @@ void PythonQtShell_QQuickItem::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1850,7 +1850,7 @@ QSGTextureProvider* PythonQtShell_QQuickItem::textureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -1883,7 +1883,7 @@ void PythonQtShell_QQuickItem::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -1905,7 +1905,7 @@ void PythonQtShell_QQuickItem::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1927,7 +1927,7 @@ QSGNode* PythonQtShell_QQuickItem::updatePaintNode(QSGNode* arg__1, QQuickItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -1960,7 +1960,7 @@ void PythonQtShell_QQuickItem::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1982,7 +1982,7 @@ void PythonQtShell_QQuickItem::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -2004,7 +2004,7 @@ void PythonQtShell_QQuickItem::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2740,7 +2740,7 @@ QRectF PythonQtShell_QQuickPaintedItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2773,7 +2773,7 @@ bool PythonQtShell_QQuickPaintedItem::childMouseEventFilter(QQuickItem* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childMouseEventFilter"); + static PyObject* name = PyUnicode_FromString("childMouseEventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QQuickItem*" , "QEvent*"}; @@ -2806,7 +2806,7 @@ void PythonQtShell_QQuickPaintedItem::classBegin() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("classBegin"); + static PyObject* name = PyUnicode_FromString("classBegin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2828,7 +2828,7 @@ QRectF PythonQtShell_QQuickPaintedItem::clipRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clipRect"); + static PyObject* name = PyUnicode_FromString("clipRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -2861,7 +2861,7 @@ void PythonQtShell_QQuickPaintedItem::componentComplete() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("componentComplete"); + static PyObject* name = PyUnicode_FromString("componentComplete"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2883,7 +2883,7 @@ bool PythonQtShell_QQuickPaintedItem::contains(const QPointF& point0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contains"); + static PyObject* name = PyUnicode_FromString("contains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QPointF&"}; @@ -2916,7 +2916,7 @@ void PythonQtShell_QQuickPaintedItem::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2938,7 +2938,7 @@ void PythonQtShell_QQuickPaintedItem::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2960,7 +2960,7 @@ void PythonQtShell_QQuickPaintedItem::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2982,7 +2982,7 @@ void PythonQtShell_QQuickPaintedItem::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -3004,7 +3004,7 @@ bool PythonQtShell_QQuickPaintedItem::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3037,7 +3037,7 @@ void PythonQtShell_QQuickPaintedItem::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3059,7 +3059,7 @@ void PythonQtShell_QQuickPaintedItem::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3081,7 +3081,7 @@ void PythonQtShell_QQuickPaintedItem::geometryChanged(const QRectF& newGeometry if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("geometryChanged"); + static PyObject* name = PyUnicode_FromString("geometryChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&" , "const QRectF&"}; @@ -3103,7 +3103,7 @@ void PythonQtShell_QQuickPaintedItem::hoverEnterEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverEnterEvent"); + static PyObject* name = PyUnicode_FromString("hoverEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3125,7 +3125,7 @@ void PythonQtShell_QQuickPaintedItem::hoverLeaveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3147,7 +3147,7 @@ void PythonQtShell_QQuickPaintedItem::hoverMoveEvent(QHoverEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHoverEvent*"}; @@ -3169,7 +3169,7 @@ void PythonQtShell_QQuickPaintedItem::inputMethodEvent(QInputMethodEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3191,7 +3191,7 @@ QVariant PythonQtShell_QQuickPaintedItem::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3224,7 +3224,7 @@ bool PythonQtShell_QQuickPaintedItem::isTextureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isTextureProvider"); + static PyObject* name = PyUnicode_FromString("isTextureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3257,7 +3257,7 @@ void PythonQtShell_QQuickPaintedItem::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3279,7 +3279,7 @@ void PythonQtShell_QQuickPaintedItem::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3301,7 +3301,7 @@ void PythonQtShell_QQuickPaintedItem::mouseDoubleClickEvent(QMouseEvent* event0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3323,7 +3323,7 @@ void PythonQtShell_QQuickPaintedItem::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3345,7 +3345,7 @@ void PythonQtShell_QQuickPaintedItem::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3367,7 +3367,7 @@ void PythonQtShell_QQuickPaintedItem::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3389,7 +3389,7 @@ void PythonQtShell_QQuickPaintedItem::mouseUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseUngrabEvent"); + static PyObject* name = PyUnicode_FromString("mouseUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3411,7 +3411,7 @@ void PythonQtShell_QQuickPaintedItem::paint(QPainter* painter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3433,7 +3433,7 @@ void PythonQtShell_QQuickPaintedItem::releaseResources() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("releaseResources"); + static PyObject* name = PyUnicode_FromString("releaseResources"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3455,7 +3455,7 @@ QSGTextureProvider* PythonQtShell_QQuickPaintedItem::textureProvider() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureProvider"); + static PyObject* name = PyUnicode_FromString("textureProvider"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTextureProvider*"}; @@ -3488,7 +3488,7 @@ void PythonQtShell_QQuickPaintedItem::touchEvent(QTouchEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -3510,7 +3510,7 @@ void PythonQtShell_QQuickPaintedItem::touchUngrabEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchUngrabEvent"); + static PyObject* name = PyUnicode_FromString("touchUngrabEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3532,7 +3532,7 @@ QSGNode* PythonQtShell_QQuickPaintedItem::updatePaintNode(QSGNode* arg__1, QQu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePaintNode"); + static PyObject* name = PyUnicode_FromString("updatePaintNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGNode*" , "QSGNode*" , "QQuickItem::UpdatePaintNodeData*"}; @@ -3565,7 +3565,7 @@ void PythonQtShell_QQuickPaintedItem::updatePolish() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updatePolish"); + static PyObject* name = PyUnicode_FromString("updatePolish"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3587,7 +3587,7 @@ void PythonQtShell_QQuickPaintedItem::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3609,7 +3609,7 @@ void PythonQtShell_QQuickPaintedItem::windowDeactivateEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowDeactivateEvent"); + static PyObject* name = PyUnicode_FromString("windowDeactivateEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3759,7 +3759,7 @@ void PythonQtShell_QQuickRenderControl::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3781,7 +3781,7 @@ void PythonQtShell_QQuickRenderControl::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3803,7 +3803,7 @@ bool PythonQtShell_QQuickRenderControl::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3836,7 +3836,7 @@ bool PythonQtShell_QQuickRenderControl::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3869,7 +3869,7 @@ QWindow* PythonQtShell_QQuickRenderControl::renderWindow(QPoint* offset0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("renderWindow"); + static PyObject* name = PyUnicode_FromString("renderWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWindow*" , "QPoint*"}; @@ -3902,7 +3902,7 @@ void PythonQtShell_QQuickRenderControl::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3992,7 +3992,7 @@ void PythonQtShell_QQuickTextDocument::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4014,7 +4014,7 @@ void PythonQtShell_QQuickTextDocument::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4036,7 +4036,7 @@ bool PythonQtShell_QQuickTextDocument::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4069,7 +4069,7 @@ bool PythonQtShell_QQuickTextDocument::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4102,7 +4102,7 @@ void PythonQtShell_QQuickTextDocument::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4152,7 +4152,7 @@ void PythonQtShell_QQuickTransform::applyTo(QMatrix4x4* matrix0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("applyTo"); + static PyObject* name = PyUnicode_FromString("applyTo"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMatrix4x4*"}; @@ -4174,7 +4174,7 @@ void PythonQtShell_QQuickTransform::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4196,7 +4196,7 @@ void PythonQtShell_QQuickTransform::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4218,7 +4218,7 @@ bool PythonQtShell_QQuickTransform::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4251,7 +4251,7 @@ bool PythonQtShell_QQuickTransform::eventFilter(QObject* watched0, QEvent* ev if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4284,7 +4284,7 @@ void PythonQtShell_QQuickTransform::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4344,7 +4344,7 @@ void PythonQtShell_QQuickView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4366,7 +4366,7 @@ void PythonQtShell_QQuickView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4388,7 +4388,7 @@ bool PythonQtShell_QQuickView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4421,7 +4421,7 @@ bool PythonQtShell_QQuickView::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4454,7 +4454,7 @@ void PythonQtShell_QQuickView::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -4476,7 +4476,7 @@ void PythonQtShell_QQuickView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4498,7 +4498,7 @@ QObject* PythonQtShell_QQuickView::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -4531,7 +4531,7 @@ void PythonQtShell_QQuickView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -4553,7 +4553,7 @@ QSurfaceFormat PythonQtShell_QQuickView::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -4586,7 +4586,7 @@ void PythonQtShell_QQuickView::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -4608,7 +4608,7 @@ void PythonQtShell_QQuickView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4630,7 +4630,7 @@ void PythonQtShell_QQuickView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -4652,7 +4652,7 @@ void PythonQtShell_QQuickView::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4674,7 +4674,7 @@ void PythonQtShell_QQuickView::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4696,7 +4696,7 @@ void PythonQtShell_QQuickView::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4718,7 +4718,7 @@ void PythonQtShell_QQuickView::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -4740,7 +4740,7 @@ void PythonQtShell_QQuickView::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -4762,7 +4762,7 @@ bool PythonQtShell_QQuickView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -4795,7 +4795,7 @@ void PythonQtShell_QQuickView::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -4817,7 +4817,7 @@ void PythonQtShell_QQuickView::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -4839,7 +4839,7 @@ QSize PythonQtShell_QQuickView::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -4872,7 +4872,7 @@ QSurface::SurfaceType PythonQtShell_QQuickView::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -4905,7 +4905,7 @@ void PythonQtShell_QQuickView::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -4927,7 +4927,7 @@ void PythonQtShell_QQuickView::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4949,7 +4949,7 @@ void PythonQtShell_QQuickView::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -4971,7 +4971,7 @@ void PythonQtShell_QQuickView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -5074,7 +5074,7 @@ void PythonQtShell_QQuickWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5096,7 +5096,7 @@ void PythonQtShell_QQuickWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5118,7 +5118,7 @@ void PythonQtShell_QQuickWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5140,7 +5140,7 @@ void PythonQtShell_QQuickWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5162,7 +5162,7 @@ void PythonQtShell_QQuickWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5184,7 +5184,7 @@ void PythonQtShell_QQuickWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5206,7 +5206,7 @@ int PythonQtShell_QQuickWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5239,7 +5239,7 @@ void PythonQtShell_QQuickWidget::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5261,7 +5261,7 @@ void PythonQtShell_QQuickWidget::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5283,7 +5283,7 @@ void PythonQtShell_QQuickWidget::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5305,7 +5305,7 @@ void PythonQtShell_QQuickWidget::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5327,7 +5327,7 @@ void PythonQtShell_QQuickWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5349,7 +5349,7 @@ bool PythonQtShell_QQuickWidget::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5382,7 +5382,7 @@ bool PythonQtShell_QQuickWidget::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5415,7 +5415,7 @@ void PythonQtShell_QQuickWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5437,7 +5437,7 @@ bool PythonQtShell_QQuickWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5470,7 +5470,7 @@ void PythonQtShell_QQuickWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5492,7 +5492,7 @@ bool PythonQtShell_QQuickWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5525,7 +5525,7 @@ int PythonQtShell_QQuickWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5558,7 +5558,7 @@ void PythonQtShell_QQuickWidget::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5580,7 +5580,7 @@ void PythonQtShell_QQuickWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5602,7 +5602,7 @@ void PythonQtShell_QQuickWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -5624,7 +5624,7 @@ QVariant PythonQtShell_QQuickWidget::inputMethodQuery(Qt::InputMethodQuery arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -5657,7 +5657,7 @@ void PythonQtShell_QQuickWidget::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5679,7 +5679,7 @@ void PythonQtShell_QQuickWidget::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -5701,7 +5701,7 @@ void PythonQtShell_QQuickWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5723,7 +5723,7 @@ int PythonQtShell_QQuickWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -5756,7 +5756,7 @@ QSize PythonQtShell_QQuickWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -5789,7 +5789,7 @@ void PythonQtShell_QQuickWidget::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5811,7 +5811,7 @@ void PythonQtShell_QQuickWidget::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5833,7 +5833,7 @@ void PythonQtShell_QQuickWidget::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5855,7 +5855,7 @@ void PythonQtShell_QQuickWidget::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -5877,7 +5877,7 @@ void PythonQtShell_QQuickWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -5899,7 +5899,7 @@ bool PythonQtShell_QQuickWidget::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -5932,7 +5932,7 @@ QPaintEngine* PythonQtShell_QQuickWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -5965,7 +5965,7 @@ void PythonQtShell_QQuickWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -5987,7 +5987,7 @@ QPaintDevice* PythonQtShell_QQuickWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6020,7 +6020,7 @@ void PythonQtShell_QQuickWidget::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6042,7 +6042,7 @@ void PythonQtShell_QQuickWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6064,7 +6064,7 @@ QPainter* PythonQtShell_QQuickWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6097,7 +6097,7 @@ void PythonQtShell_QQuickWidget::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6119,7 +6119,7 @@ void PythonQtShell_QQuickWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6141,7 +6141,7 @@ void PythonQtShell_QQuickWidget::timerEvent(QTimerEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6163,7 +6163,7 @@ void PythonQtShell_QQuickWidget::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -6291,7 +6291,7 @@ void PythonQtShell_QQuickWindow::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6313,7 +6313,7 @@ void PythonQtShell_QQuickWindow::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6335,7 +6335,7 @@ bool PythonQtShell_QQuickWindow::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6368,7 +6368,7 @@ bool PythonQtShell_QQuickWindow::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6401,7 +6401,7 @@ void PythonQtShell_QQuickWindow::exposeEvent(QExposeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exposeEvent"); + static PyObject* name = PyUnicode_FromString("exposeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QExposeEvent*"}; @@ -6423,7 +6423,7 @@ void PythonQtShell_QQuickWindow::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6445,7 +6445,7 @@ QObject* PythonQtShell_QQuickWindow::focusObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusObject"); + static PyObject* name = PyUnicode_FromString("focusObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*"}; @@ -6478,7 +6478,7 @@ void PythonQtShell_QQuickWindow::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -6500,7 +6500,7 @@ QSurfaceFormat PythonQtShell_QQuickWindow::format() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("format"); + static PyObject* name = PyUnicode_FromString("format"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurfaceFormat"}; @@ -6533,7 +6533,7 @@ void PythonQtShell_QQuickWindow::hideEvent(QHideEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -6555,7 +6555,7 @@ void PythonQtShell_QQuickWindow::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6577,7 +6577,7 @@ void PythonQtShell_QQuickWindow::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6599,7 +6599,7 @@ void PythonQtShell_QQuickWindow::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6621,7 +6621,7 @@ void PythonQtShell_QQuickWindow::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6643,7 +6643,7 @@ void PythonQtShell_QQuickWindow::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6665,7 +6665,7 @@ void PythonQtShell_QQuickWindow::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6687,7 +6687,7 @@ void PythonQtShell_QQuickWindow::moveEvent(QMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6709,7 +6709,7 @@ bool PythonQtShell_QQuickWindow::nativeEvent(const QByteArray& eventType0, voi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6742,7 +6742,7 @@ void PythonQtShell_QQuickWindow::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6764,7 +6764,7 @@ void PythonQtShell_QQuickWindow::showEvent(QShowEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6786,7 +6786,7 @@ QSize PythonQtShell_QQuickWindow::size() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6819,7 +6819,7 @@ QSurface::SurfaceType PythonQtShell_QQuickWindow::surfaceType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("surfaceType"); + static PyObject* name = PyUnicode_FromString("surfaceType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSurface::SurfaceType"}; @@ -6852,7 +6852,7 @@ void PythonQtShell_QQuickWindow::tabletEvent(QTabletEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6874,7 +6874,7 @@ void PythonQtShell_QQuickWindow::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6896,7 +6896,7 @@ void PythonQtShell_QQuickWindow::touchEvent(QTouchEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("touchEvent"); + static PyObject* name = PyUnicode_FromString("touchEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTouchEvent*"}; @@ -6918,7 +6918,7 @@ void PythonQtShell_QQuickWindow::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -7102,7 +7102,7 @@ void PythonQtShell_QSGAbstractRenderer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7124,7 +7124,7 @@ void PythonQtShell_QSGAbstractRenderer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7146,7 +7146,7 @@ bool PythonQtShell_QSGAbstractRenderer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7179,7 +7179,7 @@ bool PythonQtShell_QSGAbstractRenderer::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7212,7 +7212,7 @@ void PythonQtShell_QSGAbstractRenderer::nodeChanged(QSGNode* node0, QSGNode::Di if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodeChanged"); + static PyObject* name = PyUnicode_FromString("nodeChanged"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*" , "QSGNode::DirtyState"}; @@ -7234,7 +7234,7 @@ void PythonQtShell_QSGAbstractRenderer::renderScene(GLuint fboId0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("renderScene"); + static PyObject* name = PyUnicode_FromString("renderScene"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "GLuint"}; @@ -7256,7 +7256,7 @@ void PythonQtShell_QSGAbstractRenderer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7376,7 +7376,7 @@ bool PythonQtShell_QSGBasicGeometryNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7409,7 +7409,7 @@ void PythonQtShell_QSGBasicGeometryNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7466,7 +7466,7 @@ bool PythonQtShell_QSGClipNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7499,7 +7499,7 @@ void PythonQtShell_QSGClipNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7551,7 +7551,7 @@ void PythonQtShell_QSGDynamicTexture::bind() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7573,7 +7573,7 @@ void PythonQtShell_QSGDynamicTexture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -7595,7 +7595,7 @@ void PythonQtShell_QSGDynamicTexture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -7617,7 +7617,7 @@ bool PythonQtShell_QSGDynamicTexture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -7650,7 +7650,7 @@ bool PythonQtShell_QSGDynamicTexture::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -7683,7 +7683,7 @@ bool PythonQtShell_QSGDynamicTexture::hasAlphaChannel() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasAlphaChannel"); + static PyObject* name = PyUnicode_FromString("hasAlphaChannel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7716,7 +7716,7 @@ bool PythonQtShell_QSGDynamicTexture::hasMipmaps() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasMipmaps"); + static PyObject* name = PyUnicode_FromString("hasMipmaps"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7749,7 +7749,7 @@ bool PythonQtShell_QSGDynamicTexture::isAtlasTexture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAtlasTexture"); + static PyObject* name = PyUnicode_FromString("isAtlasTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7782,7 +7782,7 @@ QRectF PythonQtShell_QSGDynamicTexture::normalizedTextureSubRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("normalizedTextureSubRect"); + static PyObject* name = PyUnicode_FromString("normalizedTextureSubRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -7815,7 +7815,7 @@ QSGTexture* PythonQtShell_QSGDynamicTexture::removedFromAtlas() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removedFromAtlas"); + static PyObject* name = PyUnicode_FromString("removedFromAtlas"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -7848,7 +7848,7 @@ int PythonQtShell_QSGDynamicTexture::textureId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureId"); + static PyObject* name = PyUnicode_FromString("textureId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -7881,7 +7881,7 @@ QSize PythonQtShell_QSGDynamicTexture::textureSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureSize"); + static PyObject* name = PyUnicode_FromString("textureSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -7914,7 +7914,7 @@ void PythonQtShell_QSGDynamicTexture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7936,7 +7936,7 @@ bool PythonQtShell_QSGDynamicTexture::updateTexture() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateTexture"); + static PyObject* name = PyUnicode_FromString("updateTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7997,7 +7997,7 @@ void PythonQtShell_QSGEngine::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -8019,7 +8019,7 @@ void PythonQtShell_QSGEngine::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -8041,7 +8041,7 @@ bool PythonQtShell_QSGEngine::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -8074,7 +8074,7 @@ bool PythonQtShell_QSGEngine::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -8107,7 +8107,7 @@ void PythonQtShell_QSGEngine::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -8167,7 +8167,7 @@ QSGMaterialType* PythonQtShell_QSGFlatColorMaterial::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGMaterialType*"}; @@ -8420,7 +8420,7 @@ bool PythonQtShell_QSGGeometryNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8453,7 +8453,7 @@ void PythonQtShell_QSGGeometryNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8592,7 +8592,7 @@ bool PythonQtShell_QSGNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -8625,7 +8625,7 @@ void PythonQtShell_QSGNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -8773,7 +8773,7 @@ void PythonQtShell_QSGNodeVisitor::enterClipNode(QSGClipNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterClipNode"); + static PyObject* name = PyUnicode_FromString("enterClipNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGClipNode*"}; @@ -8795,7 +8795,7 @@ void PythonQtShell_QSGNodeVisitor::enterGeometryNode(QSGGeometryNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterGeometryNode"); + static PyObject* name = PyUnicode_FromString("enterGeometryNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGGeometryNode*"}; @@ -8817,7 +8817,7 @@ void PythonQtShell_QSGNodeVisitor::enterOpacityNode(QSGOpacityNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterOpacityNode"); + static PyObject* name = PyUnicode_FromString("enterOpacityNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGOpacityNode*"}; @@ -8839,7 +8839,7 @@ void PythonQtShell_QSGNodeVisitor::enterTransformNode(QSGTransformNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterTransformNode"); + static PyObject* name = PyUnicode_FromString("enterTransformNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTransformNode*"}; @@ -8861,7 +8861,7 @@ void PythonQtShell_QSGNodeVisitor::leaveClipNode(QSGClipNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveClipNode"); + static PyObject* name = PyUnicode_FromString("leaveClipNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGClipNode*"}; @@ -8883,7 +8883,7 @@ void PythonQtShell_QSGNodeVisitor::leaveGeometryNode(QSGGeometryNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveGeometryNode"); + static PyObject* name = PyUnicode_FromString("leaveGeometryNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGGeometryNode*"}; @@ -8905,7 +8905,7 @@ void PythonQtShell_QSGNodeVisitor::leaveOpacityNode(QSGOpacityNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveOpacityNode"); + static PyObject* name = PyUnicode_FromString("leaveOpacityNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGOpacityNode*"}; @@ -8927,7 +8927,7 @@ void PythonQtShell_QSGNodeVisitor::leaveTransformNode(QSGTransformNode* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveTransformNode"); + static PyObject* name = PyUnicode_FromString("leaveTransformNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGTransformNode*"}; @@ -8949,7 +8949,7 @@ void PythonQtShell_QSGNodeVisitor::visitChildren(QSGNode* n0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visitChildren"); + static PyObject* name = PyUnicode_FromString("visitChildren"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*"}; @@ -8971,7 +8971,7 @@ void PythonQtShell_QSGNodeVisitor::visitNode(QSGNode* n0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("visitNode"); + static PyObject* name = PyUnicode_FromString("visitNode"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSGNode*"}; @@ -9053,7 +9053,7 @@ bool PythonQtShell_QSGOpacityNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -9086,7 +9086,7 @@ void PythonQtShell_QSGOpacityNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; diff --git a/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp b/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp index f67bfb529..8fbb121e9 100644 --- a/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp +++ b/generated_cpp_56/com_trolltech_qt_quick/com_trolltech_qt_quick1.cpp @@ -24,7 +24,7 @@ bool PythonQtShell_QSGRootNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -57,7 +57,7 @@ void PythonQtShell_QSGRootNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -96,7 +96,7 @@ void PythonQtShell_QSGTexture::bind() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bind"); + static PyObject* name = PyUnicode_FromString("bind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -118,7 +118,7 @@ void PythonQtShell_QSGTexture::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -140,7 +140,7 @@ void PythonQtShell_QSGTexture::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -162,7 +162,7 @@ bool PythonQtShell_QSGTexture::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -195,7 +195,7 @@ bool PythonQtShell_QSGTexture::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -228,7 +228,7 @@ bool PythonQtShell_QSGTexture::hasAlphaChannel() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasAlphaChannel"); + static PyObject* name = PyUnicode_FromString("hasAlphaChannel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -261,7 +261,7 @@ bool PythonQtShell_QSGTexture::hasMipmaps() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasMipmaps"); + static PyObject* name = PyUnicode_FromString("hasMipmaps"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -294,7 +294,7 @@ bool PythonQtShell_QSGTexture::isAtlasTexture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isAtlasTexture"); + static PyObject* name = PyUnicode_FromString("isAtlasTexture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -327,7 +327,7 @@ QRectF PythonQtShell_QSGTexture::normalizedTextureSubRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("normalizedTextureSubRect"); + static PyObject* name = PyUnicode_FromString("normalizedTextureSubRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -360,7 +360,7 @@ QSGTexture* PythonQtShell_QSGTexture::removedFromAtlas() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removedFromAtlas"); + static PyObject* name = PyUnicode_FromString("removedFromAtlas"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -393,7 +393,7 @@ int PythonQtShell_QSGTexture::textureId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureId"); + static PyObject* name = PyUnicode_FromString("textureId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -426,7 +426,7 @@ QSize PythonQtShell_QSGTexture::textureSize() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("textureSize"); + static PyObject* name = PyUnicode_FromString("textureSize"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -459,7 +459,7 @@ void PythonQtShell_QSGTexture::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -594,7 +594,7 @@ QSGMaterialType* PythonQtShell_QSGTextureMaterial::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGMaterialType*"}; @@ -642,7 +642,7 @@ void PythonQtShell_QSGTextureProvider::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -664,7 +664,7 @@ void PythonQtShell_QSGTextureProvider::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -686,7 +686,7 @@ bool PythonQtShell_QSGTextureProvider::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -719,7 +719,7 @@ bool PythonQtShell_QSGTextureProvider::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -752,7 +752,7 @@ QSGTexture* PythonQtShell_QSGTextureProvider::texture() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("texture"); + static PyObject* name = PyUnicode_FromString("texture"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSGTexture*"}; @@ -785,7 +785,7 @@ void PythonQtShell_QSGTextureProvider::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -835,7 +835,7 @@ bool PythonQtShell_QSGTransformNode::isSubtreeBlocked() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isSubtreeBlocked"); + static PyObject* name = PyUnicode_FromString("isSubtreeBlocked"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -868,7 +868,7 @@ void PythonQtShell_QSGTransformNode::preprocess() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("preprocess"); + static PyObject* name = PyUnicode_FromString("preprocess"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; diff --git a/generated_cpp_56/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp b/generated_cpp_56/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp index c7b4bf879..33834924e 100644 --- a/generated_cpp_56/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp +++ b/generated_cpp_56/com_trolltech_qt_sql/com_trolltech_qt_sql0.cpp @@ -278,7 +278,7 @@ bool PythonQtShell_QSqlDriver::beginTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("beginTransaction"); + static PyObject* name = PyUnicode_FromString("beginTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -311,7 +311,7 @@ bool PythonQtShell_QSqlDriver::cancelQuery() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("cancelQuery"); + static PyObject* name = PyUnicode_FromString("cancelQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -344,7 +344,7 @@ void PythonQtShell_QSqlDriver::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -366,7 +366,7 @@ void PythonQtShell_QSqlDriver::close() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("close"); + static PyObject* name = PyUnicode_FromString("close"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -388,7 +388,7 @@ bool PythonQtShell_QSqlDriver::commitTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("commitTransaction"); + static PyObject* name = PyUnicode_FromString("commitTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -421,7 +421,7 @@ QSqlResult* PythonQtShell_QSqlDriver::createResult() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createResult"); + static PyObject* name = PyUnicode_FromString("createResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlResult*"}; @@ -454,7 +454,7 @@ void PythonQtShell_QSqlDriver::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -476,7 +476,7 @@ QString PythonQtShell_QSqlDriver::escapeIdentifier(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("escapeIdentifier"); + static PyObject* name = PyUnicode_FromString("escapeIdentifier"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -509,7 +509,7 @@ bool PythonQtShell_QSqlDriver::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -542,7 +542,7 @@ bool PythonQtShell_QSqlDriver::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -575,7 +575,7 @@ QString PythonQtShell_QSqlDriver::formatValue(const QSqlField& field0, bool t if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("formatValue"); + static PyObject* name = PyUnicode_FromString("formatValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QSqlField&" , "bool"}; @@ -608,7 +608,7 @@ QVariant PythonQtShell_QSqlDriver::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -641,7 +641,7 @@ bool PythonQtShell_QSqlDriver::hasFeature(QSqlDriver::DriverFeature f0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QSqlDriver::DriverFeature"}; @@ -674,7 +674,7 @@ bool PythonQtShell_QSqlDriver::isIdentifierEscaped(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isIdentifierEscaped"); + static PyObject* name = PyUnicode_FromString("isIdentifierEscaped"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -707,7 +707,7 @@ bool PythonQtShell_QSqlDriver::isOpen() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isOpen"); + static PyObject* name = PyUnicode_FromString("isOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -740,7 +740,7 @@ bool PythonQtShell_QSqlDriver::open(const QString& db0, const QString& user1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("open"); + static PyObject* name = PyUnicode_FromString("open"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "int" , "const QString&"}; @@ -773,7 +773,7 @@ QSqlIndex PythonQtShell_QSqlDriver::primaryIndex(const QString& tableName0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("primaryIndex"); + static PyObject* name = PyUnicode_FromString("primaryIndex"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlIndex" , "const QString&"}; @@ -806,7 +806,7 @@ QSqlRecord PythonQtShell_QSqlDriver::record(const QString& tableName0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord" , "const QString&"}; @@ -839,7 +839,7 @@ bool PythonQtShell_QSqlDriver::rollbackTransaction() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rollbackTransaction"); + static PyObject* name = PyUnicode_FromString("rollbackTransaction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -872,7 +872,7 @@ void PythonQtShell_QSqlDriver::setLastError(const QSqlError& e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -894,7 +894,7 @@ void PythonQtShell_QSqlDriver::setOpen(bool o0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOpen"); + static PyObject* name = PyUnicode_FromString("setOpen"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -916,7 +916,7 @@ void PythonQtShell_QSqlDriver::setOpenError(bool e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setOpenError"); + static PyObject* name = PyUnicode_FromString("setOpenError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -938,7 +938,7 @@ QString PythonQtShell_QSqlDriver::sqlStatement(QSqlDriver::StatementType type0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sqlStatement"); + static PyObject* name = PyUnicode_FromString("sqlStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QSqlDriver::StatementType" , "const QString&" , "const QSqlRecord&" , "bool"}; @@ -971,7 +971,7 @@ QString PythonQtShell_QSqlDriver::stripDelimiters(const QString& identifier0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stripDelimiters"); + static PyObject* name = PyUnicode_FromString("stripDelimiters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QString&" , "QSqlDriver::IdentifierType"}; @@ -1004,7 +1004,7 @@ bool PythonQtShell_QSqlDriver::subscribeToNotification(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subscribeToNotification"); + static PyObject* name = PyUnicode_FromString("subscribeToNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1037,7 +1037,7 @@ QStringList PythonQtShell_QSqlDriver::subscribedToNotifications() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("subscribedToNotifications"); + static PyObject* name = PyUnicode_FromString("subscribedToNotifications"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -1070,7 +1070,7 @@ QStringList PythonQtShell_QSqlDriver::tables(QSql::TableType tableType0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tables"); + static PyObject* name = PyUnicode_FromString("tables"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList" , "QSql::TableType"}; @@ -1103,7 +1103,7 @@ void PythonQtShell_QSqlDriver::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1125,7 +1125,7 @@ bool PythonQtShell_QSqlDriver::unsubscribeFromNotification(const QString& name if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unsubscribeFromNotification"); + static PyObject* name = PyUnicode_FromString("unsubscribeFromNotification"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1321,7 +1321,7 @@ QSqlDriver* PythonQtShell_QSqlDriverCreatorBase::createObject() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createObject"); + static PyObject* name = PyUnicode_FromString("createObject"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlDriver*"}; @@ -1875,7 +1875,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::buddy(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -1908,7 +1908,7 @@ bool PythonQtShell_QSqlQueryModel::canDropMimeData(const QMimeData* data0, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -1941,7 +1941,7 @@ bool PythonQtShell_QSqlQueryModel::canFetchMore(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -1974,7 +1974,7 @@ void PythonQtShell_QSqlQueryModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -1996,7 +1996,7 @@ void PythonQtShell_QSqlQueryModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2018,7 +2018,7 @@ int PythonQtShell_QSqlQueryModel::columnCount(const QModelIndex& parent0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2051,7 +2051,7 @@ void PythonQtShell_QSqlQueryModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2073,7 +2073,7 @@ QVariant PythonQtShell_QSqlQueryModel::data(const QModelIndex& item0, int rol if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -2106,7 +2106,7 @@ bool PythonQtShell_QSqlQueryModel::dropMimeData(const QMimeData* data0, Qt::Dr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -2139,7 +2139,7 @@ bool PythonQtShell_QSqlQueryModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2172,7 +2172,7 @@ bool PythonQtShell_QSqlQueryModel::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2205,7 +2205,7 @@ void PythonQtShell_QSqlQueryModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -2227,7 +2227,7 @@ Qt::ItemFlags PythonQtShell_QSqlQueryModel::flags(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -2260,7 +2260,7 @@ QVariant PythonQtShell_QSqlQueryModel::headerData(int section0, Qt::Orientatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -2293,7 +2293,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::index(int row0, int column1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2326,7 +2326,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::indexInQuery(const QModelIndex& item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -2359,7 +2359,7 @@ bool PythonQtShell_QSqlQueryModel::insertColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2392,7 +2392,7 @@ bool PythonQtShell_QSqlQueryModel::insertRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2425,7 +2425,7 @@ QMap PythonQtShell_QSqlQueryModel::itemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -2458,7 +2458,7 @@ QList PythonQtShell_QSqlQueryModel::match(const QModelIndex& sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -2491,7 +2491,7 @@ QMimeData* PythonQtShell_QSqlQueryModel::mimeData(const QList& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -2524,7 +2524,7 @@ QStringList PythonQtShell_QSqlQueryModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -2557,7 +2557,7 @@ bool PythonQtShell_QSqlQueryModel::moveColumns(const QModelIndex& sourceParent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2590,7 +2590,7 @@ bool PythonQtShell_QSqlQueryModel::moveRows(const QModelIndex& sourceParent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -2623,7 +2623,7 @@ void PythonQtShell_QSqlQueryModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2645,7 +2645,7 @@ bool PythonQtShell_QSqlQueryModel::removeColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2678,7 +2678,7 @@ bool PythonQtShell_QSqlQueryModel::removeRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -2711,7 +2711,7 @@ void PythonQtShell_QSqlQueryModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2733,7 +2733,7 @@ QHash PythonQtShell_QSqlQueryModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -2766,7 +2766,7 @@ int PythonQtShell_QSqlQueryModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -2799,7 +2799,7 @@ bool PythonQtShell_QSqlQueryModel::setData(const QModelIndex& index0, const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -2832,7 +2832,7 @@ bool PythonQtShell_QSqlQueryModel::setHeaderData(int section0, Qt::Orientation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -2865,7 +2865,7 @@ bool PythonQtShell_QSqlQueryModel::setItemData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -2898,7 +2898,7 @@ QModelIndex PythonQtShell_QSqlQueryModel::sibling(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -2931,7 +2931,7 @@ void PythonQtShell_QSqlQueryModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -2953,7 +2953,7 @@ QSize PythonQtShell_QSqlQueryModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -2986,7 +2986,7 @@ bool PythonQtShell_QSqlQueryModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3019,7 +3019,7 @@ Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3052,7 +3052,7 @@ Qt::DropActions PythonQtShell_QSqlQueryModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -3085,7 +3085,7 @@ void PythonQtShell_QSqlQueryModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3417,7 +3417,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::buddy(const QModelIndex& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3450,7 +3450,7 @@ bool PythonQtShell_QSqlRelationalTableModel::canDropMimeData(const QMimeData* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3483,7 +3483,7 @@ bool PythonQtShell_QSqlRelationalTableModel::canFetchMore(const QModelIndex& p if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -3516,7 +3516,7 @@ void PythonQtShell_QSqlRelationalTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3538,7 +3538,7 @@ void PythonQtShell_QSqlRelationalTableModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3560,7 +3560,7 @@ int PythonQtShell_QSqlRelationalTableModel::columnCount(const QModelIndex& par if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -3593,7 +3593,7 @@ void PythonQtShell_QSqlRelationalTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3615,7 +3615,7 @@ QVariant PythonQtShell_QSqlRelationalTableModel::data(const QModelIndex& item0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -3648,7 +3648,7 @@ bool PythonQtShell_QSqlRelationalTableModel::deleteRowFromTable(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -3681,7 +3681,7 @@ bool PythonQtShell_QSqlRelationalTableModel::dropMimeData(const QMimeData* dat if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -3714,7 +3714,7 @@ bool PythonQtShell_QSqlRelationalTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -3747,7 +3747,7 @@ bool PythonQtShell_QSqlRelationalTableModel::eventFilter(QObject* watched0, QE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3780,7 +3780,7 @@ void PythonQtShell_QSqlRelationalTableModel::fetchMore(const QModelIndex& paren if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -3802,7 +3802,7 @@ Qt::ItemFlags PythonQtShell_QSqlRelationalTableModel::flags(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -3835,7 +3835,7 @@ QVariant PythonQtShell_QSqlRelationalTableModel::headerData(int section0, Qt:: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -3868,7 +3868,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::index(int row0, int colum if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -3901,7 +3901,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::indexInQuery(const QModelIn if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -3934,7 +3934,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertColumns(int column0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -3967,7 +3967,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertRowIntoTable(const QSqlRecor if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -4000,7 +4000,7 @@ bool PythonQtShell_QSqlRelationalTableModel::insertRows(int row0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4033,7 +4033,7 @@ QMap PythonQtShell_QSqlRelationalTableModel::itemData(const QM if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -4066,7 +4066,7 @@ QList PythonQtShell_QSqlRelationalTableModel::match(const QModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -4099,7 +4099,7 @@ QMimeData* PythonQtShell_QSqlRelationalTableModel::mimeData(const QList 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -4132,7 +4132,7 @@ QStringList PythonQtShell_QSqlRelationalTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -4165,7 +4165,7 @@ bool PythonQtShell_QSqlRelationalTableModel::moveColumns(const QModelIndex& so if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4198,7 +4198,7 @@ bool PythonQtShell_QSqlRelationalTableModel::moveRows(const QModelIndex& sourc if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -4231,7 +4231,7 @@ QString PythonQtShell_QSqlRelationalTableModel::orderByClause() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4264,7 +4264,7 @@ void PythonQtShell_QSqlRelationalTableModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4286,7 +4286,7 @@ QSqlTableModel* PythonQtShell_QSqlRelationalTableModel::relationModel(int colu if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("relationModel"); + static PyObject* name = PyUnicode_FromString("relationModel"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlTableModel*" , "int"}; @@ -4319,7 +4319,7 @@ bool PythonQtShell_QSqlRelationalTableModel::removeColumns(int column0, int c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4352,7 +4352,7 @@ bool PythonQtShell_QSqlRelationalTableModel::removeRows(int row0, int count1, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -4385,7 +4385,7 @@ void PythonQtShell_QSqlRelationalTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4407,7 +4407,7 @@ void PythonQtShell_QSqlRelationalTableModel::revertRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -4429,7 +4429,7 @@ QHash PythonQtShell_QSqlRelationalTableModel::roleNames() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -4462,7 +4462,7 @@ int PythonQtShell_QSqlRelationalTableModel::rowCount(const QModelIndex& parent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -4495,7 +4495,7 @@ bool PythonQtShell_QSqlRelationalTableModel::select() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4528,7 +4528,7 @@ bool PythonQtShell_QSqlRelationalTableModel::selectRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -4561,7 +4561,7 @@ QString PythonQtShell_QSqlRelationalTableModel::selectStatement() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -4594,7 +4594,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setData(const QModelIndex& item0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -4627,7 +4627,7 @@ void PythonQtShell_QSqlRelationalTableModel::setEditStrategy(QSqlTableModel::Edi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -4649,7 +4649,7 @@ void PythonQtShell_QSqlRelationalTableModel::setFilter(const QString& filter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4671,7 +4671,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setHeaderData(int section0, Qt::O if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -4704,7 +4704,7 @@ bool PythonQtShell_QSqlRelationalTableModel::setItemData(const QModelIndex& in if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -4737,7 +4737,7 @@ void PythonQtShell_QSqlRelationalTableModel::setRelation(int column0, const QSq if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setRelation"); + static PyObject* name = PyUnicode_FromString("setRelation"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QSqlRelation&"}; @@ -4759,7 +4759,7 @@ void PythonQtShell_QSqlRelationalTableModel::setSort(int column0, Qt::SortOrder if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4781,7 +4781,7 @@ void PythonQtShell_QSqlRelationalTableModel::setTable(const QString& tableName0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -4803,7 +4803,7 @@ QModelIndex PythonQtShell_QSqlRelationalTableModel::sibling(int row0, int col if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -4836,7 +4836,7 @@ void PythonQtShell_QSqlRelationalTableModel::sort(int column0, Qt::SortOrder o if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -4858,7 +4858,7 @@ QSize PythonQtShell_QSqlRelationalTableModel::span(const QModelIndex& index0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -4891,7 +4891,7 @@ bool PythonQtShell_QSqlRelationalTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4924,7 +4924,7 @@ Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDragActions() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4957,7 +4957,7 @@ Qt::DropActions PythonQtShell_QSqlRelationalTableModel::supportedDropActions() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -4990,7 +4990,7 @@ void PythonQtShell_QSqlRelationalTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5012,7 +5012,7 @@ bool PythonQtShell_QSqlRelationalTableModel::updateRowInTable(int row0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; @@ -5088,7 +5088,7 @@ void PythonQtShell_QSqlResult::bindValue(const QString& placeholder0, const QVa if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "const QVariant&" , "QSql::ParamType"}; @@ -5110,7 +5110,7 @@ void PythonQtShell_QSqlResult::bindValue(int pos0, const QVariant& val1, QSql: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("bindValue"); + static PyObject* name = PyUnicode_FromString("bindValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "const QVariant&" , "QSql::ParamType"}; @@ -5132,7 +5132,7 @@ QVariant PythonQtShell_QSqlResult::data(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int"}; @@ -5165,7 +5165,7 @@ void PythonQtShell_QSqlResult::detachFromResultSet() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("detachFromResultSet"); + static PyObject* name = PyUnicode_FromString("detachFromResultSet"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -5187,7 +5187,7 @@ bool PythonQtShell_QSqlResult::exec() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("exec"); + static PyObject* name = PyUnicode_FromString("exec"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5220,7 +5220,7 @@ bool PythonQtShell_QSqlResult::execBatch(bool arrayBind0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("execBatch"); + static PyObject* name = PyUnicode_FromString("execBatch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5253,7 +5253,7 @@ bool PythonQtShell_QSqlResult::fetch(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetch"); + static PyObject* name = PyUnicode_FromString("fetch"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5286,7 +5286,7 @@ bool PythonQtShell_QSqlResult::fetchFirst() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchFirst"); + static PyObject* name = PyUnicode_FromString("fetchFirst"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5319,7 +5319,7 @@ bool PythonQtShell_QSqlResult::fetchLast() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchLast"); + static PyObject* name = PyUnicode_FromString("fetchLast"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5352,7 +5352,7 @@ bool PythonQtShell_QSqlResult::fetchNext() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchNext"); + static PyObject* name = PyUnicode_FromString("fetchNext"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5385,7 +5385,7 @@ bool PythonQtShell_QSqlResult::fetchPrevious() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchPrevious"); + static PyObject* name = PyUnicode_FromString("fetchPrevious"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5418,7 +5418,7 @@ QVariant PythonQtShell_QSqlResult::handle() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handle"); + static PyObject* name = PyUnicode_FromString("handle"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5451,7 +5451,7 @@ bool PythonQtShell_QSqlResult::isNull(int i0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isNull"); + static PyObject* name = PyUnicode_FromString("isNull"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -5484,7 +5484,7 @@ QVariant PythonQtShell_QSqlResult::lastInsertId() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lastInsertId"); + static PyObject* name = PyUnicode_FromString("lastInsertId"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant"}; @@ -5517,7 +5517,7 @@ bool PythonQtShell_QSqlResult::nextResult() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextResult"); + static PyObject* name = PyUnicode_FromString("nextResult"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5550,7 +5550,7 @@ int PythonQtShell_QSqlResult::numRowsAffected() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("numRowsAffected"); + static PyObject* name = PyUnicode_FromString("numRowsAffected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5583,7 +5583,7 @@ bool PythonQtShell_QSqlResult::prepare(const QString& query0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("prepare"); + static PyObject* name = PyUnicode_FromString("prepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5616,7 +5616,7 @@ QSqlRecord PythonQtShell_QSqlResult::record() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("record"); + static PyObject* name = PyUnicode_FromString("record"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSqlRecord"}; @@ -5649,7 +5649,7 @@ bool PythonQtShell_QSqlResult::reset(const QString& sqlquery0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5682,7 +5682,7 @@ bool PythonQtShell_QSqlResult::savePrepare(const QString& sqlquery0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("savePrepare"); + static PyObject* name = PyUnicode_FromString("savePrepare"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -5715,7 +5715,7 @@ void PythonQtShell_QSqlResult::setActive(bool a0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setActive"); + static PyObject* name = PyUnicode_FromString("setActive"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5737,7 +5737,7 @@ void PythonQtShell_QSqlResult::setAt(int at0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setAt"); + static PyObject* name = PyUnicode_FromString("setAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -5759,7 +5759,7 @@ void PythonQtShell_QSqlResult::setForwardOnly(bool forward0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setForwardOnly"); + static PyObject* name = PyUnicode_FromString("setForwardOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5781,7 +5781,7 @@ void PythonQtShell_QSqlResult::setLastError(const QSqlError& e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLastError"); + static PyObject* name = PyUnicode_FromString("setLastError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QSqlError&"}; @@ -5803,7 +5803,7 @@ void PythonQtShell_QSqlResult::setNumericalPrecisionPolicy(QSql::NumericalPrecis if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setNumericalPrecisionPolicy"); + static PyObject* name = PyUnicode_FromString("setNumericalPrecisionPolicy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSql::NumericalPrecisionPolicy"}; @@ -5825,7 +5825,7 @@ void PythonQtShell_QSqlResult::setQuery(const QString& query0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setQuery"); + static PyObject* name = PyUnicode_FromString("setQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -5847,7 +5847,7 @@ void PythonQtShell_QSqlResult::setSelect(bool s0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSelect"); + static PyObject* name = PyUnicode_FromString("setSelect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -5869,7 +5869,7 @@ int PythonQtShell_QSqlResult::size() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("size"); + static PyObject* name = PyUnicode_FromString("size"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -6162,7 +6162,7 @@ QModelIndex PythonQtShell_QSqlTableModel::buddy(const QModelIndex& index0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("buddy"); + static PyObject* name = PyUnicode_FromString("buddy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6195,7 +6195,7 @@ bool PythonQtShell_QSqlTableModel::canDropMimeData(const QMimeData* data0, Qt: if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canDropMimeData"); + static PyObject* name = PyUnicode_FromString("canDropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6228,7 +6228,7 @@ bool PythonQtShell_QSqlTableModel::canFetchMore(const QModelIndex& parent0) co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("canFetchMore"); + static PyObject* name = PyUnicode_FromString("canFetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&"}; @@ -6261,7 +6261,7 @@ void PythonQtShell_QSqlTableModel::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -6283,7 +6283,7 @@ void PythonQtShell_QSqlTableModel::clear() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("clear"); + static PyObject* name = PyUnicode_FromString("clear"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -6305,7 +6305,7 @@ int PythonQtShell_QSqlTableModel::columnCount(const QModelIndex& parent0) cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnCount"); + static PyObject* name = PyUnicode_FromString("columnCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -6338,7 +6338,7 @@ void PythonQtShell_QSqlTableModel::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6360,7 +6360,7 @@ QVariant PythonQtShell_QSqlTableModel::data(const QModelIndex& idx0, int role if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QModelIndex&" , "int"}; @@ -6393,7 +6393,7 @@ bool PythonQtShell_QSqlTableModel::deleteRowFromTable(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("deleteRowFromTable"); + static PyObject* name = PyUnicode_FromString("deleteRowFromTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -6426,7 +6426,7 @@ bool PythonQtShell_QSqlTableModel::dropMimeData(const QMimeData* data0, Qt::Dr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropMimeData"); + static PyObject* name = PyUnicode_FromString("dropMimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QMimeData*" , "Qt::DropAction" , "int" , "int" , "const QModelIndex&"}; @@ -6459,7 +6459,7 @@ bool PythonQtShell_QSqlTableModel::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -6492,7 +6492,7 @@ bool PythonQtShell_QSqlTableModel::eventFilter(QObject* watched0, QEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -6525,7 +6525,7 @@ void PythonQtShell_QSqlTableModel::fetchMore(const QModelIndex& parent0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchMore"); + static PyObject* name = PyUnicode_FromString("fetchMore"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QModelIndex&"}; @@ -6547,7 +6547,7 @@ Qt::ItemFlags PythonQtShell_QSqlTableModel::flags(const QModelIndex& index0) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("flags"); + static PyObject* name = PyUnicode_FromString("flags"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::ItemFlags" , "const QModelIndex&"}; @@ -6580,7 +6580,7 @@ QVariant PythonQtShell_QSqlTableModel::headerData(int section0, Qt::Orientatio if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("headerData"); + static PyObject* name = PyUnicode_FromString("headerData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "int" , "Qt::Orientation" , "int"}; @@ -6613,7 +6613,7 @@ QModelIndex PythonQtShell_QSqlTableModel::index(int row0, int column1, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("index"); + static PyObject* name = PyUnicode_FromString("index"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -6646,7 +6646,7 @@ QModelIndex PythonQtShell_QSqlTableModel::indexInQuery(const QModelIndex& item if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("indexInQuery"); + static PyObject* name = PyUnicode_FromString("indexInQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "const QModelIndex&"}; @@ -6679,7 +6679,7 @@ bool PythonQtShell_QSqlTableModel::insertColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertColumns"); + static PyObject* name = PyUnicode_FromString("insertColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6712,7 +6712,7 @@ bool PythonQtShell_QSqlTableModel::insertRowIntoTable(const QSqlRecord& values if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRowIntoTable"); + static PyObject* name = PyUnicode_FromString("insertRowIntoTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QSqlRecord&"}; @@ -6745,7 +6745,7 @@ bool PythonQtShell_QSqlTableModel::insertRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("insertRows"); + static PyObject* name = PyUnicode_FromString("insertRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -6778,7 +6778,7 @@ QMap PythonQtShell_QSqlTableModel::itemData(const QModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemData"); + static PyObject* name = PyUnicode_FromString("itemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMap" , "const QModelIndex&"}; @@ -6811,7 +6811,7 @@ QList PythonQtShell_QSqlTableModel::match(const QModelIndex& sta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("match"); + static PyObject* name = PyUnicode_FromString("match"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList" , "const QModelIndex&" , "int" , "const QVariant&" , "int" , "Qt::MatchFlags"}; @@ -6844,7 +6844,7 @@ QMimeData* PythonQtShell_QSqlTableModel::mimeData(const QList& i if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeData"); + static PyObject* name = PyUnicode_FromString("mimeData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QMimeData*" , "const QList&"}; @@ -6877,7 +6877,7 @@ QStringList PythonQtShell_QSqlTableModel::mimeTypes() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mimeTypes"); + static PyObject* name = PyUnicode_FromString("mimeTypes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QStringList"}; @@ -6910,7 +6910,7 @@ bool PythonQtShell_QSqlTableModel::moveColumns(const QModelIndex& sourceParent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveColumns"); + static PyObject* name = PyUnicode_FromString("moveColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6943,7 +6943,7 @@ bool PythonQtShell_QSqlTableModel::moveRows(const QModelIndex& sourceParent0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveRows"); + static PyObject* name = PyUnicode_FromString("moveRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "int" , "int" , "const QModelIndex&" , "int"}; @@ -6976,7 +6976,7 @@ QString PythonQtShell_QSqlTableModel::orderByClause() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("orderByClause"); + static PyObject* name = PyUnicode_FromString("orderByClause"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7009,7 +7009,7 @@ void PythonQtShell_QSqlTableModel::queryChange() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("queryChange"); + static PyObject* name = PyUnicode_FromString("queryChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7031,7 +7031,7 @@ bool PythonQtShell_QSqlTableModel::removeColumns(int column0, int count1, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeColumns"); + static PyObject* name = PyUnicode_FromString("removeColumns"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7064,7 +7064,7 @@ bool PythonQtShell_QSqlTableModel::removeRows(int row0, int count1, const QMo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("removeRows"); + static PyObject* name = PyUnicode_FromString("removeRows"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "int" , "const QModelIndex&"}; @@ -7097,7 +7097,7 @@ void PythonQtShell_QSqlTableModel::revert() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revert"); + static PyObject* name = PyUnicode_FromString("revert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -7119,7 +7119,7 @@ void PythonQtShell_QSqlTableModel::revertRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("revertRow"); + static PyObject* name = PyUnicode_FromString("revertRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int"}; @@ -7141,7 +7141,7 @@ QHash PythonQtShell_QSqlTableModel::roleNames() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("roleNames"); + static PyObject* name = PyUnicode_FromString("roleNames"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QHash"}; @@ -7174,7 +7174,7 @@ int PythonQtShell_QSqlTableModel::rowCount(const QModelIndex& parent0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("rowCount"); + static PyObject* name = PyUnicode_FromString("rowCount"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "const QModelIndex&"}; @@ -7207,7 +7207,7 @@ bool PythonQtShell_QSqlTableModel::select() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("select"); + static PyObject* name = PyUnicode_FromString("select"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7240,7 +7240,7 @@ bool PythonQtShell_QSqlTableModel::selectRow(int row0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectRow"); + static PyObject* name = PyUnicode_FromString("selectRow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int"}; @@ -7273,7 +7273,7 @@ QString PythonQtShell_QSqlTableModel::selectStatement() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("selectStatement"); + static PyObject* name = PyUnicode_FromString("selectStatement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -7306,7 +7306,7 @@ bool PythonQtShell_QSqlTableModel::setData(const QModelIndex& index0, const QV if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QVariant&" , "int"}; @@ -7339,7 +7339,7 @@ void PythonQtShell_QSqlTableModel::setEditStrategy(QSqlTableModel::EditStrategy if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEditStrategy"); + static PyObject* name = PyUnicode_FromString("setEditStrategy"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QSqlTableModel::EditStrategy"}; @@ -7361,7 +7361,7 @@ void PythonQtShell_QSqlTableModel::setFilter(const QString& filter0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFilter"); + static PyObject* name = PyUnicode_FromString("setFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7383,7 +7383,7 @@ bool PythonQtShell_QSqlTableModel::setHeaderData(int section0, Qt::Orientation if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setHeaderData"); + static PyObject* name = PyUnicode_FromString("setHeaderData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "Qt::Orientation" , "const QVariant&" , "int"}; @@ -7416,7 +7416,7 @@ bool PythonQtShell_QSqlTableModel::setItemData(const QModelIndex& index0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setItemData"); + static PyObject* name = PyUnicode_FromString("setItemData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QModelIndex&" , "const QMap&"}; @@ -7449,7 +7449,7 @@ void PythonQtShell_QSqlTableModel::setSort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setSort"); + static PyObject* name = PyUnicode_FromString("setSort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7471,7 +7471,7 @@ void PythonQtShell_QSqlTableModel::setTable(const QString& tableName0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setTable"); + static PyObject* name = PyUnicode_FromString("setTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -7493,7 +7493,7 @@ QModelIndex PythonQtShell_QSqlTableModel::sibling(int row0, int column1, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sibling"); + static PyObject* name = PyUnicode_FromString("sibling"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QModelIndex" , "int" , "int" , "const QModelIndex&"}; @@ -7526,7 +7526,7 @@ void PythonQtShell_QSqlTableModel::sort(int column0, Qt::SortOrder order1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sort"); + static PyObject* name = PyUnicode_FromString("sort"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "int" , "Qt::SortOrder"}; @@ -7548,7 +7548,7 @@ QSize PythonQtShell_QSqlTableModel::span(const QModelIndex& index0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("span"); + static PyObject* name = PyUnicode_FromString("span"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize" , "const QModelIndex&"}; @@ -7581,7 +7581,7 @@ bool PythonQtShell_QSqlTableModel::submit() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("submit"); + static PyObject* name = PyUnicode_FromString("submit"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -7614,7 +7614,7 @@ Qt::DropActions PythonQtShell_QSqlTableModel::supportedDragActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDragActions"); + static PyObject* name = PyUnicode_FromString("supportedDragActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7647,7 +7647,7 @@ Qt::DropActions PythonQtShell_QSqlTableModel::supportedDropActions() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportedDropActions"); + static PyObject* name = PyUnicode_FromString("supportedDropActions"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::DropActions"}; @@ -7680,7 +7680,7 @@ void PythonQtShell_QSqlTableModel::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -7702,7 +7702,7 @@ bool PythonQtShell_QSqlTableModel::updateRowInTable(int row0, const QSqlRecord if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateRowInTable"); + static PyObject* name = PyUnicode_FromString("updateRowInTable"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "int" , "const QSqlRecord&"}; diff --git a/generated_cpp_56/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp b/generated_cpp_56/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp index 592254370..b0731b547 100644 --- a/generated_cpp_56/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp +++ b/generated_cpp_56/com_trolltech_qt_svg/com_trolltech_qt_svg0.cpp @@ -60,7 +60,7 @@ QRectF PythonQtShell_QGraphicsSvgItem::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -93,7 +93,7 @@ void PythonQtShell_QGraphicsSvgItem::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -115,7 +115,7 @@ void PythonQtShell_QGraphicsSvgItem::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -137,7 +137,7 @@ bool PythonQtShell_QGraphicsSvgItem::event(QEvent* ev0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -170,7 +170,7 @@ bool PythonQtShell_QGraphicsSvgItem::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -203,7 +203,7 @@ void PythonQtShell_QGraphicsSvgItem::paint(QPainter* painter0, const QStyleOpti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -225,7 +225,7 @@ void PythonQtShell_QGraphicsSvgItem::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -247,7 +247,7 @@ int PythonQtShell_QGraphicsSvgItem::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -362,7 +362,7 @@ int PythonQtShell_QSvgGenerator::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -395,7 +395,7 @@ void PythonQtShell_QSvgGenerator::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -417,7 +417,7 @@ int PythonQtShell_QSvgGenerator::metric(QPaintDevice::PaintDeviceMetric metric if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -450,7 +450,7 @@ QPaintEngine* PythonQtShell_QSvgGenerator::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -483,7 +483,7 @@ QPaintDevice* PythonQtShell_QSvgGenerator::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -516,7 +516,7 @@ QPainter* PythonQtShell_QSvgGenerator::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -639,7 +639,7 @@ void PythonQtShell_QSvgRenderer::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -661,7 +661,7 @@ void PythonQtShell_QSvgRenderer::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -683,7 +683,7 @@ bool PythonQtShell_QSvgRenderer::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -716,7 +716,7 @@ bool PythonQtShell_QSvgRenderer::eventFilter(QObject* watched0, QEvent* event if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -749,7 +749,7 @@ void PythonQtShell_QSvgRenderer::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -881,7 +881,7 @@ void PythonQtShell_QSvgWidget::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -903,7 +903,7 @@ void PythonQtShell_QSvgWidget::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -925,7 +925,7 @@ void PythonQtShell_QSvgWidget::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -947,7 +947,7 @@ void PythonQtShell_QSvgWidget::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -969,7 +969,7 @@ void PythonQtShell_QSvgWidget::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -991,7 +991,7 @@ void PythonQtShell_QSvgWidget::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1013,7 +1013,7 @@ int PythonQtShell_QSvgWidget::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1046,7 +1046,7 @@ void PythonQtShell_QSvgWidget::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -1068,7 +1068,7 @@ void PythonQtShell_QSvgWidget::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -1090,7 +1090,7 @@ void PythonQtShell_QSvgWidget::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -1112,7 +1112,7 @@ void PythonQtShell_QSvgWidget::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -1134,7 +1134,7 @@ void PythonQtShell_QSvgWidget::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1156,7 +1156,7 @@ bool PythonQtShell_QSvgWidget::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1189,7 +1189,7 @@ bool PythonQtShell_QSvgWidget::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -1222,7 +1222,7 @@ void PythonQtShell_QSvgWidget::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1244,7 +1244,7 @@ bool PythonQtShell_QSvgWidget::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -1277,7 +1277,7 @@ void PythonQtShell_QSvgWidget::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -1299,7 +1299,7 @@ bool PythonQtShell_QSvgWidget::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1332,7 +1332,7 @@ int PythonQtShell_QSvgWidget::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -1365,7 +1365,7 @@ void PythonQtShell_QSvgWidget::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -1387,7 +1387,7 @@ void PythonQtShell_QSvgWidget::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -1409,7 +1409,7 @@ void PythonQtShell_QSvgWidget::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -1431,7 +1431,7 @@ QVariant PythonQtShell_QSvgWidget::inputMethodQuery(Qt::InputMethodQuery arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -1464,7 +1464,7 @@ void PythonQtShell_QSvgWidget::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1486,7 +1486,7 @@ void PythonQtShell_QSvgWidget::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -1508,7 +1508,7 @@ void PythonQtShell_QSvgWidget::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1530,7 +1530,7 @@ int PythonQtShell_QSvgWidget::metric(QPaintDevice::PaintDeviceMetric arg__1) c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -1563,7 +1563,7 @@ QSize PythonQtShell_QSvgWidget::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -1596,7 +1596,7 @@ void PythonQtShell_QSvgWidget::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1618,7 +1618,7 @@ void PythonQtShell_QSvgWidget::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1640,7 +1640,7 @@ void PythonQtShell_QSvgWidget::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1662,7 +1662,7 @@ void PythonQtShell_QSvgWidget::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -1684,7 +1684,7 @@ void PythonQtShell_QSvgWidget::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -1706,7 +1706,7 @@ bool PythonQtShell_QSvgWidget::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -1739,7 +1739,7 @@ QPaintEngine* PythonQtShell_QSvgWidget::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -1772,7 +1772,7 @@ void PythonQtShell_QSvgWidget::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -1794,7 +1794,7 @@ QPaintDevice* PythonQtShell_QSvgWidget::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -1827,7 +1827,7 @@ void PythonQtShell_QSvgWidget::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -1849,7 +1849,7 @@ void PythonQtShell_QSvgWidget::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -1871,7 +1871,7 @@ QPainter* PythonQtShell_QSvgWidget::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -1904,7 +1904,7 @@ void PythonQtShell_QSvgWidget::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1926,7 +1926,7 @@ void PythonQtShell_QSvgWidget::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -1948,7 +1948,7 @@ void PythonQtShell_QSvgWidget::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1970,7 +1970,7 @@ void PythonQtShell_QSvgWidget::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp b/generated_cpp_56/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp index 8a6b434b8..4256bdfb0 100644 --- a/generated_cpp_56/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp +++ b/generated_cpp_56/com_trolltech_qt_uitools/com_trolltech_qt_uitools0.cpp @@ -26,7 +26,7 @@ void PythonQtShell_QUiLoader::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -48,7 +48,7 @@ QAction* PythonQtShell_QUiLoader::createAction(QObject* parent0, const QString if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createAction"); + static PyObject* name = PyUnicode_FromString("createAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QAction*" , "QObject*" , "const QString&"}; @@ -81,7 +81,7 @@ QActionGroup* PythonQtShell_QUiLoader::createActionGroup(QObject* parent0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createActionGroup"); + static PyObject* name = PyUnicode_FromString("createActionGroup"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QActionGroup*" , "QObject*" , "const QString&"}; @@ -114,7 +114,7 @@ QLayout* PythonQtShell_QUiLoader::createLayout(const QString& className0, QObj if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createLayout"); + static PyObject* name = PyUnicode_FromString("createLayout"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QLayout*" , "const QString&" , "QObject*" , "const QString&"}; @@ -147,7 +147,7 @@ QWidget* PythonQtShell_QUiLoader::createWidget(const QString& className0, QWid if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWidget"); + static PyObject* name = PyUnicode_FromString("createWidget"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWidget*" , "const QString&" , "QWidget*" , "const QString&"}; @@ -180,7 +180,7 @@ void PythonQtShell_QUiLoader::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -202,7 +202,7 @@ bool PythonQtShell_QUiLoader::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -235,7 +235,7 @@ bool PythonQtShell_QUiLoader::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -268,7 +268,7 @@ void PythonQtShell_QUiLoader::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp b/generated_cpp_56/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp index c96669fc3..81cc6b014 100644 --- a/generated_cpp_56/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp +++ b/generated_cpp_56/com_trolltech_qt_webkit/com_trolltech_qt_webkit0.cpp @@ -73,7 +73,7 @@ QRectF PythonQtShell_QGraphicsWebView::boundingRect() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("boundingRect"); + static PyObject* name = PyUnicode_FromString("boundingRect"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QRectF"}; @@ -106,7 +106,7 @@ void PythonQtShell_QGraphicsWebView::changeEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -128,7 +128,7 @@ void PythonQtShell_QGraphicsWebView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -150,7 +150,7 @@ void PythonQtShell_QGraphicsWebView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -172,7 +172,7 @@ void PythonQtShell_QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuE if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneContextMenuEvent*"}; @@ -194,7 +194,7 @@ void PythonQtShell_QGraphicsWebView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -216,7 +216,7 @@ void PythonQtShell_QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -238,7 +238,7 @@ void PythonQtShell_QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -260,7 +260,7 @@ void PythonQtShell_QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -282,7 +282,7 @@ void PythonQtShell_QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* arg if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneDragDropEvent*"}; @@ -304,7 +304,7 @@ bool PythonQtShell_QGraphicsWebView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -337,7 +337,7 @@ bool PythonQtShell_QGraphicsWebView::eventFilter(QObject* watched0, QEvent* e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -370,7 +370,7 @@ void PythonQtShell_QGraphicsWebView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -392,7 +392,7 @@ bool PythonQtShell_QGraphicsWebView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -425,7 +425,7 @@ void PythonQtShell_QGraphicsWebView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -447,7 +447,7 @@ void PythonQtShell_QGraphicsWebView::getContentsMargins(qreal* left0, qreal* t if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getContentsMargins"); + static PyObject* name = PyUnicode_FromString("getContentsMargins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "qreal*" , "qreal*" , "qreal*" , "qreal*"}; @@ -469,7 +469,7 @@ void PythonQtShell_QGraphicsWebView::grabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("grabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -491,7 +491,7 @@ void PythonQtShell_QGraphicsWebView::grabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("grabMouseEvent"); + static PyObject* name = PyUnicode_FromString("grabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -513,7 +513,7 @@ void PythonQtShell_QGraphicsWebView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -535,7 +535,7 @@ void PythonQtShell_QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverLeaveEvent"); + static PyObject* name = PyUnicode_FromString("hoverLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -557,7 +557,7 @@ void PythonQtShell_QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hoverMoveEvent"); + static PyObject* name = PyUnicode_FromString("hoverMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneHoverEvent*"}; @@ -579,7 +579,7 @@ void PythonQtShell_QGraphicsWebView::initStyleOption(QStyleOption* option0) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initStyleOption"); + static PyObject* name = PyUnicode_FromString("initStyleOption"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QStyleOption*"}; @@ -601,7 +601,7 @@ void PythonQtShell_QGraphicsWebView::inputMethodEvent(QInputMethodEvent* arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -623,7 +623,7 @@ QVariant PythonQtShell_QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -656,7 +656,7 @@ QVariant PythonQtShell_QGraphicsWebView::itemChange(QGraphicsItem::GraphicsItem if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("itemChange"); + static PyObject* name = PyUnicode_FromString("itemChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "QGraphicsItem::GraphicsItemChange" , "const QVariant&"}; @@ -692,7 +692,7 @@ void PythonQtShell_QGraphicsWebView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -714,7 +714,7 @@ void PythonQtShell_QGraphicsWebView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -736,7 +736,7 @@ void PythonQtShell_QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -758,7 +758,7 @@ void PythonQtShell_QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* a if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -780,7 +780,7 @@ void PythonQtShell_QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -802,7 +802,7 @@ void PythonQtShell_QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMouseEvent*"}; @@ -824,7 +824,7 @@ void PythonQtShell_QGraphicsWebView::moveEvent(QGraphicsSceneMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneMoveEvent*"}; @@ -846,7 +846,7 @@ void PythonQtShell_QGraphicsWebView::paint(QPainter* arg__1, const QStyleOption if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paint"); + static PyObject* name = PyUnicode_FromString("paint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -868,7 +868,7 @@ void PythonQtShell_QGraphicsWebView::paintWindowFrame(QPainter* painter0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintWindowFrame"); + static PyObject* name = PyUnicode_FromString("paintWindowFrame"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*" , "const QStyleOptionGraphicsItem*" , "QWidget*"}; @@ -890,7 +890,7 @@ void PythonQtShell_QGraphicsWebView::polishEvent() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("polishEvent"); + static PyObject* name = PyUnicode_FromString("polishEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -912,7 +912,7 @@ QVariant PythonQtShell_QGraphicsWebView::propertyChange(const QString& propert if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("propertyChange"); + static PyObject* name = PyUnicode_FromString("propertyChange"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QString&" , "const QVariant&"}; @@ -945,7 +945,7 @@ void PythonQtShell_QGraphicsWebView::resizeEvent(QGraphicsSceneResizeEvent* eve if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneResizeEvent*"}; @@ -967,7 +967,7 @@ bool PythonQtShell_QGraphicsWebView::sceneEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sceneEvent"); + static PyObject* name = PyUnicode_FromString("sceneEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1000,7 +1000,7 @@ void PythonQtShell_QGraphicsWebView::setGeometry(const QRectF& rect0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setGeometry"); + static PyObject* name = PyUnicode_FromString("setGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QRectF&"}; @@ -1022,7 +1022,7 @@ QPainterPath PythonQtShell_QGraphicsWebView::shape() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shape"); + static PyObject* name = PyUnicode_FromString("shape"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainterPath"}; @@ -1055,7 +1055,7 @@ void PythonQtShell_QGraphicsWebView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -1077,7 +1077,7 @@ QSizeF PythonQtShell_QGraphicsWebView::sizeHint(Qt::SizeHint which0, const QSi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSizeF" , "Qt::SizeHint" , "const QSizeF&"}; @@ -1110,7 +1110,7 @@ void PythonQtShell_QGraphicsWebView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -1132,7 +1132,7 @@ int PythonQtShell_QGraphicsWebView::type() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("type"); + static PyObject* name = PyUnicode_FromString("type"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -1165,7 +1165,7 @@ void PythonQtShell_QGraphicsWebView::ungrabKeyboardEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabKeyboardEvent"); + static PyObject* name = PyUnicode_FromString("ungrabKeyboardEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1187,7 +1187,7 @@ void PythonQtShell_QGraphicsWebView::ungrabMouseEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ungrabMouseEvent"); + static PyObject* name = PyUnicode_FromString("ungrabMouseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -1209,7 +1209,7 @@ void PythonQtShell_QGraphicsWebView::updateGeometry() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("updateGeometry"); + static PyObject* name = PyUnicode_FromString("updateGeometry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1231,7 +1231,7 @@ void PythonQtShell_QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* arg__ if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QGraphicsSceneWheelEvent*"}; @@ -1253,7 +1253,7 @@ bool PythonQtShell_QGraphicsWebView::windowFrameEvent(QEvent* e0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameEvent"); + static PyObject* name = PyUnicode_FromString("windowFrameEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -1286,7 +1286,7 @@ Qt::WindowFrameSection PythonQtShell_QGraphicsWebView::windowFrameSectionAt(con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("windowFrameSectionAt"); + static PyObject* name = PyUnicode_FromString("windowFrameSectionAt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"Qt::WindowFrameSection" , "const QPointF&"}; @@ -2306,7 +2306,7 @@ void PythonQtShell_QWebHistoryInterface::addHistoryEntry(const QString& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("addHistoryEntry"); + static PyObject* name = PyUnicode_FromString("addHistoryEntry"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2328,7 +2328,7 @@ void PythonQtShell_QWebHistoryInterface::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2350,7 +2350,7 @@ void PythonQtShell_QWebHistoryInterface::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2372,7 +2372,7 @@ bool PythonQtShell_QWebHistoryInterface::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2405,7 +2405,7 @@ bool PythonQtShell_QWebHistoryInterface::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -2438,7 +2438,7 @@ bool PythonQtShell_QWebHistoryInterface::historyContains(const QString& url0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("historyContains"); + static PyObject* name = PyUnicode_FromString("historyContains"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2471,7 +2471,7 @@ void PythonQtShell_QWebHistoryInterface::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -2687,7 +2687,7 @@ void PythonQtShell_QWebInspector::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -2709,7 +2709,7 @@ void PythonQtShell_QWebInspector::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2731,7 +2731,7 @@ void PythonQtShell_QWebInspector::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -2753,7 +2753,7 @@ void PythonQtShell_QWebInspector::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -2775,7 +2775,7 @@ void PythonQtShell_QWebInspector::contextMenuEvent(QContextMenuEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -2797,7 +2797,7 @@ void PythonQtShell_QWebInspector::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2819,7 +2819,7 @@ int PythonQtShell_QWebInspector::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -2852,7 +2852,7 @@ void PythonQtShell_QWebInspector::dragEnterEvent(QDragEnterEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -2874,7 +2874,7 @@ void PythonQtShell_QWebInspector::dragLeaveEvent(QDragLeaveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -2896,7 +2896,7 @@ void PythonQtShell_QWebInspector::dragMoveEvent(QDragMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -2918,7 +2918,7 @@ void PythonQtShell_QWebInspector::dropEvent(QDropEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -2940,7 +2940,7 @@ void PythonQtShell_QWebInspector::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -2962,7 +2962,7 @@ bool PythonQtShell_QWebInspector::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -2995,7 +2995,7 @@ bool PythonQtShell_QWebInspector::eventFilter(QObject* watched0, QEvent* even if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -3028,7 +3028,7 @@ void PythonQtShell_QWebInspector::focusInEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3050,7 +3050,7 @@ bool PythonQtShell_QWebInspector::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -3083,7 +3083,7 @@ void PythonQtShell_QWebInspector::focusOutEvent(QFocusEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -3105,7 +3105,7 @@ bool PythonQtShell_QWebInspector::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3138,7 +3138,7 @@ int PythonQtShell_QWebInspector::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -3171,7 +3171,7 @@ void PythonQtShell_QWebInspector::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -3193,7 +3193,7 @@ void PythonQtShell_QWebInspector::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -3215,7 +3215,7 @@ void PythonQtShell_QWebInspector::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -3237,7 +3237,7 @@ QVariant PythonQtShell_QWebInspector::inputMethodQuery(Qt::InputMethodQuery ar if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -3270,7 +3270,7 @@ void PythonQtShell_QWebInspector::keyPressEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3292,7 +3292,7 @@ void PythonQtShell_QWebInspector::keyReleaseEvent(QKeyEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -3314,7 +3314,7 @@ void PythonQtShell_QWebInspector::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -3336,7 +3336,7 @@ int PythonQtShell_QWebInspector::metric(QPaintDevice::PaintDeviceMetric arg__1 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -3369,7 +3369,7 @@ QSize PythonQtShell_QWebInspector::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3402,7 +3402,7 @@ void PythonQtShell_QWebInspector::mouseDoubleClickEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3424,7 +3424,7 @@ void PythonQtShell_QWebInspector::mouseMoveEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3446,7 +3446,7 @@ void PythonQtShell_QWebInspector::mousePressEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3468,7 +3468,7 @@ void PythonQtShell_QWebInspector::mouseReleaseEvent(QMouseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -3490,7 +3490,7 @@ void PythonQtShell_QWebInspector::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -3512,7 +3512,7 @@ bool PythonQtShell_QWebInspector::nativeEvent(const QByteArray& eventType0, vo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -3545,7 +3545,7 @@ QPaintEngine* PythonQtShell_QWebInspector::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -3578,7 +3578,7 @@ void PythonQtShell_QWebInspector::paintEvent(QPaintEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -3600,7 +3600,7 @@ QPaintDevice* PythonQtShell_QWebInspector::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -3633,7 +3633,7 @@ void PythonQtShell_QWebInspector::resizeEvent(QResizeEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -3655,7 +3655,7 @@ void PythonQtShell_QWebInspector::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -3677,7 +3677,7 @@ QPainter* PythonQtShell_QWebInspector::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -3710,7 +3710,7 @@ void PythonQtShell_QWebInspector::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -3732,7 +3732,7 @@ QSize PythonQtShell_QWebInspector::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -3765,7 +3765,7 @@ void PythonQtShell_QWebInspector::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -3787,7 +3787,7 @@ void PythonQtShell_QWebInspector::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -3809,7 +3809,7 @@ void PythonQtShell_QWebInspector::wheelEvent(QWheelEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; @@ -3869,7 +3869,7 @@ bool PythonQtShell_QWebPage::acceptNavigationRequest(QWebFrame* frame0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("acceptNavigationRequest"); + static PyObject* name = PyUnicode_FromString("acceptNavigationRequest"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QNetworkRequest&" , "QWebPage::NavigationType"}; @@ -3902,7 +3902,7 @@ void PythonQtShell_QWebPage::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -3924,7 +3924,7 @@ QString PythonQtShell_QWebPage::chooseFile(QWebFrame* originatingFrame0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("chooseFile"); + static PyObject* name = PyUnicode_FromString("chooseFile"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "QWebFrame*" , "const QString&"}; @@ -3957,7 +3957,7 @@ QObject* PythonQtShell_QWebPage::createPlugin(const QString& classid0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createPlugin"); + static PyObject* name = PyUnicode_FromString("createPlugin"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -3990,7 +3990,7 @@ QWebPage* PythonQtShell_QWebPage::createWindow(QWebPage::WebWindowType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebPage*" , "QWebPage::WebWindowType"}; @@ -4023,7 +4023,7 @@ void PythonQtShell_QWebPage::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4045,7 +4045,7 @@ bool PythonQtShell_QWebPage::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4078,7 +4078,7 @@ bool PythonQtShell_QWebPage::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4111,7 +4111,7 @@ bool PythonQtShell_QWebPage::extension(QWebPage::Extension extension0, const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension" , "const QWebPage::ExtensionOption*" , "QWebPage::ExtensionReturn*"}; @@ -4144,7 +4144,7 @@ void PythonQtShell_QWebPage::javaScriptAlert(QWebFrame* originatingFrame0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptAlert"); + static PyObject* name = PyUnicode_FromString("javaScriptAlert"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebFrame*" , "const QString&"}; @@ -4166,7 +4166,7 @@ bool PythonQtShell_QWebPage::javaScriptConfirm(QWebFrame* originatingFrame0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptConfirm"); + static PyObject* name = PyUnicode_FromString("javaScriptConfirm"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&"}; @@ -4199,7 +4199,7 @@ void PythonQtShell_QWebPage::javaScriptConsoleMessage(const QString& message0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptConsoleMessage"); + static PyObject* name = PyUnicode_FromString("javaScriptConsoleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "int" , "const QString&"}; @@ -4221,7 +4221,7 @@ bool PythonQtShell_QWebPage::javaScriptPrompt(QWebFrame* originatingFrame0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("javaScriptPrompt"); + static PyObject* name = PyUnicode_FromString("javaScriptPrompt"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebFrame*" , "const QString&" , "const QString&" , "QString*"}; @@ -4254,7 +4254,7 @@ bool PythonQtShell_QWebPage::shouldInterruptJavaScript() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("shouldInterruptJavaScript"); + static PyObject* name = PyUnicode_FromString("shouldInterruptJavaScript"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4287,7 +4287,7 @@ bool PythonQtShell_QWebPage::supportsExtension(QWebPage::Extension extension0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPage::Extension"}; @@ -4320,7 +4320,7 @@ void PythonQtShell_QWebPage::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -4342,7 +4342,7 @@ void PythonQtShell_QWebPage::triggerAction(QWebPage::WebAction action0, bool c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("triggerAction"); + static PyObject* name = PyUnicode_FromString("triggerAction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWebPage::WebAction" , "bool"}; @@ -4364,7 +4364,7 @@ QString PythonQtShell_QWebPage::userAgentForUrl(const QUrl& url0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("userAgentForUrl"); + static PyObject* name = PyUnicode_FromString("userAgentForUrl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QUrl&"}; @@ -4760,7 +4760,7 @@ void PythonQtShell_QWebPluginFactory::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -4782,7 +4782,7 @@ QObject* PythonQtShell_QWebPluginFactory::create(const QString& mimeType0, con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("create"); + static PyObject* name = PyUnicode_FromString("create"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QObject*" , "const QString&" , "const QUrl&" , "const QStringList&" , "const QStringList&"}; @@ -4815,7 +4815,7 @@ void PythonQtShell_QWebPluginFactory::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -4837,7 +4837,7 @@ bool PythonQtShell_QWebPluginFactory::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -4870,7 +4870,7 @@ bool PythonQtShell_QWebPluginFactory::eventFilter(QObject* watched0, QEvent* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -4903,7 +4903,7 @@ bool PythonQtShell_QWebPluginFactory::extension(QWebPluginFactory::Extension e if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("extension"); + static PyObject* name = PyUnicode_FromString("extension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension" , "const QWebPluginFactory::ExtensionOption*" , "QWebPluginFactory::ExtensionReturn*"}; @@ -4936,7 +4936,7 @@ QList PythonQtShell_QWebPluginFactory::plugins() co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("plugins"); + static PyObject* name = PyUnicode_FromString("plugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QList"}; @@ -4969,7 +4969,7 @@ void PythonQtShell_QWebPluginFactory::refreshPlugins() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("refreshPlugins"); + static PyObject* name = PyUnicode_FromString("refreshPlugins"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -4991,7 +4991,7 @@ bool PythonQtShell_QWebPluginFactory::supportsExtension(QWebPluginFactory::Exte if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("supportsExtension"); + static PyObject* name = PyUnicode_FromString("supportsExtension"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QWebPluginFactory::Extension"}; @@ -5024,7 +5024,7 @@ void PythonQtShell_QWebPluginFactory::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -5426,7 +5426,7 @@ void PythonQtShell_QWebView::actionEvent(QActionEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("actionEvent"); + static PyObject* name = PyUnicode_FromString("actionEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QActionEvent*"}; @@ -5448,7 +5448,7 @@ void PythonQtShell_QWebView::changeEvent(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("changeEvent"); + static PyObject* name = PyUnicode_FromString("changeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5470,7 +5470,7 @@ void PythonQtShell_QWebView::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -5492,7 +5492,7 @@ void PythonQtShell_QWebView::closeEvent(QCloseEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("closeEvent"); + static PyObject* name = PyUnicode_FromString("closeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QCloseEvent*"}; @@ -5514,7 +5514,7 @@ void PythonQtShell_QWebView::contextMenuEvent(QContextMenuEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contextMenuEvent"); + static PyObject* name = PyUnicode_FromString("contextMenuEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QContextMenuEvent*"}; @@ -5536,7 +5536,7 @@ QWebView* PythonQtShell_QWebView::createWindow(QWebPage::WebWindowType type0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("createWindow"); + static PyObject* name = PyUnicode_FromString("createWindow"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QWebView*" , "QWebPage::WebWindowType"}; @@ -5569,7 +5569,7 @@ void PythonQtShell_QWebView::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5591,7 +5591,7 @@ int PythonQtShell_QWebView::devType() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("devType"); + static PyObject* name = PyUnicode_FromString("devType"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -5624,7 +5624,7 @@ void PythonQtShell_QWebView::dragEnterEvent(QDragEnterEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragEnterEvent"); + static PyObject* name = PyUnicode_FromString("dragEnterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragEnterEvent*"}; @@ -5646,7 +5646,7 @@ void PythonQtShell_QWebView::dragLeaveEvent(QDragLeaveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragLeaveEvent"); + static PyObject* name = PyUnicode_FromString("dragLeaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragLeaveEvent*"}; @@ -5668,7 +5668,7 @@ void PythonQtShell_QWebView::dragMoveEvent(QDragMoveEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dragMoveEvent"); + static PyObject* name = PyUnicode_FromString("dragMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDragMoveEvent*"}; @@ -5690,7 +5690,7 @@ void PythonQtShell_QWebView::dropEvent(QDropEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("dropEvent"); + static PyObject* name = PyUnicode_FromString("dropEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QDropEvent*"}; @@ -5712,7 +5712,7 @@ void PythonQtShell_QWebView::enterEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("enterEvent"); + static PyObject* name = PyUnicode_FromString("enterEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -5734,7 +5734,7 @@ bool PythonQtShell_QWebView::event(QEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -5767,7 +5767,7 @@ bool PythonQtShell_QWebView::eventFilter(QObject* watched0, QEvent* event1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -5800,7 +5800,7 @@ void PythonQtShell_QWebView::focusInEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusInEvent"); + static PyObject* name = PyUnicode_FromString("focusInEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5822,7 +5822,7 @@ bool PythonQtShell_QWebView::focusNextPrevChild(bool next0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusNextPrevChild"); + static PyObject* name = PyUnicode_FromString("focusNextPrevChild"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "bool"}; @@ -5855,7 +5855,7 @@ void PythonQtShell_QWebView::focusOutEvent(QFocusEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("focusOutEvent"); + static PyObject* name = PyUnicode_FromString("focusOutEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QFocusEvent*"}; @@ -5877,7 +5877,7 @@ bool PythonQtShell_QWebView::hasHeightForWidth() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasHeightForWidth"); + static PyObject* name = PyUnicode_FromString("hasHeightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -5910,7 +5910,7 @@ int PythonQtShell_QWebView::heightForWidth(int arg__1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("heightForWidth"); + static PyObject* name = PyUnicode_FromString("heightForWidth"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "int"}; @@ -5943,7 +5943,7 @@ void PythonQtShell_QWebView::hideEvent(QHideEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hideEvent"); + static PyObject* name = PyUnicode_FromString("hideEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QHideEvent*"}; @@ -5965,7 +5965,7 @@ void PythonQtShell_QWebView::initPainter(QPainter* painter0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("initPainter"); + static PyObject* name = PyUnicode_FromString("initPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPainter*"}; @@ -5987,7 +5987,7 @@ void PythonQtShell_QWebView::inputMethodEvent(QInputMethodEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodEvent"); + static PyObject* name = PyUnicode_FromString("inputMethodEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QInputMethodEvent*"}; @@ -6009,7 +6009,7 @@ QVariant PythonQtShell_QWebView::inputMethodQuery(Qt::InputMethodQuery propert if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("inputMethodQuery"); + static PyObject* name = PyUnicode_FromString("inputMethodQuery"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "Qt::InputMethodQuery"}; @@ -6042,7 +6042,7 @@ void PythonQtShell_QWebView::keyPressEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyPressEvent"); + static PyObject* name = PyUnicode_FromString("keyPressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6064,7 +6064,7 @@ void PythonQtShell_QWebView::keyReleaseEvent(QKeyEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("keyReleaseEvent"); + static PyObject* name = PyUnicode_FromString("keyReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QKeyEvent*"}; @@ -6086,7 +6086,7 @@ void PythonQtShell_QWebView::leaveEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("leaveEvent"); + static PyObject* name = PyUnicode_FromString("leaveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -6108,7 +6108,7 @@ int PythonQtShell_QWebView::metric(QPaintDevice::PaintDeviceMetric arg__1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("metric"); + static PyObject* name = PyUnicode_FromString("metric"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int" , "QPaintDevice::PaintDeviceMetric"}; @@ -6141,7 +6141,7 @@ QSize PythonQtShell_QWebView::minimumSizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("getMinimumSizeHint"); + static PyObject* name = PyUnicode_FromString("getMinimumSizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6174,7 +6174,7 @@ void PythonQtShell_QWebView::mouseDoubleClickEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseDoubleClickEvent"); + static PyObject* name = PyUnicode_FromString("mouseDoubleClickEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6196,7 +6196,7 @@ void PythonQtShell_QWebView::mouseMoveEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseMoveEvent"); + static PyObject* name = PyUnicode_FromString("mouseMoveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6218,7 +6218,7 @@ void PythonQtShell_QWebView::mousePressEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mousePressEvent"); + static PyObject* name = PyUnicode_FromString("mousePressEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6240,7 +6240,7 @@ void PythonQtShell_QWebView::mouseReleaseEvent(QMouseEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("mouseReleaseEvent"); + static PyObject* name = PyUnicode_FromString("mouseReleaseEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMouseEvent*"}; @@ -6262,7 +6262,7 @@ void PythonQtShell_QWebView::moveEvent(QMoveEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("moveEvent"); + static PyObject* name = PyUnicode_FromString("moveEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QMoveEvent*"}; @@ -6284,7 +6284,7 @@ bool PythonQtShell_QWebView::nativeEvent(const QByteArray& eventType0, void* if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nativeEvent"); + static PyObject* name = PyUnicode_FromString("nativeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QByteArray&" , "void*" , "long*"}; @@ -6317,7 +6317,7 @@ QPaintEngine* PythonQtShell_QWebView::paintEngine() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEngine"); + static PyObject* name = PyUnicode_FromString("paintEngine"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintEngine*"}; @@ -6350,7 +6350,7 @@ void PythonQtShell_QWebView::paintEvent(QPaintEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("paintEvent"); + static PyObject* name = PyUnicode_FromString("paintEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QPaintEvent*"}; @@ -6372,7 +6372,7 @@ QPaintDevice* PythonQtShell_QWebView::redirected(QPoint* offset0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("redirected"); + static PyObject* name = PyUnicode_FromString("redirected"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPaintDevice*" , "QPoint*"}; @@ -6405,7 +6405,7 @@ void PythonQtShell_QWebView::resizeEvent(QResizeEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resizeEvent"); + static PyObject* name = PyUnicode_FromString("resizeEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QResizeEvent*"}; @@ -6427,7 +6427,7 @@ void PythonQtShell_QWebView::setVisible(bool visible0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setVisible"); + static PyObject* name = PyUnicode_FromString("setVisible"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "bool"}; @@ -6449,7 +6449,7 @@ QPainter* PythonQtShell_QWebView::sharedPainter() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sharedPainter"); + static PyObject* name = PyUnicode_FromString("sharedPainter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QPainter*"}; @@ -6482,7 +6482,7 @@ void PythonQtShell_QWebView::showEvent(QShowEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("showEvent"); + static PyObject* name = PyUnicode_FromString("showEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QShowEvent*"}; @@ -6504,7 +6504,7 @@ QSize PythonQtShell_QWebView::sizeHint() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("sizeHint"); + static PyObject* name = PyUnicode_FromString("sizeHint"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QSize"}; @@ -6537,7 +6537,7 @@ void PythonQtShell_QWebView::tabletEvent(QTabletEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("tabletEvent"); + static PyObject* name = PyUnicode_FromString("tabletEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTabletEvent*"}; @@ -6559,7 +6559,7 @@ void PythonQtShell_QWebView::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -6581,7 +6581,7 @@ void PythonQtShell_QWebView::wheelEvent(QWheelEvent* arg__1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("wheelEvent"); + static PyObject* name = PyUnicode_FromString("wheelEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QWheelEvent*"}; diff --git a/generated_cpp_56/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp b/generated_cpp_56/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp index 751b7a80f..62d7bd0b8 100644 --- a/generated_cpp_56/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp +++ b/generated_cpp_56/com_trolltech_qt_xml/com_trolltech_qt_xml0.cpp @@ -1157,7 +1157,7 @@ bool PythonQtShell_QXmlContentHandler::characters(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1190,7 +1190,7 @@ bool PythonQtShell_QXmlContentHandler::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1223,7 +1223,7 @@ bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1256,7 +1256,7 @@ bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1289,7 +1289,7 @@ QString PythonQtShell_QXmlContentHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1322,7 +1322,7 @@ bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1355,7 +1355,7 @@ bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& ta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1388,7 +1388,7 @@ void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -1410,7 +1410,7 @@ bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1443,7 +1443,7 @@ bool PythonQtShell_QXmlContentHandler::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -1476,7 +1476,7 @@ bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceUR if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -1509,7 +1509,7 @@ bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1612,7 +1612,7 @@ QString PythonQtShell_QXmlDTDHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1645,7 +1645,7 @@ bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1678,7 +1678,7 @@ bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1736,7 +1736,7 @@ bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1769,7 +1769,7 @@ QString PythonQtShell_QXmlDeclHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -1802,7 +1802,7 @@ bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -1835,7 +1835,7 @@ bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name0, c if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -1898,7 +1898,7 @@ bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName0, co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributeDecl"); + static PyObject* name = PyUnicode_FromString("attributeDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -1931,7 +1931,7 @@ bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1964,7 +1964,7 @@ bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -1997,7 +1997,7 @@ bool PythonQtShell_QXmlDefaultHandler::endCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2030,7 +2030,7 @@ bool PythonQtShell_QXmlDefaultHandler::endDTD() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2063,7 +2063,7 @@ bool PythonQtShell_QXmlDefaultHandler::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2096,7 +2096,7 @@ bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2129,7 +2129,7 @@ bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2162,7 +2162,7 @@ bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endPrefixMapping"); + static PyObject* name = PyUnicode_FromString("endPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2195,7 +2195,7 @@ bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& excepti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2228,7 +2228,7 @@ QString PythonQtShell_QXmlDefaultHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2261,7 +2261,7 @@ bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("externalEntityDecl"); + static PyObject* name = PyUnicode_FromString("externalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2294,7 +2294,7 @@ bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& ex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2327,7 +2327,7 @@ bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("ignorableWhitespace"); + static PyObject* name = PyUnicode_FromString("ignorableWhitespace"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2360,7 +2360,7 @@ bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("internalEntityDecl"); + static PyObject* name = PyUnicode_FromString("internalEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2393,7 +2393,7 @@ bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("notationDecl"); + static PyObject* name = PyUnicode_FromString("notationDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2426,7 +2426,7 @@ bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& ta if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2459,7 +2459,7 @@ bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2492,7 +2492,7 @@ void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDocumentLocator"); + static PyObject* name = PyUnicode_FromString("setDocumentLocator"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLocator*"}; @@ -2514,7 +2514,7 @@ bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("skippedEntity"); + static PyObject* name = PyUnicode_FromString("skippedEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2547,7 +2547,7 @@ bool PythonQtShell_QXmlDefaultHandler::startCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2580,7 +2580,7 @@ bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -2613,7 +2613,7 @@ bool PythonQtShell_QXmlDefaultHandler::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -2646,7 +2646,7 @@ bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceUR if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"}; @@ -2679,7 +2679,7 @@ bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -2712,7 +2712,7 @@ bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefi if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startPrefixMapping"); + static PyObject* name = PyUnicode_FromString("startPrefixMapping"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"}; @@ -2745,7 +2745,7 @@ bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("unparsedEntityDecl"); + static PyObject* name = PyUnicode_FromString("unparsedEntityDecl"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"}; @@ -2778,7 +2778,7 @@ bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& excep if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2821,7 +2821,7 @@ QString PythonQtShell_QXmlEntityResolver::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2854,7 +2854,7 @@ bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolveEntity"); + static PyObject* name = PyUnicode_FromString("resolveEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"}; @@ -2907,7 +2907,7 @@ bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("error"); + static PyObject* name = PyUnicode_FromString("error"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -2940,7 +2940,7 @@ QString PythonQtShell_QXmlErrorHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -2973,7 +2973,7 @@ bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exce if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fatalError"); + static PyObject* name = PyUnicode_FromString("fatalError"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3006,7 +3006,7 @@ bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& excepti if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("warning"); + static PyObject* name = PyUnicode_FromString("warning"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlParseException&"}; @@ -3069,7 +3069,7 @@ QString PythonQtShell_QXmlInputSource::data() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("data"); + static PyObject* name = PyUnicode_FromString("data"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3102,7 +3102,7 @@ void PythonQtShell_QXmlInputSource::fetchData() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fetchData"); + static PyObject* name = PyUnicode_FromString("fetchData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3124,7 +3124,7 @@ QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data0, bo if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("fromRawData"); + static PyObject* name = PyUnicode_FromString("fromRawData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"}; @@ -3157,7 +3157,7 @@ QChar PythonQtShell_QXmlInputSource::next() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("next"); + static PyObject* name = PyUnicode_FromString("next"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QChar"}; @@ -3190,7 +3190,7 @@ void PythonQtShell_QXmlInputSource::reset() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("reset"); + static PyObject* name = PyUnicode_FromString("reset"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3212,7 +3212,7 @@ void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QByteArray&"}; @@ -3234,7 +3234,7 @@ void PythonQtShell_QXmlInputSource::setData(const QString& dat0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setData"); + static PyObject* name = PyUnicode_FromString("setData"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -3305,7 +3305,7 @@ bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3338,7 +3338,7 @@ bool PythonQtShell_QXmlLexicalHandler::endCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endCDATA"); + static PyObject* name = PyUnicode_FromString("endCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3371,7 +3371,7 @@ bool PythonQtShell_QXmlLexicalHandler::endDTD() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDTD"); + static PyObject* name = PyUnicode_FromString("endDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3404,7 +3404,7 @@ bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endEntity"); + static PyObject* name = PyUnicode_FromString("endEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3437,7 +3437,7 @@ QString PythonQtShell_QXmlLexicalHandler::errorString() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorString"); + static PyObject* name = PyUnicode_FromString("errorString"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString"}; @@ -3470,7 +3470,7 @@ bool PythonQtShell_QXmlLexicalHandler::startCDATA() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startCDATA"); + static PyObject* name = PyUnicode_FromString("startCDATA"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -3503,7 +3503,7 @@ bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name0, const QS if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDTD"); + static PyObject* name = PyUnicode_FromString("startDTD"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"}; @@ -3536,7 +3536,7 @@ bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startEntity"); + static PyObject* name = PyUnicode_FromString("startEntity"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3619,7 +3619,7 @@ int PythonQtShell_QXmlLocator::columnNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("columnNumber"); + static PyObject* name = PyUnicode_FromString("columnNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3652,7 +3652,7 @@ int PythonQtShell_QXmlLocator::lineNumber() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lineNumber"); + static PyObject* name = PyUnicode_FromString("lineNumber"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"int"}; @@ -3740,7 +3740,7 @@ QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -3773,7 +3773,7 @@ QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -3806,7 +3806,7 @@ QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -3839,7 +3839,7 @@ QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -3872,7 +3872,7 @@ QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -3905,7 +3905,7 @@ bool PythonQtShell_QXmlReader::feature(const QString& name0, bool* ok1) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -3938,7 +3938,7 @@ bool PythonQtShell_QXmlReader::hasFeature(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -3971,7 +3971,7 @@ bool PythonQtShell_QXmlReader::hasProperty(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4004,7 +4004,7 @@ QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4037,7 +4037,7 @@ bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4070,7 +4070,7 @@ bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4103,7 +4103,7 @@ void* PythonQtShell_QXmlReader::property(const QString& name0, bool* ok1) con if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4136,7 +4136,7 @@ void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4158,7 +4158,7 @@ void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4180,7 +4180,7 @@ void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4202,7 +4202,7 @@ void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4224,7 +4224,7 @@ void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4246,7 +4246,7 @@ void PythonQtShell_QXmlReader::setFeature(const QString& name0, bool value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -4268,7 +4268,7 @@ void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -4290,7 +4290,7 @@ void PythonQtShell_QXmlReader::setProperty(const QString& name0, void* value1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; @@ -4422,7 +4422,7 @@ QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("DTDHandler"); + static PyObject* name = PyUnicode_FromString("DTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDTDHandler*"}; @@ -4455,7 +4455,7 @@ QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("contentHandler"); + static PyObject* name = PyUnicode_FromString("contentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlContentHandler*"}; @@ -4488,7 +4488,7 @@ QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("declHandler"); + static PyObject* name = PyUnicode_FromString("declHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlDeclHandler*"}; @@ -4521,7 +4521,7 @@ QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("entityResolver"); + static PyObject* name = PyUnicode_FromString("entityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlEntityResolver*"}; @@ -4554,7 +4554,7 @@ QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("errorHandler"); + static PyObject* name = PyUnicode_FromString("errorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlErrorHandler*"}; @@ -4587,7 +4587,7 @@ bool PythonQtShell_QXmlSimpleReader::feature(const QString& name0, bool* ok1) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("feature"); + static PyObject* name = PyUnicode_FromString("feature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&" , "bool*"}; @@ -4620,7 +4620,7 @@ bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasFeature"); + static PyObject* name = PyUnicode_FromString("hasFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4653,7 +4653,7 @@ bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name0) const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("hasProperty"); + static PyObject* name = PyUnicode_FromString("hasProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QString&"}; @@ -4686,7 +4686,7 @@ QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("lexicalHandler"); + static PyObject* name = PyUnicode_FromString("lexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlLexicalHandler*"}; @@ -4719,7 +4719,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource&"}; @@ -4752,7 +4752,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*"}; @@ -4785,7 +4785,7 @@ bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input0, bool if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parse"); + static PyObject* name = PyUnicode_FromString("parse"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"}; @@ -4818,7 +4818,7 @@ bool PythonQtShell_QXmlSimpleReader::parseContinue() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("parseContinue"); + static PyObject* name = PyUnicode_FromString("parseContinue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool"}; @@ -4851,7 +4851,7 @@ void* PythonQtShell_QXmlSimpleReader::property(const QString& name0, bool* ok if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("property"); + static PyObject* name = PyUnicode_FromString("property"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"void*" , "const QString&" , "bool*"}; @@ -4884,7 +4884,7 @@ void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setContentHandler"); + static PyObject* name = PyUnicode_FromString("setContentHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlContentHandler*"}; @@ -4906,7 +4906,7 @@ void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDTDHandler"); + static PyObject* name = PyUnicode_FromString("setDTDHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDTDHandler*"}; @@ -4928,7 +4928,7 @@ void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setDeclHandler"); + static PyObject* name = PyUnicode_FromString("setDeclHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlDeclHandler*"}; @@ -4950,7 +4950,7 @@ void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setEntityResolver"); + static PyObject* name = PyUnicode_FromString("setEntityResolver"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlEntityResolver*"}; @@ -4972,7 +4972,7 @@ void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setErrorHandler"); + static PyObject* name = PyUnicode_FromString("setErrorHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlErrorHandler*"}; @@ -4994,7 +4994,7 @@ void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name0, bool val if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setFeature"); + static PyObject* name = PyUnicode_FromString("setFeature"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "bool"}; @@ -5016,7 +5016,7 @@ void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* hand if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setLexicalHandler"); + static PyObject* name = PyUnicode_FromString("setLexicalHandler"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QXmlLexicalHandler*"}; @@ -5038,7 +5038,7 @@ void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name0, void* v if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("setProperty"); + static PyObject* name = PyUnicode_FromString("setProperty"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&" , "void*"}; diff --git a/generated_cpp_56/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp b/generated_cpp_56/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp index f4f2061a8..4a73fed7d 100644 --- a/generated_cpp_56/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp +++ b/generated_cpp_56/com_trolltech_qt_xmlpatterns/com_trolltech_qt_xmlpatterns0.cpp @@ -34,7 +34,7 @@ void PythonQtShell_QAbstractMessageHandler::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -56,7 +56,7 @@ void PythonQtShell_QAbstractMessageHandler::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -78,7 +78,7 @@ bool PythonQtShell_QAbstractMessageHandler::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -111,7 +111,7 @@ bool PythonQtShell_QAbstractMessageHandler::eventFilter(QObject* watched0, QEv if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -144,7 +144,7 @@ void PythonQtShell_QAbstractMessageHandler::handleMessage(QtMsgType type0, cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("handleMessage"); + static PyObject* name = PyUnicode_FromString("handleMessage"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QtMsgType" , "const QString&" , "const QUrl&" , "const QSourceLocation&"}; @@ -166,7 +166,7 @@ void PythonQtShell_QAbstractMessageHandler::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -221,7 +221,7 @@ void PythonQtShell_QAbstractUriResolver::childEvent(QChildEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("childEvent"); + static PyObject* name = PyUnicode_FromString("childEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QChildEvent*"}; @@ -243,7 +243,7 @@ void PythonQtShell_QAbstractUriResolver::customEvent(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("customEvent"); + static PyObject* name = PyUnicode_FromString("customEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QEvent*"}; @@ -265,7 +265,7 @@ bool PythonQtShell_QAbstractUriResolver::event(QEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("event"); + static PyObject* name = PyUnicode_FromString("event"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QEvent*"}; @@ -298,7 +298,7 @@ bool PythonQtShell_QAbstractUriResolver::eventFilter(QObject* watched0, QEvent if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("eventFilter"); + static PyObject* name = PyUnicode_FromString("eventFilter"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"}; @@ -331,7 +331,7 @@ QUrl PythonQtShell_QAbstractUriResolver::resolve(const QUrl& relative0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("resolve"); + static PyObject* name = PyUnicode_FromString("resolve"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QUrl&" , "const QUrl&"}; @@ -364,7 +364,7 @@ void PythonQtShell_QAbstractUriResolver::timerEvent(QTimerEvent* event0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("timerEvent"); + static PyObject* name = PyUnicode_FromString("timerEvent"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "QTimerEvent*"}; @@ -414,7 +414,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::attributes(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -447,7 +447,7 @@ QUrl PythonQtShell_QAbstractXmlNodeModel::baseUri(const QXmlNodeModelIndex& ni if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -480,7 +480,7 @@ QXmlNodeModelIndex::DocumentOrder PythonQtShell_QAbstractXmlNodeModel::compareO if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -513,7 +513,7 @@ QUrl PythonQtShell_QAbstractXmlNodeModel::documentUri(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -546,7 +546,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::elementById(const QXmlN if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -579,7 +579,7 @@ bool PythonQtShell_QAbstractXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -612,7 +612,7 @@ QXmlNodeModelIndex::NodeKind PythonQtShell_QAbstractXmlNodeModel::kind(const QX if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -645,7 +645,7 @@ QXmlName PythonQtShell_QAbstractXmlNodeModel::name(const QXmlNodeModelIndex& n if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -678,7 +678,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::namespaceBindings(const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -711,7 +711,7 @@ short PythonQtShell_QAbstractXmlNodeModel::namespaceForPrefix(const QXmlNodeMod if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -744,7 +744,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::nextFromSimpleAxis(QAbs if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -777,7 +777,7 @@ QVector PythonQtShell_QAbstractXmlNodeModel::nodesByIdref( if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -810,7 +810,7 @@ QXmlNodeModelIndex PythonQtShell_QAbstractXmlNodeModel::root(const QXmlNodeMode if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -843,7 +843,7 @@ QString PythonQtShell_QAbstractXmlNodeModel::stringValue(const QXmlNodeModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -876,7 +876,7 @@ QVariant PythonQtShell_QAbstractXmlNodeModel::typedValue(const QXmlNodeModelInd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1014,7 +1014,7 @@ void PythonQtShell_QAbstractXmlReceiver::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1036,7 +1036,7 @@ void PythonQtShell_QAbstractXmlReceiver::attribute(const QXmlName& name0, const if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1058,7 +1058,7 @@ void PythonQtShell_QAbstractXmlReceiver::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1080,7 +1080,7 @@ void PythonQtShell_QAbstractXmlReceiver::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -1102,7 +1102,7 @@ void PythonQtShell_QAbstractXmlReceiver::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1124,7 +1124,7 @@ void PythonQtShell_QAbstractXmlReceiver::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1146,7 +1146,7 @@ void PythonQtShell_QAbstractXmlReceiver::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1168,7 +1168,7 @@ void PythonQtShell_QAbstractXmlReceiver::namespaceBinding(const QXmlName& name0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1190,7 +1190,7 @@ void PythonQtShell_QAbstractXmlReceiver::processingInstruction(const QXmlName& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -1212,7 +1212,7 @@ void PythonQtShell_QAbstractXmlReceiver::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1234,7 +1234,7 @@ void PythonQtShell_QAbstractXmlReceiver::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -1256,7 +1256,7 @@ void PythonQtShell_QAbstractXmlReceiver::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -1278,7 +1278,7 @@ void PythonQtShell_QAbstractXmlReceiver::whitespaceOnly(const QStringRef& value if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -1379,7 +1379,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::attributes(cons if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attributes"); + static PyObject* name = PyUnicode_FromString("attributes"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1412,7 +1412,7 @@ QUrl PythonQtShell_QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex& node if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("baseUri"); + static PyObject* name = PyUnicode_FromString("baseUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1445,7 +1445,7 @@ QXmlNodeModelIndex::DocumentOrder PythonQtShell_QSimpleXmlNodeModel::compareOrd if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("compareOrder"); + static PyObject* name = PyUnicode_FromString("compareOrder"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::DocumentOrder" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1478,7 +1478,7 @@ QUrl PythonQtShell_QSimpleXmlNodeModel::documentUri(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("documentUri"); + static PyObject* name = PyUnicode_FromString("documentUri"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QUrl" , "const QXmlNodeModelIndex&"}; @@ -1511,7 +1511,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::elementById(const QXmlNam if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("elementById"); + static PyObject* name = PyUnicode_FromString("elementById"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlName&"}; @@ -1544,7 +1544,7 @@ bool PythonQtShell_QSimpleXmlNodeModel::isDeepEqual(const QXmlNodeModelIndex& if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("isDeepEqual"); + static PyObject* name = PyUnicode_FromString("isDeepEqual"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"bool" , "const QXmlNodeModelIndex&" , "const QXmlNodeModelIndex&"}; @@ -1577,7 +1577,7 @@ QXmlNodeModelIndex::NodeKind PythonQtShell_QSimpleXmlNodeModel::kind(const QXml if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("kind"); + static PyObject* name = PyUnicode_FromString("kind"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex::NodeKind" , "const QXmlNodeModelIndex&"}; @@ -1610,7 +1610,7 @@ QXmlName PythonQtShell_QSimpleXmlNodeModel::name(const QXmlNodeModelIndex& ni0 if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("name"); + static PyObject* name = PyUnicode_FromString("name"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlName" , "const QXmlNodeModelIndex&"}; @@ -1643,7 +1643,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::namespaceBindings(const Q if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBindings"); + static PyObject* name = PyUnicode_FromString("namespaceBindings"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlNodeModelIndex&"}; @@ -1676,7 +1676,7 @@ short PythonQtShell_QSimpleXmlNodeModel::namespaceForPrefix(const QXmlNodeModel if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceForPrefix"); + static PyObject* name = PyUnicode_FromString("namespaceForPrefix"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"short" , "const QXmlNodeModelIndex&" , "const short"}; @@ -1709,7 +1709,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::nextFromSimpleAxis(QAbstr if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nextFromSimpleAxis"); + static PyObject* name = PyUnicode_FromString("nextFromSimpleAxis"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "QAbstractXmlNodeModel::SimpleAxis" , "const QXmlNodeModelIndex&"}; @@ -1742,7 +1742,7 @@ QVector PythonQtShell_QSimpleXmlNodeModel::nodesByIdref(co if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("nodesByIdref"); + static PyObject* name = PyUnicode_FromString("nodesByIdref"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVector" , "const QXmlName&"}; @@ -1775,7 +1775,7 @@ QXmlNodeModelIndex PythonQtShell_QSimpleXmlNodeModel::root(const QXmlNodeModelI if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("root"); + static PyObject* name = PyUnicode_FromString("root"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QXmlNodeModelIndex" , "const QXmlNodeModelIndex&"}; @@ -1808,7 +1808,7 @@ QString PythonQtShell_QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("stringValue"); + static PyObject* name = PyUnicode_FromString("stringValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QString" , "const QXmlNodeModelIndex&"}; @@ -1841,7 +1841,7 @@ QVariant PythonQtShell_QSimpleXmlNodeModel::typedValue(const QXmlNodeModelIndex if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("typedValue"); + static PyObject* name = PyUnicode_FromString("typedValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"QVariant" , "const QXmlNodeModelIndex&"}; @@ -1955,7 +1955,7 @@ void PythonQtShell_QXmlFormatter::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -1977,7 +1977,7 @@ void PythonQtShell_QXmlFormatter::attribute(const QXmlName& name0, const QStrin if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -1999,7 +1999,7 @@ void PythonQtShell_QXmlFormatter::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2021,7 +2021,7 @@ void PythonQtShell_QXmlFormatter::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2043,7 +2043,7 @@ void PythonQtShell_QXmlFormatter::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2065,7 +2065,7 @@ void PythonQtShell_QXmlFormatter::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2087,7 +2087,7 @@ void PythonQtShell_QXmlFormatter::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2109,7 +2109,7 @@ void PythonQtShell_QXmlFormatter::namespaceBinding(const QXmlName& nb0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2131,7 +2131,7 @@ void PythonQtShell_QXmlFormatter::processingInstruction(const QXmlName& name0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2153,7 +2153,7 @@ void PythonQtShell_QXmlFormatter::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2175,7 +2175,7 @@ void PythonQtShell_QXmlFormatter::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2197,7 +2197,7 @@ void PythonQtShell_QXmlFormatter::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2219,7 +2219,7 @@ void PythonQtShell_QXmlFormatter::whitespaceOnly(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2741,7 +2741,7 @@ void PythonQtShell_QXmlSerializer::atomicValue(const QVariant& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("atomicValue"); + static PyObject* name = PyUnicode_FromString("atomicValue"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QVariant&"}; @@ -2763,7 +2763,7 @@ void PythonQtShell_QXmlSerializer::attribute(const QXmlName& name0, const QStri if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("attribute"); + static PyObject* name = PyUnicode_FromString("attribute"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QStringRef&"}; @@ -2785,7 +2785,7 @@ void PythonQtShell_QXmlSerializer::characters(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("characters"); + static PyObject* name = PyUnicode_FromString("characters"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; @@ -2807,7 +2807,7 @@ void PythonQtShell_QXmlSerializer::comment(const QString& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("comment"); + static PyObject* name = PyUnicode_FromString("comment"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QString&"}; @@ -2829,7 +2829,7 @@ void PythonQtShell_QXmlSerializer::endDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endDocument"); + static PyObject* name = PyUnicode_FromString("endDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2851,7 +2851,7 @@ void PythonQtShell_QXmlSerializer::endElement() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endElement"); + static PyObject* name = PyUnicode_FromString("endElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2873,7 +2873,7 @@ void PythonQtShell_QXmlSerializer::endOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("endOfSequence"); + static PyObject* name = PyUnicode_FromString("endOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2895,7 +2895,7 @@ void PythonQtShell_QXmlSerializer::namespaceBinding(const QXmlName& nb0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("namespaceBinding"); + static PyObject* name = PyUnicode_FromString("namespaceBinding"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2917,7 +2917,7 @@ void PythonQtShell_QXmlSerializer::processingInstruction(const QXmlName& name0, if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("processingInstruction"); + static PyObject* name = PyUnicode_FromString("processingInstruction"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&" , "const QString&"}; @@ -2939,7 +2939,7 @@ void PythonQtShell_QXmlSerializer::startDocument() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startDocument"); + static PyObject* name = PyUnicode_FromString("startDocument"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -2961,7 +2961,7 @@ void PythonQtShell_QXmlSerializer::startElement(const QXmlName& name0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startElement"); + static PyObject* name = PyUnicode_FromString("startElement"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QXmlName&"}; @@ -2983,7 +2983,7 @@ void PythonQtShell_QXmlSerializer::startOfSequence() if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("startOfSequence"); + static PyObject* name = PyUnicode_FromString("startOfSequence"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={""}; @@ -3005,7 +3005,7 @@ void PythonQtShell_QXmlSerializer::whitespaceOnly(const QStringRef& value0) if (_wrapper) { PYTHONQT_GIL_SCOPE if (Py_REFCNT((PyObject*)_wrapper) > 0) { - static PyObject* name = PyString_FromString("whitespaceOnly"); + static PyObject* name = PyUnicode_FromString("whitespaceOnly"); PyObject* obj = PyBaseObject_Type.tp_getattro((PyObject*)_wrapper, name); if (obj) { static const char* argumentList[] ={"" , "const QStringRef&"}; From e793d1a1660688b63b1fff6f23c03266a8e049f6 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 25 Sep 2025 16:03:24 -0400 Subject: [PATCH 9/9] chore: Add support for defining PYTHONQT_USE_PYSTRING_SHIM --- src/PythonQtPythonInclude.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/PythonQtPythonInclude.h b/src/PythonQtPythonInclude.h index 6df1e2cfb..d1bdf9617 100644 --- a/src/PythonQtPythonInclude.h +++ b/src/PythonQtPythonInclude.h @@ -121,9 +121,12 @@ #error "PythonQt requires Python >= 3.x" #endif +// Optional compatibility shim for legacy wrappers generated by older PythonQt. +// Enable by defining PYTHONQT_USE_PYSTRING_SHIM (deprecated). +#if defined(PYTHONQT_USE_PYSTRING_SHIM) #define PY3K -// Helper defines to facilitate porting #define PyString_FromString PyUnicode_FromString +#endif // Avoid clashes with libstdc++ by undefining ctype macros // that CPython may introduce on macOS when the UTF-8 ctype quirk is enabled.